Geant4.10
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Public Member Functions | Protected Member Functions
G4VRestContinuousDiscreteProcess Class Referenceabstract

#include <G4VRestContinuousDiscreteProcess.hh>

Inheritance diagram for G4VRestContinuousDiscreteProcess:
G4VProcess

Public Member Functions

 G4VRestContinuousDiscreteProcess (const G4String &, G4ProcessType aType=fNotDefined)
 
 G4VRestContinuousDiscreteProcess (G4VRestContinuousDiscreteProcess &)
 
virtual ~G4VRestContinuousDiscreteProcess ()
 
virtual G4double PostStepGetPhysicalInteractionLength (const G4Track &track, G4double previousStepSize, G4ForceCondition *condition)
 
virtual G4VParticleChangePostStepDoIt (const G4Track &, const G4Step &)
 
virtual G4double AlongStepGetPhysicalInteractionLength (const G4Track &track, G4double previousStepSize, G4double currentMinimumStep, G4double &currentSafety, G4GPILSelection *selection)
 
virtual G4VParticleChangeAlongStepDoIt (const G4Track &, const G4Step &)
 
virtual G4double AtRestGetPhysicalInteractionLength (const G4Track &, G4ForceCondition *)
 
virtual G4VParticleChangeAtRestDoIt (const G4Track &, const G4Step &)
 
- Public Member Functions inherited from G4VProcess
 G4VProcess (const G4String &aName="NoName", G4ProcessType aType=fNotDefined)
 
 G4VProcess (const G4VProcess &right)
 
virtual ~G4VProcess ()
 
G4int operator== (const G4VProcess &right) const
 
G4int operator!= (const G4VProcess &right) const
 
G4double GetCurrentInteractionLength () const
 
void SetPILfactor (G4double value)
 
G4double GetPILfactor () const
 
G4double AlongStepGPIL (const G4Track &track, G4double previousStepSize, G4double currentMinimumStep, G4double &proposedSafety, G4GPILSelection *selection)
 
G4double AtRestGPIL (const G4Track &track, G4ForceCondition *condition)
 
G4double PostStepGPIL (const G4Track &track, G4double previousStepSize, G4ForceCondition *condition)
 
virtual G4bool IsApplicable (const G4ParticleDefinition &)
 
virtual void BuildPhysicsTable (const G4ParticleDefinition &)
 
virtual void PreparePhysicsTable (const G4ParticleDefinition &)
 
virtual G4bool StorePhysicsTable (const G4ParticleDefinition *, const G4String &, G4bool)
 
virtual G4bool RetrievePhysicsTable (const G4ParticleDefinition *, const G4String &, G4bool)
 
const G4StringGetPhysicsTableFileName (const G4ParticleDefinition *, const G4String &directory, const G4String &tableName, G4bool ascii=false)
 
const G4StringGetProcessName () const
 
G4ProcessType GetProcessType () const
 
void SetProcessType (G4ProcessType)
 
G4int GetProcessSubType () const
 
void SetProcessSubType (G4int)
 
virtual void StartTracking (G4Track *)
 
virtual void EndTracking ()
 
virtual void SetProcessManager (const G4ProcessManager *)
 
virtual const G4ProcessManagerGetProcessManager ()
 
virtual void ResetNumberOfInteractionLengthLeft ()
 
G4double GetNumberOfInteractionLengthLeft () const
 
G4double GetTotalNumberOfInteractionLengthTraversed () const
 
G4bool isAtRestDoItIsEnabled () const
 
G4bool isAlongStepDoItIsEnabled () const
 
G4bool isPostStepDoItIsEnabled () const
 
virtual void DumpInfo () const
 
void SetVerboseLevel (G4int value)
 
G4int GetVerboseLevel () const
 
virtual void SetMasterProcess (G4VProcess *masterP)
 
const G4VProcessGetMasterProcess () const
 
virtual void BuildWorkerPhysicsTable (const G4ParticleDefinition &part)
 
virtual void PrepareWorkerPhysicsTable (const G4ParticleDefinition &)
 

Protected Member Functions

virtual G4double GetMeanLifeTime (const G4Track &aTrack, G4ForceCondition *condition)=0
 
virtual G4double GetContinuousStepLimit (const G4Track &aTrack, G4double previousStepSize, G4double currentMinimumStep, G4double &currentSafety)=0
 
void SetGPILSelection (G4GPILSelection selection)
 
G4GPILSelection GetGPILSelection () const
 
