Geant4 9.6.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4VSteppingVerbose Class Referenceabstract

#include <G4VSteppingVerbose.hh>

+ Inheritance diagram for G4VSteppingVerbose:

Public Member Functions

virtual ~G4VSteppingVerbose ()
 
virtual void NewStep ()=0
 
void CopyState ()
 
void SetManager (G4SteppingManager *const)
 
virtual void AtRestDoItInvoked ()=0
 
virtual void AlongStepDoItAllDone ()=0
 
virtual void PostStepDoItAllDone ()=0
 
virtual void AlongStepDoItOneByOne ()=0
 
virtual void PostStepDoItOneByOne ()=0
 
virtual void StepInfo ()=0
 
virtual void TrackingStarted ()=0
 
virtual void DPSLStarted ()=0
 
virtual void DPSLUserLimit ()=0
 
virtual void DPSLPostStep ()=0
 
virtual void DPSLAlongStep ()=0
 
virtual void VerboseTrack ()=0
 
virtual void VerboseParticleChange ()=0
 

Static Public Member Functions

static void SetInstance (G4VSteppingVerbose *Instance)
 
static G4VSteppingVerboseGetInstance ()
 
static G4int GetSilent ()
 
static void SetSilent (G4int fSilent)
 
static G4int GetSilentStepInfo ()
 
static void SetSilentStepInfo (G4int fSilent)
 

Protected Types

typedef std::vector< G4intG4SelectedAtRestDoItVector
 
typedef std::vector< G4intG4SelectedAlongStepDoItVector
 
typedef std::vector< G4intG4SelectedPostStepDoItVector
 

Protected Member Functions

 G4VSteppingVerbose ()
 

Protected Attributes

G4SteppingManagerfManager
 
G4UserSteppingActionfUserSteppingAction
 
G4double PhysicalStep
 
G4double GeometricalStep
 
G4double CorrectedStep
 
G4bool PreStepPointIsGeom
 
G4bool FirstStep
 
G4StepStatus fStepStatus
 
G4double TempInitVelocity
 
G4double TempVelocity
 
G4double Mass
 
G4double sumEnergyChange
 
G4VParticleChangefParticleChange
 
G4TrackfTrack
 
G4TrackVectorfSecondary
 
G4StepfStep
 
G4StepPointfPreStepPoint
 
G4StepPointfPostStepPoint
 
G4VPhysicalVolumefCurrentVolume
 
G4VSensitiveDetectorfSensitive
 
G4VProcessfCurrentProcess
 
G4ProcessVectorfAtRestDoItVector
 
G4ProcessVectorfAlongStepDoItVector
 
G4ProcessVectorfPostStepDoItVector
 
G4ProcessVectorfAtRestGetPhysIntVector
 
G4ProcessVectorfAlongStepGetPhysIntVector
 
G4ProcessVectorfPostStepGetPhysIntVector
 
size_t MAXofAtRestLoops
 
size_t MAXofAlongStepLoops
 
size_t MAXofPostStepLoops
 
G4double currentMinimumStep
 
G4double numberOfInteractionLengthLeft
 
size_t fAtRestDoItProcTriggered
 
size_t fAlongStepDoItProcTriggered
 
size_t fPostStepDoItProcTriggered
 
G4int fN2ndariesAtRestDoIt
 
G4int fN2ndariesAlongStepDoIt
 
G4int fN2ndariesPostStepDoIt
 
G4NavigatorfNavigator
 
G4int verboseLevel
 
G4SelectedAtRestDoItVectorfSelectedAtRestDoItVector
 
G4SelectedAlongStepDoItVectorfSelectedAlongStepDoItVector
 
G4SelectedPostStepDoItVectorfSelectedPostStepDoItVector
 
G4double fPreviousStepSize
 
G4TouchableHandle fTouchableHandle
 
G4SteppingControl StepControlFlag
 
G4double physIntLength
 
G4ForceCondition fCondition
 
G4GPILSelection fGPILSelection
 

