81# define PrepareState() \
82 G4ITTransportationState* __state = this->GetState<G4ITTransportationState>()
86#define State(theXInfo) (__state->theXInfo)
127 fInstantiateProcessState =
true;
173 fInstantiateProcessState = right.fInstantiateProcessState;
220 G4cout <<
" G4ITTransportation: Statistics for looping particles "
222 G4cout <<
" Sum of energy of loopers killed: "
224 G4cout <<
" Max energy of loopers killed: "
260 G4double geometryStepLength(-1.0), newSafety(-1.0);
262 State(fParticleIsLooping) =
false;
263 State(fEndGlobalTimeComputed) =
false;
264 State(fGeometryLimitedStep) =
false;
312 G4bool fieldExertsForce =
false;
313 if ((particleCharge != 0.0))
316 if (fieldMgr !=
nullptr)
334 if (!fieldExertsForce)
341 geometryStepLength = currentMinimumStep;
342 State(fGeometryLimitedStep) =
false;
368 State(fTransportEndPosition));
373 currentSafety = newSafety;
375 State(fGeometryLimitedStep) = (linearStepLength <= currentMinimumStep);
376 if (
State(fGeometryLimitedStep))
379 geometryStepLength = linearStepLength;
384 geometryStepLength = currentMinimumStep;
387 State(fEndPointDistance) = geometryStepLength;
391 State(fTransportEndPosition) = startPosition
392 + geometryStepLength * startMomentumDir;
396 State(fTransportEndMomentumDir) = startMomentumDir;
399 State(fParticleIsLooping) =
false;
400 State(fMomentumChanged) =
false;
401 State(fEndGlobalTimeComputed) =
true;
402 State(theInteractionTimeLeft) =
State(fEndPointDistance)
404 State(fCandidateEndGlobalTime) =
State(theInteractionTimeLeft)
422 <<
"ITTransportation does not support external fields.";
424 <<
" If you are dealing with a tradiational MC simulation, ";
425 exceptionDescription <<
"please use G4Transportation.";
427 G4Exception(
"G4ITTransportation::AlongStepGetPhysicalInteractionLength",
583 if (currentMinimumStep == 0.0)
585 if (currentSafety == 0.0)
587 State(fGeometryLimitedStep) =
true;
597 if (currentSafety <
State(fEndPointDistance))
602 if (particleCharge != 0.0)
606 State(fTransportEndPosition));
607 currentSafety = endSafety;
620 State(fTransportEndPosition));
626 currentSafety +=
State(fEndPointDistance);
628#ifdef G4DEBUG_TRANSPORT
630 G4cout <<
"***G4Transportation::AlongStepGPIL ** " <<
G4endl;
631 G4cout <<
" Called Navigator->ComputeSafety at "
632 <<
State(fTransportEndPosition)
633 <<
" and it returned safety= " << endSafety <<
G4endl;
634 G4cout <<
" Adding endpoint distance " <<
State(fEndPointDistance)
635 <<
" to obtain pseudo-safety= " << currentSafety <<
G4endl;
645 return geometryStepLength;
650 const double timeStep,
651 double& oPhysicalStep)
661 State(fGeometryLimitedStep) =
false;
667 State(fEndGlobalTimeComputed) =
true;
671 if (!
State(fMomentumChanged))
675 oPhysicalStep = initialVelocity * timeStep;
679 State(fTransportEndPosition) = startPosition
680 + oPhysicalStep * startMomentumDir;
693#if defined (DEBUG_MEM)
694 MemStat mem_first, mem_second, mem_diff;
697#if defined (DEBUG_MEM)
709 if (pdefOpticalPhoton ==
nullptr) pdefOpticalPhoton =
736 if (
State(fEndGlobalTimeComputed) == 0)
749 deltaTime = stepLength / finalVelocity;
751 else if (initialVelocity > 0.0)
753 deltaTime = stepLength / initialVelocity;
756 State(fCandidateEndGlobalTime) = startTime + deltaTime;
760 deltaTime =
State(fCandidateEndGlobalTime) - startTime;
783 if (
State(fParticleIsLooping))
806 <<
" G4ITTransportation is killing track that is looping or stuck "
808 <<
" MeV energy." <<
G4endl;
809 G4cout <<
" Number of trials = " <<
State(fNoLooperTrials)
810 <<
" No of calls to AlongStepDoIt = " << noCalls
814 State(fNoLooperTrials) = 0;
818 State(fNoLooperTrials)++;
822 G4cout <<
" G4ITTransportation::AlongStepDoIt(): Particle looping - "
823 <<
" Number of trials = " <<
State(fNoLooperTrials)
824 <<
" No of calls to = " << noCalls <<
G4endl;
831 State(fNoLooperTrials)=0;
842#if defined (DEBUG_MEM)
844 mem_diff = mem_second-mem_first;
845 G4cout <<
"\t || MEM || End of G4ITTransportation::AlongStepDoIt, diff is: "
878 G4bool isLastStep =
false;
889 if (
State(fGeometryLimitedStep))
894 G4cout <<
"Step is limited by geometry "
902 if (
State(fCurrentTouchableHandle)->GetVolume() ==
nullptr)
905 exceptionDescription <<
"No current touchable found ";
906 G4Exception(
" G4ITTransportation::PostStepDoIt",
"G4ITTransportation001",
913 State(fCurrentTouchableHandle),
true);
917 if (
State(fCurrentTouchableHandle)->GetVolume() ==
nullptr)
925 G4cout <<
"G4ITTransportation will killed the track because "
926 "State(fCurrentTouchableHandle)->GetVolume() == 0"<<
G4endl;
932 retCurrentTouchable =
State(fCurrentTouchableHandle);
948#ifdef G4DEBUG_TRANSPORT
953 if( ! (exiting || entering) )
955 G4cout <<
" Transport> : Proposed isLastStep= " << isLastStep
958 <<
" Track position : " << track.
GetPosition() /nanometer <<
" [nm]"
981#ifdef G4DEBUG_TRANSPORT
983 G4cout <<
" Transport> Proposed isLastStep= " << isLastStep
984 <<
" Geometry did not limit step. Position : "
995 if (pNewVol !=
nullptr)
1004 fParticleChange.SetSensitiveDetectorInTouchable(pNewSensitiveDetector);
1007 if (pNewVol !=
nullptr)
1009 pNewMaterialCutsCouple =
1013 if (pNewVol !=
nullptr && pNewMaterialCutsCouple !=
nullptr
1014 && pNewMaterialCutsCouple->
GetMaterial() != pNewMaterial)
1022 fParticleChange.SetMaterialCutsCoupleInTouchable(pNewMaterialCutsCouple);
1042 if (fInstantiateProcessState)
1051 GetIT(track)->GetTrackingInfo()->GetTrackStateManager());
1082 fieldMgrStore->ClearAllChordFindersState();
void G4Exception(const char *originOfException, const char *exceptionCode, G4ExceptionSeverity severity, const char *description)
std::ostringstream G4ExceptionDescription
#define fPreviousSftOrigin
G4IT * GetIT(const G4Track *track)
@ fLowEnergyTransportation
CLHEP::Hep3Vector G4ThreeVector
G4ReferenceCountedHandle< G4VTouchable > G4TouchableHandle
G4GLOB_DLL std::ostream G4cout
const G4ThreeVector & GetMomentumDirection() const
G4double GetCharge() const
static G4FieldManagerStore * GetInstance()
virtual void ConfigureForTrack(const G4Track *)
const G4Field * GetDetectorField() const
G4bool DoesFieldExist() const
static G4ITTransportationManager * GetTransportationManager()
G4ITNavigator * GetNavigatorForTracking() const
G4ITSafetyHelper * GetSafetyHelper() const
G4double fMaxEnergyKilled
G4ParticleChangeForTransport fParticleChange
G4double fUnimportant_Energy
G4double fThreshold_Important_Energy
G4double fSumEnergyKilled
G4VParticleChange * AlongStepDoIt(const G4Track &track, const G4Step &stepData) override
virtual void ComputeStep(const G4Track &, const G4Step &, const double timeStep, double &spaceStep)
void SetInstantiateProcessState(G4bool flag)
G4PropagatorInField * fFieldPropagator
G4bool DoesGlobalFieldExist()
void BuildPhysicsTable(const G4ParticleDefinition &) override
void StartTracking(G4Track *aTrack) override
G4double AlongStepGetPhysicalInteractionLength(const G4Track &track, G4double, G4double currentMinimumStep, G4double ¤tSafety, G4GPILSelection *selection) override
G4ITSafetyHelper * fpSafetyHelper
G4ITTransportation(const G4String &aName="ITTransportation", G4int verbosityLevel=0)
G4bool fShortStepOptimisation
G4double fThreshold_Warning_Energy
G4VParticleChange * PostStepDoIt(const G4Track &track, const G4Step &) override
G4ITNavigator * fLinearNavigator
~G4ITTransportation() override
G4double PostStepGetPhysicalInteractionLength(const G4Track &, G4double, G4ForceCondition *pForceCond) override
G4TrackingInformation * GetTrackingInfo()
G4VSensitiveDetector * GetSensitiveDetector() const
G4Material * GetMaterial() const
const G4MaterialCutsCouple * GetMaterialCutsCouple() const
const G4Material * GetMaterial() const
G4ProductionCuts * GetProductionCuts() const
G4ParticleDefinition * FindParticle(G4int PDGEncoding)
static G4ParticleTable * GetParticleTable()
const G4MaterialCutsCouple * GetMaterialCutsCouple(G4int i) const
static G4ProductionCutsTable * GetProductionCutsTable()
G4double GetVelocity() const
G4StepPoint * GetPreStepPoint() const
virtual G4VPhysicalVolume * GetVolume(G4int depth=0) const
G4TrackStatus GetTrackStatus() const
G4double GetVelocity() const
G4double CalculateVelocityForOpticalPhoton() const
const G4ParticleDefinition * GetParticleDefinition() const
G4VPhysicalVolume * GetVolume() const
const G4ThreeVector & GetPosition() const
G4double GetGlobalTime() const
G4double GetLocalTime() const
const G4DynamicParticle * GetDynamicParticle() const
const G4TouchableHandle & GetTouchableHandle() const
const G4ThreeVector & GetMomentumDirection() const
G4double GetKineticEnergy() const
G4double CalculateVelocity() const
const G4ThreeVector & GetPolarization() const
G4double GetStepLength() const
static G4TransportationManager * GetTransportationManager()
G4PropagatorInField * GetPropagatorInField() const
G4FieldManager * GetFieldManager() const
void SetInstantiateProcessState(G4bool flag)
G4shared_ptr< G4ProcessState > fpState
void StartTracking(G4Track *) override
G4VITProcess(const G4String &name, G4ProcessType type=fNotDefined)
G4LogicalVolume * GetLogicalVolume() const
G4bool enableAlongStepDoIt
void SetProcessSubType(G4int)
virtual void StartTracking(G4Track *)
G4bool enablePostStepDoIt
G4VParticleChange * pParticleChange
G4TouchableHandle fCurrentTouchableHandle
G4bool fParticleIsLooping
G4ThreeVector fPreviousSftOrigin
~G4ITTransportationState() override
G4ThreeVector fTransportEndMomentumDir
G4ITTransportationState()
Process State.
G4double fEndPointDistance
G4double fCandidateEndGlobalTime
G4ThreeVector fTransportEndPosition
G4double fTransportEndKineticEnergy
G4bool fEndGlobalTimeComputed
G4bool fGeometryLimitedStep
G4ThreeVector fTransportEndSpin