virtual G4double GetMeanFreePath (const G4Track &aTrack, G4double previousStepSize, G4ForceCondition *condition)=0
 
- Protected Member Functions inherited from G4VProcess
void SubtractNumberOfInteractionLengthLeft (G4double previousStepSize)
 
void ClearNumberOfInteractionLengthLeft ()
 

Additional Inherited Members

- Static Public Member Functions inherited from G4VProcess
static const G4StringGetProcessTypeName (G4ProcessType)
 
- Protected Attributes inherited from G4VProcess
const G4ProcessManageraProcessManager
 
G4VParticleChangepParticleChange
 
G4ParticleChange aParticleChange
 
G4double theNumberOfInteractionLengthLeft
 
G4double currentInteractionLength
 
G4double theInitialNumberOfInteractionLength
 
G4String theProcessName
 
G4String thePhysicsTableFileName
 
G4ProcessType theProcessType
 
G4int theProcessSubType
 
G4double thePILfactor
 
G4bool enableAtRestDoIt
 
G4bool enableAlongStepDoIt
 
G4bool enablePostStepDoIt
 
G4int verboseLevel
 

Detailed Description

Definition at line 55 of file G4VRestContinuousDiscreteProcess.hh.

Constructor & Destructor Documentation

G4VRestContinuousDiscreteProcess::G4VRestContinuousDiscreteProcess ( const G4String aName,
G4ProcessType  aType = fNotDefined 
)

Definition at line 55 of file G4VRestContinuousDiscreteProcess.cc.

References G4VRestContinuousDiscreteProcess().

Referenced by G4VRestContinuousDiscreteProcess().

56  : G4VProcess(aName, aType),
57  valueGPILSelection(CandidateForSelection)
58 {
59 }
G4VProcess(const G4String &aName="NoName", G4ProcessType aType=fNotDefined)
Definition: G4VProcess.cc:52
G4VRestContinuousDiscreteProcess::G4VRestContinuousDiscreteProcess ( G4VRestContinuousDiscreteProcess right)

Definition at line 65 of file G4VRestContinuousDiscreteProcess.cc.

References G4VRestContinuousDiscreteProcess().

66  : G4VProcess(right),
67  valueGPILSelection(right.valueGPILSelection)
68 {
69 }
G4VProcess(const G4String &aName="NoName", G4ProcessType aType=fNotDefined)
Definition: G4VProcess.cc:52
G4VRestContinuousDiscreteProcess::~G4VRestContinuousDiscreteProcess ( )
virtual

Definition at line 61 of file G4VRestContinuousDiscreteProcess.cc.

62 {
63 }

Member Function Documentation

G4VParticleChange * G4VRestContinuousDiscreteProcess::AlongStepDoIt ( const G4Track ,
const G4Step  
)
virtual

Implements G4VProcess.

Definition at line 139 of file G4VRestContinuousDiscreteProcess.cc.

References G4VProcess::pParticleChange.

143 {
144  return pParticleChange;
145 }
G4VParticleChange * pParticleChange
Definition: G4VProcess.hh:283
G4double G4VRestContinuousDiscreteProcess::AlongStepGetPhysicalInteractionLength ( const G4Track track,
G4double  previousStepSize,
G4double  currentMinimumStep,
G4double currentSafety,
G4GPILSelection selection 
)
virtual

Implements G4VProcess.

Definition at line 110 of file G4VRestContinuousDiscreteProcess.cc.

References CandidateForSelection, python.hepunit::cm, G4DynamicParticle::DumpInfo(), G4cout, G4endl, GetContinuousStepLimit(), G4Track::GetDynamicParticle(), G4Track::GetMaterial(), G4Material::GetName(), G4VProcess::GetProcessName(), and G4VProcess::verboseLevel.