Static Protected Attributes

static G4VSteppingVerbosefInstance = 0
 
static G4int Silent = 0
 
static G4int SilentStepInfo = 0
 

Detailed Description

Definition at line 70 of file G4VSteppingVerbose.hh.

Member Typedef Documentation

◆ G4SelectedAlongStepDoItVector

Definition at line 173 of file G4VSteppingVerbose.hh.

◆ G4SelectedAtRestDoItVector

typedef std::vector<G4int> G4VSteppingVerbose::G4SelectedAtRestDoItVector
protected

Definition at line 171 of file G4VSteppingVerbose.hh.

◆ G4SelectedPostStepDoItVector

Definition at line 175 of file G4VSteppingVerbose.hh.

Constructor & Destructor Documentation

◆ G4VSteppingVerbose()

G4VSteppingVerbose::G4VSteppingVerbose ( )
protected

Definition at line 53 of file G4VSteppingVerbose.cc.

56 PreStepPointIsGeom(false), FirstStep(false),
58 fParticleChange(0), fTrack(0), fSecondary(0), fStep(0),
71{
72 if(fInstance!= 0)
73 {
74 G4Exception("G4VSteppingVerbose::G4VSteppingVerbose()",
75 "Tracking0014", FatalException,
76 "Only one SteppingVerbose class can be instantiated.");
77 }
78}
@ FatalException
G4StepPoint * fPostStepPoint
G4ProcessVector * fPostStepGetPhysIntVector
G4UserSteppingAction * fUserSteppingAction
G4ProcessVector * fAlongStepGetPhysIntVector
G4VParticleChange * fParticleChange
static G4VSteppingVerbose * fInstance
G4VPhysicalVolume * fCurrentVolume
G4SelectedPostStepDoItVector * fSelectedPostStepDoItVector
G4ProcessVector * fAtRestDoItVector
G4SelectedAtRestDoItVector * fSelectedAtRestDoItVector
G4VProcess * fCurrentProcess
G4ProcessVector * fAtRestGetPhysIntVector
G4SelectedAlongStepDoItVector * fSelectedAlongStepDoItVector
G4StepPoint * fPreStepPoint
G4VSensitiveDetector * fSensitive
G4ProcessVector * fPostStepDoItVector
G4ProcessVector * fAlongStepDoItVector
G4SteppingManager * fManager
G4double numberOfInteractionLengthLeft
G4TrackVector * fSecondary
void G4Exception(const char *originOfException, const char *exceptionCode, G4ExceptionSeverity severity, const char *comments)
Definition: G4Exception.cc:41

◆ ~G4VSteppingVerbose()

G4VSteppingVerbose::~G4VSteppingVerbose ( )
virtual

Definition at line 79 of file G4VSteppingVerbose.cc.

79{;}

Member Function Documentation

◆ AlongStepDoItAllDone()

virtual void G4VSteppingVerbose::AlongStepDoItAllDone ( )
pure virtual

Implemented in G4SteppingVerbose.

Referenced by G4SteppingManager::Stepping().

◆ AlongStepDoItOneByOne()

virtual void G4VSteppingVerbose::AlongStepDoItOneByOne ( )
pure virtual

Implemented in G4SteppingVerbose.

◆ AtRestDoItInvoked()

virtual void G4VSteppingVerbose::AtRestDoItInvoked ( )
pure virtual

Implemented in G4SteppingVerbose.

Referenced by G4SteppingManager::Stepping().

◆ CopyState()

void G4VSteppingVerbose::CopyState ( )

Definition at line 89 of file G4VSteppingVerbose.cc.

