952{
953
955
956#ifdef G4VERBOSE
957
958 if(fpVerbose != nullptr) fpVerbose->DPSLStarted();
959#endif
960
962
964 {
965 return;
966 }
967
969 {
970 fpITrack->GetTrackingInfo()->SetNavigatorState(fpNavigator
971 ->GetNavigatorState());
972 fpNavigator->ResetNavigatorState();
974 }
975
976
977
978
979
980 fpState->fPhysicalStep =
DBL_MAX;
982
984 G4VProcess* processWithPostStepGivenByTimeStep(nullptr);
985
986
987 fPostStepDoItProcTriggered = fpProcessInfo->MAXofPostStepLoops;
988 fPostStepAtTimeDoItProcTriggered = fpProcessInfo->MAXofPostStepLoops;
989
990
991
992
993
994
995
996 for(std::size_t np = 0; np < fpProcessInfo->MAXofPostStepLoops; ++np)
997 {
998 fpCurrentProcess = dynamic_cast<G4VITProcess*>((*fpProcessInfo
999 ->fpPostStepGetPhysIntVector)[(
G4int)np]);
1000 if(fpCurrentProcess == nullptr)
1001 {
1002 (fpState->fSelectedPostStepDoItVector)[np] =
InActivated;
1003 continue;
1004 }
1005
1007 fpCurrentProcess->SetProcessState(fpTrackingInfo->GetProcessState(fpCurrentProcess
1008 ->GetProcessID()));
1009
1010
1011
1012
1013 fPhysIntLength = fpCurrentProcess->PostStepGPIL(*fpTrack,
1014 fpState->fPreviousStepSize,
1015 &fCondition);
1016
1017#ifdef G4VERBOSE
1018
1019 if(fpVerbose != nullptr) fpVerbose->DPSLPostStep();
1020#endif
1021
1022 fpCurrentProcess->ResetProcessState();
1023
1024
1025 switch(fCondition)
1026 {
1030 fpStep->GetPostStepPoint()->SetProcessDefinedStep(fpCurrentProcess);
1031 break;
1032
1034
1035 G4Exception(
"G4ITStepProcessor::DefinePhysicalStepLength()",
1036 "ITStepProcessor0008",
1038 "This feature is no more supported");
1039 break;
1040
1042 (fpState->fSelectedPostStepDoItVector)[np] =
Forced;
1043 break;
1044
1047 break;
1048
1049 default:
1050 (fpState->fSelectedPostStepDoItVector)[np] =
InActivated;
1051 break;
1052 }
1053
1055 {
1056 for(std::size_t nrest = np + 1; nrest < fpProcessInfo->MAXofPostStepLoops;
1057 ++nrest)
1058 {
1059 (fpState->fSelectedPostStepDoItVector)[nrest] =
InActivated;
1060 }
1061 return;
1062 }
1063
1064 if(fPhysIntLength < fpState->fPhysicalStep)
1065 {
1066
1067
1068
1069 if(fpCurrentProcess->ProposesTimeStep())
1070 {
1071 fPhysIntLength *= -1;
1072 if(fPhysIntLength < proposedTimeStep)
1073 {
1074 proposedTimeStep = fPhysIntLength;
1075 fPostStepAtTimeDoItProcTriggered = np;
1076 processWithPostStepGivenByTimeStep = fpCurrentProcess;
1077 }
1078 }
1079 else
1080 {
1081 fpState->fPhysicalStep = fPhysIntLength;
1083 fPostStepDoItProcTriggered =
G4int(np);
1084 fpStep->GetPostStepPoint()->SetProcessDefinedStep(fpCurrentProcess);
1085 }
1086 }
1087 }
1088
1089
1090 fpState->fProposedSafety =
DBL_MAX;
1091 G4double safetyProposedToAndByProcess = fpState->fProposedSafety;
1092
1093 for(std::size_t kp = 0; kp < fpProcessInfo->MAXofAlongStepLoops; ++kp)
1094 {
1095 fpCurrentProcess = dynamic_cast<G4VITProcess*>((*fpProcessInfo
1096 ->fpAlongStepGetPhysIntVector)[(
G4int)kp]);
1097 if(fpCurrentProcess == nullptr) continue;
1098
1099
1100 fpCurrentProcess->SetProcessState(
1101 fpTrackingInfo->GetProcessState(fpCurrentProcess->GetProcessID()));
1102 fPhysIntLength =
1103 fpCurrentProcess->AlongStepGPIL(*fpTrack,
1104 fpState->fPreviousStepSize,
1105 fpState->fPhysicalStep,
1106 safetyProposedToAndByProcess,
1107 &fGPILSelection);
1108
1109#ifdef G4VERBOSE
1110
1111 if(fpVerbose != nullptr) fpVerbose->DPSLAlongStep();
1112#endif
1113
1114 if(fPhysIntLength < fpState->fPhysicalStep)
1115 {
1116 fpState->fPhysicalStep = fPhysIntLength;
1117
1118
1119
1120
1122 {
1124 fpStep->GetPostStepPoint()->SetProcessDefinedStep(fpCurrentProcess);
1125 }
1126
1127
1128 if(kp == fpProcessInfo->MAXofAlongStepLoops - 1)
1129 {
1130 fpTransportation = dynamic_cast<G4ITTransportation*>(fpCurrentProcess);
1131
1132 if(fpTransportation == nullptr)
1133 {
1135 exceptionDescription << "No transportation process found ";
1136 G4Exception(
"G4ITStepProcessor::DoDefinePhysicalStepLength",
1137 "ITStepProcessor0009",
1139 exceptionDescription);
1140 }
1141
1142 fTimeStep = fpTransportation->GetInteractionTimeLeft();
1143
1144 if(fpTrack->GetNextVolume() !=
nullptr) fpState->fStepStatus =
fGeomBoundary;
1146 }
1147 }
1148 else
1149 {
1150 if(kp == fpProcessInfo->MAXofAlongStepLoops - 1)
1151 {
1152 fpTransportation = dynamic_cast<G4ITTransportation*>(fpCurrentProcess);
1153
1154 if(fpTransportation == nullptr)
1155 {
1157 exceptionDescription << "No transportation process found ";
1158 G4Exception(
"G4ITStepProcessor::DoDefinePhysicalStepLength",
1159 "ITStepProcessor0010",
1161 exceptionDescription);
1162 }
1163
1164 fTimeStep = fpTransportation->GetInteractionTimeLeft();
1165 }
1166 }
1167
1168
1169 if(proposedTimeStep < fTimeStep)
1170 {
1171 if(fPostStepAtTimeDoItProcTriggered < fpProcessInfo->MAXofPostStepLoops)
1172 {
1173 if((fpState->fSelectedPostStepDoItVector)[fPostStepAtTimeDoItProcTriggered] ==
InActivated)
1174 {
1175 (fpState->fSelectedPostStepDoItVector)[fPostStepAtTimeDoItProcTriggered] =
1177
1178
1180 fpStep->GetPostStepPoint()->SetProcessDefinedStep(processWithPostStepGivenByTimeStep);
1181
1182 fTimeStep = proposedTimeStep;
1183
1184 fpTransportation->ComputeStep(*fpTrack,
1185 *fpStep,
1186 fTimeStep,
1187 fpState->fPhysicalStep);
1188 }
1189 }
1190 }
1191 else
1192 {
1193 if(fPostStepDoItProcTriggered < fpProcessInfo->MAXofPostStepLoops)
1194 {
1195 if((fpState->fSelectedPostStepDoItVector)[fPostStepDoItProcTriggered] ==
InActivated)
1196 {
1197 (fpState->fSelectedPostStepDoItVector)[fPostStepDoItProcTriggered] =
1199 }
1200 }
1201 }
1202
1203
1204 fpCurrentProcess->ResetProcessState();
1205
1206
1207
1208
1209 if(safetyProposedToAndByProcess < fpState->fProposedSafety)
1210
1211 fpState->fProposedSafety = safetyProposedToAndByProcess;
1212 else
1213
1214 safetyProposedToAndByProcess = fpState->fProposedSafety;
1215
1216 }
1217
1218 fpITrack->GetTrackingInfo()->SetNavigatorState(fpNavigator->GetNavigatorState());
1219 fpNavigator->ResetNavigatorState();
1220}
std::ostringstream G4ExceptionDescription