117 {
118  // GPILSelection is set to defaule value of CandidateForSelection
119  valueGPILSelection = CandidateForSelection;
120 
121  // get Step limit proposed by the process
122  G4double steplength = GetContinuousStepLimit(track,previousStepSize,currentMinimumStep, currentSafety);
123 
124  // set return value for G4GPILSelection
125  *selection = valueGPILSelection;
126 
127 #ifdef G4VERBOSE
128  if (verboseLevel>1){
129  G4cout << "G4VRestContinuousDiscreteProcess::AlongStepGetPhysicalInteractionLength ";
130  G4cout << "[ " << GetProcessName() << "]" <<G4endl;
131  track.GetDynamicParticle()->DumpInfo();
132  G4cout << " in Material " << track.GetMaterial()->GetName() <<G4endl;
133  G4cout << "IntractionLength= " << steplength/cm <<"[cm] " <<G4endl;
134  }
135 #endif
136  return steplength ;
137 }
G4int verboseLevel
Definition: G4VProcess.hh:368
const G4DynamicParticle * GetDynamicParticle() const
const G4String & GetName() const
Definition: G4Material.hh:176
void DumpInfo(G4int mode=0) const
virtual G4double GetContinuousStepLimit(const G4Track &aTrack, G4double previousStepSize, G4double currentMinimumStep, G4double &currentSafety)=0
G4GLOB_DLL std::ostream G4cout
const G4String & GetProcessName() const
Definition: G4VProcess.hh:408
G4Material * GetMaterial() const
#define G4endl
Definition: G4ios.hh:61
double G4double
Definition: G4Types.hh:76
G4VParticleChange * G4VRestContinuousDiscreteProcess::AtRestDoIt ( const G4Track ,
const G4Step  
)
virtual

Implements G4VProcess.

Definition at line 99 of file G4VRestContinuousDiscreteProcess.cc.

References G4VProcess::ClearNumberOfInteractionLengthLeft(), and G4VProcess::pParticleChange.

103 {
104 // clear NumberOfInteractionLengthLeft
106 
107  return pParticleChange;
108 }
void ClearNumberOfInteractionLengthLeft()
Definition: G4VProcess.hh:447
G4VParticleChange * pParticleChange
Definition: G4VProcess.hh:283
G4double G4VRestContinuousDiscreteProcess::AtRestGetPhysicalInteractionLength ( const G4Track track,
G4ForceCondition condition 
)
virtual

Implements G4VProcess.

Definition at line 71 of file G4VRestContinuousDiscreteProcess.cc.

References G4VProcess::currentInteractionLength, G4DynamicParticle::DumpInfo(), G4cout, G4endl, G4Track::GetDynamicParticle(), G4Track::GetMaterial(), GetMeanLifeTime(), G4Material::GetName(), G4VProcess::GetProcessName(), NotForced, ns, G4VProcess::ResetNumberOfInteractionLengthLeft(), G4VProcess::theNumberOfInteractionLengthLeft, and G4VProcess::verboseLevel.

75 {
76  // beggining of tracking
78 
79  // condition is set to "Not Forced"
81 
82  // get mean life time
84 
85 #ifdef G4VERBOSE
86  if ((currentInteractionLength <0.0) || (verboseLevel>2)){
87  G4cout << "G4VRestContinuousDiscreteProcess::AtRestGetPhysicalInteractionLength ";
88  G4cout << "[ " << GetProcessName() << "]" <<G4endl;
89  track.GetDynamicParticle()->DumpInfo();
90  G4cout << " in Material " << track.GetMaterial()->GetName() <<G4endl;
91  G4cout << "MeanLifeTime = " << currentInteractionLength/ns << "[ns]" <<G4endl;
92  }
93 #endif
94 
96 }
G4double condition(const G4ErrorSymMatrix &m)
G4int verboseLevel
Definition: G4VProcess.hh:368
const G4DynamicParticle * GetDynamicParticle() const
const G4String & GetName() const
Definition: G4Material.hh:176
void DumpInfo(G4int mode=0) const
G4double theNumberOfInteractionLengthLeft
Definition: G4VProcess.hh:293
virtual void ResetNumberOfInteractionLengthLeft()
Definition: G4VProcess.cc:95
G4GLOB_DLL std::ostream G4cout
G4double currentInteractionLength
Definition: G4VProcess.hh:297
const G4String & GetProcessName() const
Definition: G4VProcess.hh:408
G4Material * GetMaterial() const
#define G4endl
Definition: G4ios.hh:61
#define ns
Definition: xmlparse.cc:597
virtual G4double GetMeanLifeTime(const G4Track &aTrack, G4ForceCondition *condition)=0
virtual G4double G4VRestContinuousDiscreteProcess::GetContinuousStepLimit ( const G4Track aTrack,
G4double  previousStepSize,
G4double  currentMinimumStep,
G4double currentSafety 
)
protectedpure virtual
G4GPILSelection G4VRestContinuousDiscreteProcess::GetGPILSelection ( ) const
inlineprotected

Definition at line 126 of file G4VRestContinuousDiscreteProcess.hh.