91{
92
94 // fVerbose = this;
95
102
105 Mass = fManager->GetMass();
106
108
115
119
123
127
131
135
139
141
143
147
149
151
153
157}
G4ProcessVector * GetfPostStepDoItVector()
size_t GetfAtRestDoItProcTriggered()
G4TrackVector * GetfSecondary()
G4SteppingControl GetStepControlFlag()
G4SelectedPostStepDoItVector * GetfSelectedPostStepDoItVector()
G4Navigator * GetfNavigator()
G4VPhysicalVolume * GetfCurrentVolume()
G4StepPoint * GetfPreStepPoint()
G4ProcessVector * GetfAlongStepDoItVector()
G4VParticleChange * GetfParticleChange()
size_t GetfPostStepDoItProcTriggered()
size_t GetfAlongStepDoItProcTriggered()
G4double GetfPreviousStepSize()
G4SelectedAlongStepDoItVector * GetfSelectedAlongStepDoItVector()
G4ForceCondition GetfCondition()
G4ProcessVector * GetfAlongStepGetPhysIntVector()
G4double GetsumEnergyChange()
G4double GetTempInitVelocity()
G4VSensitiveDetector * GetfSensitive()
G4ProcessVector * GetfAtRestDoItVector()
G4StepStatus GetfStepStatus()
G4SelectedAtRestDoItVector * GetfSelectedAtRestDoItVector()
G4int GetfN2ndariesAlongStepDoIt()
G4GPILSelection GetfGPILSelection()
G4ProcessVector * GetfAtRestGetPhysIntVector()
G4ProcessVector * GetfPostStepGetPhysIntVector()
G4StepPoint * GetfPostStepPoint()
G4UserSteppingAction * GetUserAction()
G4VProcess * GetfCurrentProcess()
const G4TouchableHandle & GetTouchableHandle()
G4double GetGeometricalStep()
G4ForceCondition fCondition
G4TouchableHandle fTouchableHandle
G4GPILSelection fGPILSelection
G4SteppingControl StepControlFlag

Referenced by G4SteppingVerbose::AlongStepDoItAllDone(), G4SteppingVerbose::AlongStepDoItOneByOne(), G4SteppingVerbose::AtRestDoItInvoked(), G4SteppingVerbose::DPSLAlongStep(), G4SteppingVerbose::DPSLPostStep(), G4SteppingVerbose::DPSLStarted(), G4SteppingVerbose::DPSLUserLimit(), G4SteppingVerbose::PostStepDoItAllDone(), G4SteppingVerbose::PostStepDoItOneByOne(), G4SteppingVerbose::StepInfo(), G4SteppingVerbose::TrackingStarted(), and G4SteppingVerbose::VerboseTrack().

◆ DPSLAlongStep()

virtual void G4VSteppingVerbose::DPSLAlongStep ( )
pure virtual

Implemented in G4SteppingVerbose.

◆ DPSLPostStep()

virtual void G4VSteppingVerbose::DPSLPostStep ( )
pure virtual

Implemented in G4SteppingVerbose.

◆ DPSLStarted()

virtual void G4VSteppingVerbose::DPSLStarted ( )
pure virtual

Implemented in G4SteppingVerbose.

◆ DPSLUserLimit()

virtual void G4VSteppingVerbose::DPSLUserLimit ( )
pure virtual

Implemented in G4SteppingVerbose.

◆ GetInstance()

G4VSteppingVerbose * G4VSteppingVerbose::GetInstance ( )
static

Definition at line 164 of file G4VSteppingVerbose.cc.

165{
166 return fInstance;
167}

Referenced by G4SteppingManager::G4SteppingManager().

◆ GetSilent()

G4int G4VSteppingVerbose::GetSilent ( )
static

Definition at line 169 of file G4VSteppingVerbose.cc.

170{
171 return Silent;
172}

Referenced by G4TrackingManager::ProcessOneTrack().

◆ GetSilentStepInfo()

G4int G4VSteppingVerbose::GetSilentStepInfo ( )
static

Definition at line 179 of file G4VSteppingVerbose.cc.

180{
181 return SilentStepInfo;
182}
static G4int SilentStepInfo

◆ NewStep()

virtual void G4VSteppingVerbose::NewStep ( )
pure virtual

Implemented in G4SteppingVerbose.

Referenced by G4SteppingManager::Stepping().

