170{
171
172
173
174
175
176
177 if ( fIamFirstGPIL )
178 {
179
180
181
182
183 fSharedData->fPreviousBiasingOperator = fSharedData->fCurrentBiasingOperator;
184 fSharedData->fIsNewOperator = false;
185 fSharedData->fLeavingPreviousOperator = false;
186
187
188
189 G4bool firstStepInParallelVolume =
false;
190 if ( fSharedData->fParallelGeometriesLimiterProcess )
191 {
192 G4VBiasingOperator* newParallelOperator( nullptr );
194 std::size_t iParallel = 0;
195 for ( auto wasLimiting : fSharedData->fParallelGeometriesLimiterProcess->GetWasLimiting() )
196 {
197 if ( firstStep || wasLimiting )
198 {
199 firstStepInParallelVolume = true;
202 ->GetCurrentVolumes()[iParallel])
203 ->GetLogicalVolume());
204 if ( newParallelOperator )
205 {
206 if ( tmpParallelOperator )
207 {
209 ed << " Several biasing operators are defined at the same place\n"
210 << " in parallel geometries ! Found:\n";
211 ed << " - `" << newParallelOperator->GetName() << "' and \n";
212 ed << " - `" << tmpParallelOperator->GetName() << "'.\n";
213 ed << " Keeping `" << newParallelOperator->GetName()
214 << "'. Behavior not guaranteed ! Please consider having only one operator at a place."
216 G4Exception(
" G4BiasingProcessInterface::PostStepGetPhysicalInteractionLength(...)",
218 }
219 }
220 else newParallelOperator = tmpParallelOperator;
221 }
222 ++iParallel;
223 }
224 fSharedData->fParallelGeometryOperator = newParallelOperator;
225 }
226
227
228
231
232
233 if ( firstStepInVolume )
234 {
237 fSharedData->fMassGeometryOperator = newOperator;
238 if ( ( newOperator != nullptr ) && ( fSharedData->fParallelGeometryOperator != nullptr ) )
239 {
241 ed << " Biasing operators are defined at the same place in mass and parallel geometries ! Found:\n";
242 ed << " - `" << fSharedData->fParallelGeometryOperator->GetName() << "' in parallel geometry and \n";
243 ed <<
" - `" << newOperator->
GetName() <<
"' in mass geometry.\n";
244 ed <<
" Keeping `" << fSharedData->fParallelGeometryOperator->GetName() <<
"'. Behavior not guaranteed ! Please consider having only one operator at a place. " <<
G4endl;
245 G4Exception(
" G4BiasingProcessInterface::PostStepGetPhysicalInteractionLength(...)",
247 }
248 }
249
250
251 if ( firstStepInVolume || firstStepInParallelVolume )
252 {
253 G4VBiasingOperator* newOperator = fSharedData->fParallelGeometryOperator;
254 if ( newOperator == nullptr )
255 newOperator = fSharedData->fMassGeometryOperator;
256
257 fSharedData->fCurrentBiasingOperator = newOperator ;
258
259 if ( newOperator != fSharedData->fPreviousBiasingOperator )
260 {
261 fSharedData->fLeavingPreviousOperator = ( fSharedData->fPreviousBiasingOperator != nullptr ) ;
262 fSharedData->fIsNewOperator = ( newOperator != nullptr );
263 }
264 }
265
266
267
268
269
270
271
272
273 if ( fSharedData->fCurrentBiasingOperator != nullptr )
274 {
275 for (std::size_t i=0; i<(fSharedData->fPhysicsBiasingProcessInterfaces).size(); ++i)
276 {
277 (fSharedData->fPhysicsBiasingProcessInterfaces)[i]->InvokeWrappedProcessPostStepGPIL( track, previousStepSize,
condition );
278 }
279 }
280 }
281
282
283
284
285 if ( ( fSharedData->fPreviousBiasingOperator != nullptr ) ||
286 ( fSharedData->fCurrentBiasingOperator != nullptr ) )
287 {
288 fPreviousOccurenceBiasingOperation = fOccurenceBiasingOperation;
289 fPreviousFinalStateBiasingOperation = fFinalStateBiasingOperation;
290 fPreviousNonPhysicsBiasingOperation = fNonPhysicsBiasingOperation;
291 fPreviousBiasingInteractionLaw = fBiasingInteractionLaw;
292
293 fOccurenceBiasingOperation = nullptr;
294 fFinalStateBiasingOperation = nullptr;
295 fNonPhysicsBiasingOperation = nullptr;
296 fBiasingInteractionLaw = nullptr;
297
298
299 fBiasingPostStepGPIL =
DBL_MAX;
300
301
303 fWrappedProcessAlongStepGPIL =
DBL_MAX;
304 fBiasingAlongStepGPIL =
DBL_MAX;
307
308 fPreviousStepSize = previousStepSize;
309 }
310
311
312
313 G4double usedPreviousStepSize = previousStepSize;
314
315
316
317
318 if ( fSharedData->fLeavingPreviousOperator )
319 {
320 (fSharedData->fPreviousBiasingOperator)->ExitingBiasing( &track, this );
321
322 if ( fSharedData->fCurrentBiasingOperator == nullptr )
323 {
324 ResetForUnbiasedTracking();
325 if ( fIsPhysicsBasedBiasing )
326 {
327
328 if ( fResetWrappedProcessInteractionLength )
329 {
330 fResetWrappedProcessInteractionLength = false;
331 fWrappedProcess->ResetNumberOfInteractionLengthLeft();
332
333 usedPreviousStepSize = 0.0;
334 }
335 }
336 }
337 }
338
339
340
341
342 if ( fSharedData->fCurrentBiasingOperator == nullptr )
343 {
344
345 if ( fIsPhysicsBasedBiasing )
346 {
347 return fWrappedProcess->PostStepGetPhysicalInteractionLength(track, usedPreviousStepSize,
condition);
348 }
349 else
350 {
353 }
354 }
355
356
357
358
359
360
361
362
363 if ( !fIsPhysicsBasedBiasing )
364 {
365 fNonPhysicsBiasingOperation = (fSharedData->fCurrentBiasingOperator)->GetProposedNonPhysicsBiasingOperation( &track, this );
366 if ( fNonPhysicsBiasingOperation == nullptr )
367 {
370 }
371 return fNonPhysicsBiasingOperation->DistanceToApplyOperation(&track, previousStepSize,
condition);
372 }
373
374
375
376
377 fOccurenceBiasingOperation = (fSharedData->fCurrentBiasingOperator)->GetProposedOccurenceBiasingOperation( &track, this );
378
379
380 if ( fOccurenceBiasingOperation == nullptr )
381 {
382 *
condition = fWrappedProcessForceCondition;
383 return fWrappedProcessPostStepGPIL;
384 }
385
386
387
388 fResetWrappedProcessInteractionLength = true;
389
390 fPhysicalInteractionLaw->SetPhysicalCrossSection( 1.0 / fWrappedProcessInteractionLength );
391
392
393
394
395
396 fBiasingForceCondition = fWrappedProcessForceCondition;
397 fBiasingInteractionLaw = fOccurenceBiasingOperation->ProvideOccurenceBiasingInteractionLaw( this, fBiasingForceCondition );
398
399 fBiasingPostStepGPIL = fBiasingInteractionLaw->GetSampledInteractionLength();
400
401
403 return fBiasingPostStepGPIL;
404}
G4VPhysicalVolume * GetVolume() const
G4int GetCurrentStepNumber() const
const G4Step * GetStep() const
const G4String & GetName() const
static G4VBiasingOperator * GetBiasingOperator(const G4LogicalVolume *)
G4LogicalVolume * GetLogicalVolume() const