343 G4cout<<
"G4ITStepProcessor::GetProcessNumber: is called track"<<
G4endl;
347 G4cerr <<
"ERROR - G4SteppingManager::GetProcessNumber()" <<
G4endl<<
" ProcessManager is NULL for particle = "
350 G4Exception(
"G4SteppingManager::GetProcessNumber()",
"ITStepProcessor0002",
356 fProcessGeneralInfoMap.find(particle);
357 if(it != fProcessGeneralInfoMap.end())
359 G4Exception(
"G4SteppingManager::SetupGeneralProcessInfo()",
360 "ITStepProcessor0003",
371 fpProcessInfo->fpAtRestGetPhysIntVector =
374 G4cout <<
"G4ITStepProcessor::GetProcessNumber: #ofAtRest="
375 << fpProcessInfo->MAXofAtRestLoops <<
G4endl;
379 fpProcessInfo->MAXofAlongStepLoops =
381 fpProcessInfo->fpAlongStepDoItVector =
383 fpProcessInfo->fpAlongStepGetPhysIntVector =
386 G4cout <<
"G4ITStepProcessor::GetProcessNumber:#ofAlongStp="
387 << fpProcessInfo->MAXofAlongStepLoops <<
G4endl;
391 fpProcessInfo->MAXofPostStepLoops =
394 fpProcessInfo->fpPostStepGetPhysIntVector =
397 G4cout <<
"G4ITStepProcessor::GetProcessNumber: #ofPostStep="
398 << fpProcessInfo->MAXofPostStepLoops <<
G4endl;
401 if (SizeOfSelectedDoItVector<fpProcessInfo->MAXofAtRestLoops ||
402 SizeOfSelectedDoItVector<fpProcessInfo->MAXofAlongStepLoops ||
403 SizeOfSelectedDoItVector<fpProcessInfo->MAXofPostStepLoops )
405 G4cerr <<
"ERROR - G4ITStepProcessor::GetProcessNumber()" <<
G4endl
406 <<
" SizeOfSelectedDoItVector= " << SizeOfSelectedDoItVector
407 <<
" ; is smaller then one of MAXofAtRestLoops= "
408 << fpProcessInfo->MAXofAtRestLoops <<
G4endl
409 <<
" or MAXofAlongStepLoops= " << fpProcessInfo->MAXofAlongStepLoops
410 <<
" or MAXofPostStepLoops= " << fpProcessInfo->MAXofPostStepLoops <<
G4endl;
411 G4Exception(
"G4ITStepProcessor::GetProcessNumber()",
413 "The array size is smaller than the actual No of processes.");
416 if((fpProcessInfo->fpAtRestDoItVector ==
nullptr) &&
417 (fpProcessInfo->fpAlongStepDoItVector ==
nullptr) &&
418 (fpProcessInfo->fpPostStepDoItVector ==
nullptr))
421 exceptionDescription <<
"No DoIt process found ";
422 G4Exception(
"G4ITStepProcessor::DoStepping",
"ITStepProcessor0005",
427 if((fpProcessInfo->fpAlongStepGetPhysIntVector !=
nullptr)
428 && fpProcessInfo->MAXofAlongStepLoops>0)
431 ((*fpProcessInfo->fpAlongStepGetPhysIntVector)
432 [
G4int(fpProcessInfo->MAXofAlongStepLoops-1)]);
434 if(fpProcessInfo->fpTransportation ==
nullptr)
437 exceptionDescription <<
"No transportation process found ";
438 G4Exception(
"G4ITStepProcessor::SetupGeneralProcessInfo",
439 "ITStepProcessor0006",
443 fProcessGeneralInfoMap[particle] = fpProcessInfo;
542 fAtRestDoItProcTriggered = 0;
545 unsigned int NofInactiveProc=0;
547 for(
G4int ri=0; ri < (
G4int)fpProcessInfo->MAXofAtRestLoops; ++ri )
549 fpCurrentProcess =
dynamic_cast<G4VITProcess*
>((*fpProcessInfo->fpAtRestGetPhysIntVector)[ri]);
550 if (fpCurrentProcess==
nullptr)
552 (fpState->fSelectedAtRestDoItVector)[ri] =
InActivated;
558 fpCurrentProcess->SetProcessState(
559 fpTrackingInfo->GetProcessState(fpCurrentProcess->GetProcessID()));
561 lifeTime = fpCurrentProcess->AtRestGPIL( *fpTrack, &fCondition );
562 fpCurrentProcess->ResetProcessState();
566 (fpState->fSelectedAtRestDoItVector)[ri] =
Forced;
570 (fpState->fSelectedAtRestDoItVector)[ri] =
InActivated;
571 if(lifeTime < shortestLifeTime )
573 shortestLifeTime = lifeTime;
574 fAtRestDoItProcTriggered =
G4int(ri);
579 (fpState->fSelectedAtRestDoItVector)[fAtRestDoItProcTriggered] =
NotForced;
586 fTimeStep = shortestLifeTime;
590 if(NofInactiveProc==fpProcessInfo->MAXofAtRestLoops)
592 G4cerr <<
"ERROR - G4ITStepProcessor::InvokeAtRestDoItProcs()" <<
G4endl
593 <<
" No AtRestDoIt process is active!" <<
G4endl;
708 if(!fpTrack->GetTouchableHandle())
720 fpNavigator->NewNavigatorState();
721 fpITrack->GetTrackingInfo()->SetNavigatorState(fpNavigator
722 ->GetNavigatorState());
725 fpNavigator->LocateGlobalPointAndSetup(fpTrack->GetPosition(),
730 fpState->fTouchableHandle = fpNavigator->CreateTouchableHistory();
732 fpTrack->SetTouchableHandle(fpState->fTouchableHandle);
733 fpTrack->SetNextTouchableHandle(fpState->fTouchableHandle);
737 fpState->fTouchableHandle = fpTrack->GetTouchableHandle();
738 fpTrack->SetNextTouchableHandle(fpState->fTouchableHandle);
744 if(fpITrack->GetTrackingInfo()->GetNavigatorState() !=
nullptr)
746 fpNavigator->SetNavigatorState(fpITrack->GetTrackingInfo()
747 ->GetNavigatorState());
748 fpITrack->GetTrackingInfo()->SetNavigatorState(fpNavigator
749 ->GetNavigatorState());
754 ->fTouchableHandle()));
755 fpITrack->GetTrackingInfo()->SetNavigatorState(fpNavigator
756 ->GetNavigatorState());
760 fpTrack->GetTouchableHandle()->GetVolume();
773 fpNavigator->ResetHierarchyAndLocate(fpTrack->GetPosition(),
774 fpTrack->GetMomentumDirection(),
776 ->GetTouchableHandle()()));
781 fpState->fTouchableHandle = fpNavigator->CreateTouchableHistory();
782 fpTrack->SetTouchableHandle(fpState->fTouchableHandle);
783 fpTrack->SetNextTouchableHandle(fpState->fTouchableHandle);
787 fpCurrentVolume = fpState->fTouchableHandle->GetVolume();
792 if((fpTrack->GetTrackStatus() ==
fSuspend) || (fpTrack->GetTrackStatus()
795 fpTrack->SetTrackStatus(
fAlive);
803 if(fpTrack->GetKineticEnergy() <= 0.0)
809 if(fpTrack->GetCurrentStepNumber() == 0)
811 fpTrack->SetVertexPosition(fpTrack->GetPosition());
812 fpTrack->SetVertexMomentumDirection(fpTrack->GetMomentumDirection());
813 fpTrack->SetVertexKineticEnergy(fpTrack->GetKineticEnergy());
814 fpTrack->SetLogicalVolumeAtVertex(fpTrack->GetVolume()->GetLogicalVolume());
818 if(fpCurrentVolume ==
nullptr)
821 if(fpTrack->GetParentID() == 0)
823 G4cerr <<
"ERROR - G4ITStepProcessor::SetInitialStep()" <<
G4endl<<
" Primary particle starting at - "
824 << fpTrack->GetPosition()
825 <<
" - is outside of the world volume." <<
G4endl;
826 G4Exception(
"G4ITStepProcessor::SetInitialStep()",
"ITStepProcessor0011",
831 G4cout <<
"WARNING - G4ITStepProcessor::SetInitialStep()" <<
G4endl
832 <<
" Initial track position is outside world! - "
833 << fpTrack->GetPosition() <<
G4endl;
838 fpStep->InitializeStep( fpTrack );
848 if(fpStep ==
nullptr)
852 fpTrack->SetStep(fpStep);
853 fpSecondary = fpStep->NewSecondaryVector();
862 fpTrackingManager->StartTracking(fpTrack);
868 fpState->fPreviousStepSize = fpTrack->GetStepLength();
885 fpStep->CopyPostToPreStepPoint();
886 fpStep->ResetTotalEnergyDeposit();
889 fpCurrentVolume = fpStep->GetPreStepPoint()->GetPhysicalVolume();
902 fpStep->SetPointerToVectorOfAuxiliaryPoints(
nullptr);
905 fpTrack->SetTouchableHandle(fpTrack->GetNextTouchableHandle());
906 fpState->fTouchableHandle = fpTrack->GetTouchableHandle();
907 fpTrack->SetNextTouchableHandle(fpState->fTouchableHandle);
941 fpNavigator->SetNavigatorState(fpITrack->GetTrackingInfo()
942 ->GetNavigatorState());
958 if(fpVerbose !=
nullptr) fpVerbose->DPSLStarted();
970 fpITrack->GetTrackingInfo()->SetNavigatorState(fpNavigator
971 ->GetNavigatorState());
972 fpNavigator->ResetNavigatorState();
980 fpState->fPhysicalStep =
DBL_MAX;
984 G4VProcess* processWithPostStepGivenByTimeStep(
nullptr);
987 fPostStepDoItProcTriggered = fpProcessInfo->MAXofPostStepLoops;
988 fPostStepAtTimeDoItProcTriggered = fpProcessInfo->MAXofPostStepLoops;
996 for(std::size_t np = 0; np < fpProcessInfo->MAXofPostStepLoops; ++np)
998 fpCurrentProcess =
dynamic_cast<G4VITProcess*
>((*fpProcessInfo
999 ->fpPostStepGetPhysIntVector)[(
G4int)np]);
1000 if(fpCurrentProcess ==
nullptr)
1002 (fpState->fSelectedPostStepDoItVector)[np] =
InActivated;
1007 fpCurrentProcess->SetProcessState(fpTrackingInfo->GetProcessState(fpCurrentProcess
1013 fPhysIntLength = fpCurrentProcess->PostStepGPIL(*fpTrack,
1014 fpState->fPreviousStepSize,
1019 if(fpVerbose !=
nullptr) fpVerbose->DPSLPostStep();
1022 fpCurrentProcess->ResetProcessState();
1030 fpStep->GetPostStepPoint()->SetProcessDefinedStep(fpCurrentProcess);
1035 G4Exception(
"G4ITStepProcessor::DefinePhysicalStepLength()",
1036 "ITStepProcessor0008",
1038 "This feature is no more supported");
1042 (fpState->fSelectedPostStepDoItVector)[np] =
Forced;
1050 (fpState->fSelectedPostStepDoItVector)[np] =
InActivated;
1056 for(std::size_t nrest = np + 1; nrest < fpProcessInfo->MAXofPostStepLoops;
1059 (fpState->fSelectedPostStepDoItVector)[nrest] =
InActivated;
1064 if(fPhysIntLength < fpState->fPhysicalStep)
1069 if(fpCurrentProcess->ProposesTimeStep())
1071 fPhysIntLength *= -1;
1072 if(fPhysIntLength < proposedTimeStep)
1074 proposedTimeStep = fPhysIntLength;
1075 fPostStepAtTimeDoItProcTriggered = np;
1076 processWithPostStepGivenByTimeStep = fpCurrentProcess;
1081 fpState->fPhysicalStep = fPhysIntLength;
1083 fPostStepDoItProcTriggered =
G4int(np);
1084 fpStep->GetPostStepPoint()->SetProcessDefinedStep(fpCurrentProcess);
1090 fpState->fProposedSafety =
DBL_MAX;
1091 G4double safetyProposedToAndByProcess = fpState->fProposedSafety;
1093 for(std::size_t kp = 0; kp < fpProcessInfo->MAXofAlongStepLoops; ++kp)
1095 fpCurrentProcess =
dynamic_cast<G4VITProcess*
>((*fpProcessInfo
1096 ->fpAlongStepGetPhysIntVector)[(
G4int)kp]);
1097 if(fpCurrentProcess ==
nullptr)
continue;
1101 fpTrackingInfo->GetProcessState(fpCurrentProcess->GetProcessID()));
1103 fpCurrentProcess->AlongStepGPIL(*fpTrack,
1104 fpState->fPreviousStepSize,
1105 fpState->fPhysicalStep,
1106 safetyProposedToAndByProcess,
1111 if(fpVerbose !=
nullptr) fpVerbose->DPSLAlongStep();
1114 if(fPhysIntLength < fpState->fPhysicalStep)
1116 fpState->fPhysicalStep = fPhysIntLength;
1124 fpStep->GetPostStepPoint()->SetProcessDefinedStep(fpCurrentProcess);
1128 if(kp == fpProcessInfo->MAXofAlongStepLoops - 1)
1132 if(fpTransportation ==
nullptr)
1135 exceptionDescription <<
"No transportation process found ";
1136 G4Exception(
"G4ITStepProcessor::DoDefinePhysicalStepLength",
1137 "ITStepProcessor0009",
1139 exceptionDescription);
1144 if(fpTrack->GetNextVolume() !=
nullptr) fpState->fStepStatus =
fGeomBoundary;
1150 if(kp == fpProcessInfo->MAXofAlongStepLoops - 1)
1154 if(fpTransportation ==
nullptr)
1157 exceptionDescription <<
"No transportation process found ";
1158 G4Exception(
"G4ITStepProcessor::DoDefinePhysicalStepLength",
1159 "ITStepProcessor0010",
1161 exceptionDescription);
1169 if(proposedTimeStep < fTimeStep)
1171 if(fPostStepAtTimeDoItProcTriggered < fpProcessInfo->MAXofPostStepLoops)
1173 if((fpState->fSelectedPostStepDoItVector)[fPostStepAtTimeDoItProcTriggered] ==
InActivated)
1175 (fpState->fSelectedPostStepDoItVector)[fPostStepAtTimeDoItProcTriggered] =
1180 fpStep->GetPostStepPoint()->SetProcessDefinedStep(processWithPostStepGivenByTimeStep);
1182 fTimeStep = proposedTimeStep;
1184 fpTransportation->ComputeStep(*fpTrack,
1187 fpState->fPhysicalStep);
1193 if(fPostStepDoItProcTriggered < fpProcessInfo->MAXofPostStepLoops)
1195 if((fpState->fSelectedPostStepDoItVector)[fPostStepDoItProcTriggered] ==
InActivated)
1197 (fpState->fSelectedPostStepDoItVector)[fPostStepDoItProcTriggered] =
1204 fpCurrentProcess->ResetProcessState();
1209 if(safetyProposedToAndByProcess < fpState->fProposedSafety)
1211 fpState->fProposedSafety = safetyProposedToAndByProcess;
1214 safetyProposedToAndByProcess = fpState->fProposedSafety;
1218 fpITrack->GetTrackingInfo()->SetNavigatorState(fpNavigator->GetNavigatorState());
1219 fpNavigator->ResetNavigatorState();
G4PTblDicIterator * GetIterator() const
static G4ParticleTable * GetParticleTable()
G4ParticleTableIterator< G4String, G4ParticleDefinition * > G4PTblDicIterator