◆ PostStepDoItAllDone()

virtual void G4VSteppingVerbose::PostStepDoItAllDone ( )
pure virtual

Implemented in G4SteppingVerbose.

Referenced by G4SteppingManager::Stepping().

◆ PostStepDoItOneByOne()

virtual void G4VSteppingVerbose::PostStepDoItOneByOne ( )
pure virtual

Implemented in G4SteppingVerbose.

◆ SetInstance()

void G4VSteppingVerbose::SetInstance ( G4VSteppingVerbose Instance)
static

Definition at line 159 of file G4VSteppingVerbose.cc.

160{
161 fInstance=Instance;
162}

Referenced by G4SteppingManager::G4SteppingManager().

◆ SetManager()

void G4VSteppingVerbose::SetManager ( G4SteppingManager * const  fMan)

Definition at line 82 of file G4VSteppingVerbose.cc.

84{
85 fManager=fMan;
86}

◆ SetSilent()

void G4VSteppingVerbose::SetSilent ( G4int  fSilent)
static

Definition at line 174 of file G4VSteppingVerbose.cc.

175{
176 Silent=fSilent;
177}

Referenced by G4SteppingManager::Stepping().

◆ SetSilentStepInfo()

void G4VSteppingVerbose::SetSilentStepInfo ( G4int  fSilent)
static

Definition at line 184 of file G4VSteppingVerbose.cc.

185{
186 SilentStepInfo=fSilent;
187}

◆ StepInfo()

virtual void G4VSteppingVerbose::StepInfo ( )
pure virtual

Implemented in G4SteppingVerbose.

Referenced by G4SteppingManager::Stepping().

◆ TrackingStarted()

virtual void G4VSteppingVerbose::TrackingStarted ( )
pure virtual

◆ VerboseParticleChange()

virtual void G4VSteppingVerbose::VerboseParticleChange ( )
pure virtual

Implemented in G4SteppingVerbose.

◆ VerboseTrack()

virtual void G4VSteppingVerbose::VerboseTrack ( )
pure virtual

Implemented in G4SteppingVerbose.

Member Data Documentation

◆ CorrectedStep

G4double G4VSteppingVerbose::CorrectedStep
protected

Definition at line 116 of file G4VSteppingVerbose.hh.

Referenced by CopyState().

◆ currentMinimumStep

G4double G4VSteppingVerbose::currentMinimumStep
protected

Definition at line 153 of file G4VSteppingVerbose.hh.

◆ fAlongStepDoItProcTriggered

size_t G4VSteppingVerbose::fAlongStepDoItProcTriggered
protected

Definition at line 157 of file G4VSteppingVerbose.hh.

Referenced by CopyState().

◆ fAlongStepDoItVector

G4ProcessVector* G4VSteppingVerbose::fAlongStepDoItVector
protected

Definition at line 142 of file G4VSteppingVerbose.hh.

Referenced by CopyState().

◆ fAlongStepGetPhysIntVector

G4ProcessVector* G4VSteppingVerbose::fAlongStepGetPhysIntVector
protected

Definition at line 146 of file G4VSteppingVerbose.hh.

Referenced by CopyState().

◆ fAtRestDoItProcTriggered

size_t G4VSteppingVerbose::fAtRestDoItProcTriggered
protected

Definition at line 156 of file G4VSteppingVerbose.hh.

Referenced by CopyState().

◆ fAtRestDoItVector

G4ProcessVector* G4VSteppingVerbose::fAtRestDoItVector
protected

Definition at line 141 of file G4VSteppingVerbose.hh.

Referenced by CopyState().

◆ fAtRestGetPhysIntVector

G4ProcessVector* G4VSteppingVerbose::fAtRestGetPhysIntVector
protected

Definition at line 145 of file G4VSteppingVerbose.hh.

Referenced by CopyState().

◆ fCondition

G4ForceCondition G4VSteppingVerbose::fCondition
protected

◆ fCurrentProcess

◆ fCurrentVolume