126 {return valueGPILSelection;};
virtual G4double G4VRestContinuousDiscreteProcess::GetMeanFreePath ( const G4Track aTrack,
G4double  previousStepSize,
G4ForceCondition condition 
)
protectedpure virtual
virtual G4double G4VRestContinuousDiscreteProcess::GetMeanLifeTime ( const G4Track aTrack,
G4ForceCondition condition 
)
protectedpure virtual
G4VParticleChange * G4VRestContinuousDiscreteProcess::PostStepDoIt ( const G4Track ,
const G4Step  
)
virtual

Implements G4VProcess.

Definition at line 189 of file G4VRestContinuousDiscreteProcess.cc.

References G4VProcess::ClearNumberOfInteractionLengthLeft(), and G4VProcess::pParticleChange.

193 {
194 // clear NumberOfInteractionLengthLeft
196 
197  return pParticleChange;
198 }
void ClearNumberOfInteractionLengthLeft()
Definition: G4VProcess.hh:447
G4VParticleChange * pParticleChange
Definition: G4VProcess.hh:283
G4double G4VRestContinuousDiscreteProcess::PostStepGetPhysicalInteractionLength ( const G4Track track,
G4double  previousStepSize,
G4ForceCondition condition 
)
virtual

Implements G4VProcess.

Definition at line 147 of file G4VRestContinuousDiscreteProcess.cc.

References python.hepunit::cm, G4VProcess::currentInteractionLength, DBL_MAX, G4DynamicParticle::DumpInfo(), G4cout, G4endl, G4Track::GetDynamicParticle(), G4Track::GetMaterial(), GetMeanFreePath(), G4Material::GetName(), G4VProcess::GetProcessName(), NotForced, G4VProcess::ResetNumberOfInteractionLengthLeft(), G4VProcess::SubtractNumberOfInteractionLengthLeft(), G4VProcess::theNumberOfInteractionLengthLeft, and G4VProcess::verboseLevel.

152 {
153  if ( (previousStepSize < 0.0) || (theNumberOfInteractionLengthLeft<=0.0)) {
154  // beggining of tracking (or just after DoIt of this process)
156  } else if ( previousStepSize > 0.0) {
157  // subtract NumberOfInteractionLengthLeft
158  SubtractNumberOfInteractionLengthLeft(previousStepSize);
159  } else {
160  // zero step
161  // DO NOTHING
162  }
163 
164  // condition is set to "Not Forced"
165  *condition = NotForced;
166 
167  // get mean free path
168  currentInteractionLength = GetMeanFreePath(track, previousStepSize, condition);
169 
170 
171  G4double value;
174  } else {
175  value = DBL_MAX;
176  }
177 #ifdef G4VERBOSE
178  if (verboseLevel>1){
179  G4cout << "G4VRestContinuousDiscreteProcess::PostStepGetPhysicalInteractionLength ";
180  G4cout << "[ " << GetProcessName() << "]" <<G4endl;
181  track.GetDynamicParticle()->DumpInfo();
182  G4cout << " in Material " << track.GetMaterial()->GetName() <<G4endl;
183  G4cout << "InteractionLength= " << value/cm <<"[cm] " <<G4endl;
184  }
185 #endif
186  return value;
187 }
G4double condition(const G4ErrorSymMatrix &m)
G4int verboseLevel
Definition: G4VProcess.hh:368
const G4DynamicParticle * GetDynamicParticle() const
const G4String & GetName() const
Definition: G4Material.hh:176
void DumpInfo(G4int mode=0) const
G4double theNumberOfInteractionLengthLeft
Definition: G4VProcess.hh:293
virtual G4double GetMeanFreePath(const G4Track &aTrack, G4double previousStepSize, G4ForceCondition *condition)=0
virtual void ResetNumberOfInteractionLengthLeft()
Definition: G4VProcess.cc:95
G4GLOB_DLL std::ostream G4cout
G4double currentInteractionLength
Definition: G4VProcess.hh:297
const G4String & GetProcessName() const
Definition: G4VProcess.hh:408
G4Material * GetMaterial() const
const XML_Char int const XML_Char * value
#define G4endl
Definition: G4ios.hh:61
void SubtractNumberOfInteractionLengthLeft(G4double previousStepSize)
Definition: G4VProcess.hh:544
double G4double
Definition: G4Types.hh:76
#define DBL_MAX
Definition: templates.hh:83
void G4VRestContinuousDiscreteProcess::SetGPILSelection ( G4GPILSelection  selection)
inlineprotected

Definition at line 123 of file G4VRestContinuousDiscreteProcess.hh.

124  { valueGPILSelection = selection;};

The documentation for this class was generated from the following files: