Import Geant4 10.7.0.beta source tree
This commit is contained in:
@@ -23,173 +23,165 @@
|
||||
// * acceptance of all terms of the Geant4 Software license. *
|
||||
// ********************************************************************
|
||||
//
|
||||
// G4VSteppingVerbose
|
||||
//
|
||||
// Class description:
|
||||
//
|
||||
//---------------------------------------------------------------
|
||||
//
|
||||
// G4VSteppingVerbose.hh
|
||||
//
|
||||
// class description:
|
||||
// This class manages the vervose outputs in G4SteppingManager.
|
||||
// The instance should be singleton. Users can inherit this
|
||||
// class to make their own verbosing class.
|
||||
//
|
||||
// This class manages the verbose outputs in G4SteppingManager.
|
||||
// The instance should be a singleton. Users can inherit this
|
||||
// class to make their own verbosity class.
|
||||
|
||||
// Contact:
|
||||
// Questions and comments to this code should be sent to
|
||||
// Katsuya Amako (e-mail: Katsuya.Amako@kek.jp)
|
||||
// Takashi Sasaki (e-mail: Takashi.Sasaki@kek.jp)
|
||||
//
|
||||
//---------------------------------------------------------------
|
||||
// --------------------------------------------------------------------
|
||||
#ifndef G4VSteppingVerbose_hh
|
||||
#define G4VSteppingVerbose_hh 1
|
||||
|
||||
#ifndef G4VSteppingVerbose_h
|
||||
#define G4VSteppingVerbose_h
|
||||
#include <vector>
|
||||
#include "globals.hh" // Include from 'global'
|
||||
#include "G4VProcess.hh"
|
||||
#include "G4TrackVector.hh" // Include from 'tracking'
|
||||
#include "G4StepStatus.hh" // Include from 'track'
|
||||
#include "G4TouchableHandle.hh"
|
||||
#include "G4ForceCondition.hh" // enum 'track'
|
||||
#include "G4GPILSelection.hh" // enum 'track'
|
||||
|
||||
class G4SteppingManager;
|
||||
|
||||
#include "globals.hh" // Include from 'global'
|
||||
#include <vector>
|
||||
|
||||
class G4Navigator;
|
||||
class G4VPhysicalVolume;
|
||||
class G4VSensitiveDetector;
|
||||
#include "G4VProcess.hh"
|
||||
class G4ProcessVector;
|
||||
class G4SteppingManager; // Include from 'tracking'
|
||||
class G4SteppingManager;
|
||||
class G4Track;
|
||||
#include "G4TrackVector.hh" // Include from 'tracking'
|
||||
#include "G4StepStatus.hh" // Include from 'track'
|
||||
class G4UserSteppingAction;
|
||||
class G4StepPoint;
|
||||
#include "G4TouchableHandle.hh"
|
||||
class G4VParticleChange;
|
||||
#include "G4ForceCondition.hh" //enum 'track'
|
||||
#include "G4GPILSelection.hh" //enum 'track'
|
||||
|
||||
|
||||
class G4VSteppingVerbose
|
||||
{
|
||||
// Constructor/Destructor
|
||||
protected: // to force 'singleton'
|
||||
G4VSteppingVerbose();
|
||||
public:
|
||||
virtual ~G4VSteppingVerbose();
|
||||
//
|
||||
protected:
|
||||
static G4ThreadLocal G4VSteppingVerbose* fInstance;// pointer to the instance
|
||||
static G4ThreadLocal G4int Silent; //flag for verbosity
|
||||
static G4ThreadLocal G4int SilentStepInfo; //another flag for verbosity
|
||||
public: // with description
|
||||
// static methods to set/get the object's pointer
|
||||
static void SetInstance(G4VSteppingVerbose* Instance);
|
||||
static G4VSteppingVerbose* GetInstance();
|
||||
static G4int GetSilent();
|
||||
static void SetSilent(G4int fSilent);
|
||||
static G4int GetSilentStepInfo();
|
||||
static void SetSilentStepInfo(G4int fSilent);
|
||||
// these method are invoked in the SteppingManager
|
||||
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;
|
||||
// Member data
|
||||
public:
|
||||
|
||||
protected:
|
||||
G4SteppingManager* fManager;
|
||||
virtual ~G4VSteppingVerbose();
|
||||
|
||||
// static methods to set/get the object's pointer
|
||||
|
||||
static void SetInstance(G4VSteppingVerbose* Instance);
|
||||
static G4VSteppingVerbose* GetInstance();
|
||||
static G4int GetSilent();
|
||||
static void SetSilent(G4int fSilent);
|
||||
static G4int GetSilentStepInfo();
|
||||
static void SetSilentStepInfo(G4int fSilent);
|
||||
|
||||
// these method are invoked by G4SteppingManager
|
||||
|
||||
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;
|
||||
|
||||
protected:
|
||||
|
||||
G4VSteppingVerbose(); // 'singleton'
|
||||
|
||||
static G4ThreadLocal G4VSteppingVerbose* fInstance;
|
||||
// pointer to the instance
|
||||
static G4ThreadLocal G4int Silent;
|
||||
//flag for verbosity
|
||||
static G4ThreadLocal G4int SilentStepInfo;
|
||||
//another flag for verbosity
|
||||
|
||||
G4SteppingManager* fManager = nullptr;
|
||||
G4UserSteppingAction* fUserSteppingAction = nullptr;
|
||||
|
||||
G4UserSteppingAction* fUserSteppingAction;
|
||||
G4double PhysicalStep = 0.0;
|
||||
G4double GeometricalStep = 0.0;
|
||||
G4double CorrectedStep = 0.0;
|
||||
G4bool PreStepPointIsGeom = false;
|
||||
G4bool FirstStep = false;
|
||||
G4StepStatus fStepStatus = fUndefined;
|
||||
|
||||
G4double TempInitVelocity = 0.0;
|
||||
G4double TempVelocity = 0.0;
|
||||
G4double Mass = 0.0;
|
||||
|
||||
G4double sumEnergyChange = 0.0;
|
||||
|
||||
G4VParticleChange* fParticleChange = nullptr;
|
||||
G4Track* fTrack = nullptr;
|
||||
G4TrackVector* fSecondary = nullptr;
|
||||
G4Step* fStep = nullptr;
|
||||
G4StepPoint* fPreStepPoint = nullptr;
|
||||
G4StepPoint* fPostStepPoint = nullptr;
|
||||
|
||||
G4VPhysicalVolume* fCurrentVolume = nullptr;
|
||||
G4VSensitiveDetector* fSensitive = nullptr;
|
||||
G4VProcess* fCurrentProcess = nullptr;
|
||||
// The pointer to the process whose DoIt() or
|
||||
// GetPhysicalInteractionLength() has been just executed
|
||||
|
||||
G4ProcessVector* fAtRestDoItVector = nullptr;
|
||||
G4ProcessVector* fAlongStepDoItVector = nullptr;
|
||||
G4ProcessVector* fPostStepDoItVector = nullptr;
|
||||
|
||||
G4ProcessVector* fAtRestGetPhysIntVector = nullptr;
|
||||
G4ProcessVector* fAlongStepGetPhysIntVector = nullptr;
|
||||
G4ProcessVector* fPostStepGetPhysIntVector = nullptr;
|
||||
|
||||
std::size_t MAXofAtRestLoops = 0;
|
||||
std::size_t MAXofAlongStepLoops = 0;
|
||||
std::size_t MAXofPostStepLoops = 0;
|
||||
|
||||
G4double PhysicalStep;
|
||||
G4double GeometricalStep;
|
||||
G4double CorrectedStep;
|
||||
G4bool PreStepPointIsGeom;
|
||||
G4bool FirstStep;
|
||||
G4StepStatus fStepStatus;
|
||||
G4double currentMinimumStep = 0.0;
|
||||
G4double numberOfInteractionLengthLeft = 0.0;
|
||||
|
||||
G4double TempInitVelocity;
|
||||
G4double TempVelocity;
|
||||
G4double Mass;
|
||||
std::size_t fAtRestDoItProcTriggered = 0;
|
||||
std::size_t fAlongStepDoItProcTriggered = 0;
|
||||
std::size_t fPostStepDoItProcTriggered = 0;
|
||||
|
||||
G4double sumEnergyChange;
|
||||
|
||||
G4VParticleChange* fParticleChange;
|
||||
G4Track* fTrack;
|
||||
G4TrackVector* fSecondary;
|
||||
G4Step* fStep;
|
||||
G4StepPoint* fPreStepPoint;
|
||||
G4StepPoint* fPostStepPoint;
|
||||
|
||||
G4VPhysicalVolume* fCurrentVolume;
|
||||
G4VSensitiveDetector* fSensitive;
|
||||
G4VProcess* fCurrentProcess;
|
||||
// The pointer to the process of which DoIt or
|
||||
// GetPhysicalInteractionLength has been just executed.
|
||||
|
||||
|
||||
G4ProcessVector* fAtRestDoItVector;
|
||||
G4ProcessVector* fAlongStepDoItVector;
|
||||
G4ProcessVector* fPostStepDoItVector;
|
||||
|
||||
G4ProcessVector* fAtRestGetPhysIntVector;
|
||||
G4ProcessVector* fAlongStepGetPhysIntVector;
|
||||
G4ProcessVector* fPostStepGetPhysIntVector;
|
||||
|
||||
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;
|
||||
G4int fN2ndariesAtRestDoIt = 0;
|
||||
G4int fN2ndariesAlongStepDoIt = 0;
|
||||
G4int fN2ndariesPostStepDoIt = 0;
|
||||
// These are the numbers of secondaries generated by the process
|
||||
// just executed.
|
||||
// just executed
|
||||
|
||||
G4Navigator *fNavigator;
|
||||
G4Navigator* fNavigator = nullptr;
|
||||
|
||||
G4int verboseLevel;
|
||||
G4int verboseLevel = 0;
|
||||
|
||||
typedef std::vector<G4int>
|
||||
G4SelectedAtRestDoItVector;
|
||||
typedef std::vector<G4int>
|
||||
G4SelectedAlongStepDoItVector;
|
||||
typedef std::vector<G4int>
|
||||
G4SelectedPostStepDoItVector;
|
||||
G4SelectedAtRestDoItVector* fSelectedAtRestDoItVector;
|
||||
G4SelectedAlongStepDoItVector* fSelectedAlongStepDoItVector;
|
||||
G4SelectedPostStepDoItVector* fSelectedPostStepDoItVector;
|
||||
using G4SelectedAtRestDoItVector = std::vector<G4int>;
|
||||
using G4SelectedAlongStepDoItVector = std::vector<G4int>;
|
||||
using G4SelectedPostStepDoItVector = std::vector<G4int>;
|
||||
|
||||
G4double fPreviousStepSize;
|
||||
G4SelectedAtRestDoItVector* fSelectedAtRestDoItVector = nullptr;
|
||||
G4SelectedAlongStepDoItVector* fSelectedAlongStepDoItVector = nullptr;
|
||||
G4SelectedPostStepDoItVector* fSelectedPostStepDoItVector = nullptr;
|
||||
|
||||
G4TouchableHandle fTouchableHandle;
|
||||
G4double fPreviousStepSize = 0.0;
|
||||
|
||||
G4SteppingControl StepControlFlag;
|
||||
|
||||
G4double physIntLength;
|
||||
G4ForceCondition fCondition;
|
||||
G4GPILSelection fGPILSelection;
|
||||
// Above three variables are for the method
|
||||
// DefinePhysicalStepLength(). To pass these information to
|
||||
// the method Verbose, they are kept at here. Need a more
|
||||
// elegant mechanism.
|
||||
G4TouchableHandle fTouchableHandle;
|
||||
|
||||
G4SteppingControl StepControlFlag = NormalCondition;
|
||||
|
||||
G4double physIntLength = 0.0;
|
||||
G4ForceCondition fCondition = InActivated;
|
||||
G4GPILSelection fGPILSelection = NotCandidateForSelection;
|
||||
// Above three variables are for the method DefinePhysicalStepLength().
|
||||
// To pass this information to the method Verbose(), they are kept at
|
||||
// here. Need a more elegant mechanism
|
||||
};
|
||||
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user