G4VPhysicalVolume* G4VSteppingVerbose::fCurrentVolume
protected

Definition at line 134 of file G4VSteppingVerbose.hh.

Referenced by CopyState().

◆ fGPILSelection

G4GPILSelection G4VSteppingVerbose::fGPILSelection
protected

Definition at line 188 of file G4VSteppingVerbose.hh.

Referenced by CopyState(), and G4SteppingVerbose::DPSLAlongStep().

◆ fInstance

G4VSteppingVerbose * G4VSteppingVerbose::fInstance = 0
staticprotected

Definition at line 79 of file G4VSteppingVerbose.hh.

Referenced by G4VSteppingVerbose(), GetInstance(), and SetInstance().

◆ FirstStep

G4bool G4VSteppingVerbose::FirstStep
protected

Definition at line 118 of file G4VSteppingVerbose.hh.

Referenced by CopyState().

◆ fManager

G4SteppingManager* G4VSteppingVerbose::fManager
protected

Definition at line 110 of file G4VSteppingVerbose.hh.

Referenced by CopyState(), and SetManager().

◆ fN2ndariesAlongStepDoIt

G4int G4VSteppingVerbose::fN2ndariesAlongStepDoIt
protected

◆ fN2ndariesAtRestDoIt

G4int G4VSteppingVerbose::fN2ndariesAtRestDoIt
protected

◆ fN2ndariesPostStepDoIt

G4int G4VSteppingVerbose::fN2ndariesPostStepDoIt
protected

◆ fNavigator

G4Navigator* G4VSteppingVerbose::fNavigator
protected

Definition at line 166 of file G4VSteppingVerbose.hh.

Referenced by CopyState().

◆ fParticleChange

G4VParticleChange* G4VSteppingVerbose::fParticleChange
protected

Definition at line 127 of file G4VSteppingVerbose.hh.

Referenced by CopyState(), and G4SteppingVerbose::VerboseParticleChange().

◆ fPostStepDoItProcTriggered

size_t G4VSteppingVerbose::fPostStepDoItProcTriggered
protected

Definition at line 158 of file G4VSteppingVerbose.hh.

Referenced by CopyState().

◆ fPostStepDoItVector

G4ProcessVector* G4VSteppingVerbose::fPostStepDoItVector
protected

Definition at line 143 of file G4VSteppingVerbose.hh.

Referenced by CopyState().

◆ fPostStepGetPhysIntVector

G4ProcessVector* G4VSteppingVerbose::fPostStepGetPhysIntVector
protected

Definition at line 147 of file G4VSteppingVerbose.hh.

Referenced by CopyState().

◆ fPostStepPoint

G4StepPoint* G4VSteppingVerbose::fPostStepPoint
protected

Definition at line 132 of file G4VSteppingVerbose.hh.

Referenced by CopyState().

◆ fPreStepPoint

G4StepPoint* G4VSteppingVerbose::fPreStepPoint
protected

Definition at line 131 of file G4VSteppingVerbose.hh.

Referenced by CopyState().

◆ fPreviousStepSize

G4double G4VSteppingVerbose::fPreviousStepSize
protected

Definition at line 180 of file G4VSteppingVerbose.hh.

Referenced by CopyState().

◆ fSecondary

◆ fSelectedAlongStepDoItVector

G4SelectedAlongStepDoItVector* G4VSteppingVerbose::fSelectedAlongStepDoItVector
protected

Definition at line 177 of file G4VSteppingVerbose.hh.

Referenced by CopyState().

◆ fSelectedAtRestDoItVector

G4SelectedAtRestDoItVector* G4VSteppingVerbose::fSelectedAtRestDoItVector
protected

Definition at line 176 of file G4VSteppingVerbose.hh.

Referenced by G4SteppingVerbose::AtRestDoItInvoked(), and CopyState().

◆ fSelectedPostStepDoItVector

G4SelectedPostStepDoItVector* G4VSteppingVerbose::fSelectedPostStepDoItVector
protected

