Import Geant4 10.5.1 source tree
This commit is contained in:
@@ -16,6 +16,12 @@ committal in the CVS repository !
|
||||
* Reverse chronological order (last date on top), please *
|
||||
----------------------------------------------------------
|
||||
|
||||
Mar 11, 2019, G.Cosmo (tracking-V10-04-03)
|
||||
- Fixed typos in printouts and comments.
|
||||
|
||||
Jan 31, 2019, I.Hrivnacova
|
||||
- Merged GitHub PR #4: all Boolean operators now return G4bool.
|
||||
|
||||
Oct 12, 2018, G.Cosmo (tracking-V10-04-02)
|
||||
- G4VSteppingVerbose: reset singleton pointer in destructor.
|
||||
Addressing problem report #2095.
|
||||
|
||||
@@ -92,7 +92,7 @@ public:
|
||||
// Operators
|
||||
inline void *operator new(size_t);
|
||||
inline void operator delete(void *aRichTrajectoryPoint);
|
||||
inline int operator==(const G4RichTrajectoryPoint& right) const
|
||||
inline G4bool operator==(const G4RichTrajectoryPoint& right) const
|
||||
{ return (this==&right); }
|
||||
|
||||
// Get methods for HepRep style attributes
|
||||
|
||||
@@ -69,7 +69,7 @@ public:
|
||||
// Operators
|
||||
inline void *operator new(size_t);
|
||||
inline void operator delete(void *aTrajectoryPoint);
|
||||
inline int operator==(const G4SmoothTrajectoryPoint& right) const
|
||||
inline G4bool operator==(const G4SmoothTrajectoryPoint& right) const
|
||||
{ return (this==&right); };
|
||||
|
||||
// Get/Set functions
|
||||
|
||||
@@ -73,7 +73,7 @@ public: // without description
|
||||
// Operators
|
||||
inline void *operator new(size_t);
|
||||
inline void operator delete(void *aTrajectoryPoint);
|
||||
inline int operator==(const G4TrajectoryPoint& right) const
|
||||
inline G4bool operator==(const G4TrajectoryPoint& right) const
|
||||
{ return (this==&right); };
|
||||
|
||||
// Get/Set functions
|
||||
|
||||
@@ -90,12 +90,12 @@ G4TrackingMessenger::G4TrackingMessenger(G4TrackingManager * trMan)
|
||||
VerboseCmd->SetGuidance("Set Verbose level of tracking category.");
|
||||
VerboseCmd->SetGuidance(" -1 : Silent.");
|
||||
VerboseCmd->SetGuidance(" 0 : Silent.");
|
||||
VerboseCmd->SetGuidance(" 1 : Minium information of each Step.");
|
||||
VerboseCmd->SetGuidance(" 1 : Minimum information of each Step.");
|
||||
VerboseCmd->SetGuidance(" 2 : Addition to Level=1, info of secondary particles.");
|
||||
VerboseCmd->SetGuidance(" 3 : Addition to Level=1, pre/postStepoint information");
|
||||
VerboseCmd->SetGuidance(" after all AlongStep/PostStep process executions.");
|
||||
VerboseCmd->SetGuidance(" 4 : Addition to Level=3, pre/postStepoint information");
|
||||
VerboseCmd->SetGuidance(" at each AlongStepPostStep process execuation.");
|
||||
VerboseCmd->SetGuidance(" at each AlongStepPostStep process execution.");
|
||||
VerboseCmd->SetGuidance(" 5 : Addition to Level=4, proposed Step length information");
|
||||
VerboseCmd->SetGuidance(" from each AlongStepPostStep process.");
|
||||
VerboseCmd->SetParameterName("verbose_level",true);
|
||||
|
||||
Reference in New Issue
Block a user