Definition at line 178 of file G4VSteppingVerbose.hh.

Referenced by CopyState(), and G4SteppingVerbose::PostStepDoItAllDone().

◆ fSensitive

G4VSensitiveDetector* G4VSteppingVerbose::fSensitive
protected

Definition at line 135 of file G4VSteppingVerbose.hh.

Referenced by CopyState().

◆ fStep

G4Step* G4VSteppingVerbose::fStep
protected

◆ fStepStatus

G4StepStatus G4VSteppingVerbose::fStepStatus
protected

Definition at line 119 of file G4VSteppingVerbose.hh.

Referenced by CopyState(), and G4SteppingVerbose::PostStepDoItAllDone().

◆ fTouchableHandle

G4TouchableHandle G4VSteppingVerbose::fTouchableHandle
protected

Definition at line 182 of file G4VSteppingVerbose.hh.

Referenced by CopyState().

◆ fTrack

G4Track* G4VSteppingVerbose::fTrack
protected

◆ fUserSteppingAction

G4UserSteppingAction* G4VSteppingVerbose::fUserSteppingAction
protected

Definition at line 112 of file G4VSteppingVerbose.hh.

Referenced by CopyState().

◆ GeometricalStep

G4double G4VSteppingVerbose::GeometricalStep
protected

Definition at line 115 of file G4VSteppingVerbose.hh.

Referenced by CopyState().

◆ Mass

G4double G4VSteppingVerbose::Mass
protected

Definition at line 123 of file G4VSteppingVerbose.hh.

Referenced by CopyState().

◆ MAXofAlongStepLoops

size_t G4VSteppingVerbose::MAXofAlongStepLoops
protected

Definition at line 150 of file G4VSteppingVerbose.hh.

Referenced by G4SteppingVerbose::AlongStepDoItAllDone(), and CopyState().

◆ MAXofAtRestLoops

size_t G4VSteppingVerbose::MAXofAtRestLoops
protected

Definition at line 149 of file G4VSteppingVerbose.hh.

Referenced by G4SteppingVerbose::AtRestDoItInvoked(), and CopyState().

◆ MAXofPostStepLoops

size_t G4VSteppingVerbose::MAXofPostStepLoops
protected

Definition at line 151 of file G4VSteppingVerbose.hh.

Referenced by CopyState(), and G4SteppingVerbose::PostStepDoItAllDone().

◆ numberOfInteractionLengthLeft

G4double G4VSteppingVerbose::numberOfInteractionLengthLeft
protected

Definition at line 154 of file G4VSteppingVerbose.hh.

◆ PhysicalStep

G4double G4VSteppingVerbose::PhysicalStep
protected

Definition at line 114 of file G4VSteppingVerbose.hh.

Referenced by CopyState().

◆ physIntLength

G4double G4VSteppingVerbose::physIntLength
protected

◆ PreStepPointIsGeom

G4bool G4VSteppingVerbose::PreStepPointIsGeom
protected

Definition at line 117 of file G4VSteppingVerbose.hh.

Referenced by CopyState().

◆ Silent

◆ SilentStepInfo

G4int G4VSteppingVerbose::SilentStepInfo = 0
staticprotected

◆ StepControlFlag

G4SteppingControl G4VSteppingVerbose::StepControlFlag
protected

Definition at line 184 of file G4VSteppingVerbose.hh.

Referenced by CopyState().

◆ sumEnergyChange

G4double G4VSteppingVerbose::sumEnergyChange
protected

Definition at line 125 of file G4VSteppingVerbose.hh.

Referenced by CopyState().

◆ TempInitVelocity

G4double G4VSteppingVerbose::TempInitVelocity
protected

Definition at line 121 of file G4VSteppingVerbose.hh.

Referenced by CopyState().

◆ TempVelocity

G4double G4VSteppingVerbose::TempVelocity
protected

Definition at line 122 of file G4VSteppingVerbose.hh.

Referenced by CopyState().

◆ verboseLevel


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