64 #define State(theXInfo) (GetState<G4ITBrownianState>()->theXInfo)
74 #define RED "\033[0;31m"
75 #define LIGHT_RED "\33[1;31m"
76 #define GREEN "\033[32;40m"
77 #define GREEN_ON_BLUE "\033[1;32;44m"
78 #define RESET_COLOR "\033[0m"
83 #define GREEN_ON_BLUE ""
84 #define RESET_COLOR ""
91 using namespace G4MemStat;
116 #define State(theXInfo) (GetState<G4ITTransportationState>()->theXInfo)
164 if(
this == &rhs)
return *
this;
205 const double timeStep,
221 if(
GetIT(track)->GetTrackingInfo()->IsLeadingStep())
225 bool makeException =
true;
233 exceptionDescription <<
"ComputeStep is called while the track has"
234 "the minimum interaction time";
235 exceptionDescription <<
" so it should not recompute a timeStep ";
236 G4Exception(
"G4DNABrownianTransportation::ComputeStep",
238 exceptionDescription);
242 State(fGeometryLimitedStep) =
false;
254 static double sqrt_2 = sqrt(2.);
255 double sqrt_Dt = sqrt(diffCoeff*timeStep);
256 double sqrt_2Dt = sqrt_2*sqrt_Dt;
258 if(
State(fTimeStepReachedLimit)==
true)
261 State(fGeometryLimitedStep) =
true;
263 spaceStep =
State(fEndPointDistance);
272 spaceStep = sqrt(x*x + y*y + z*z);
274 if(spaceStep >=
State(fEndPointDistance))
278 State(fGeometryLimitedStep) =
true;
293 <<
"G4ITBrownianTransportation::ComputeStep() : "
294 <<
"Step was limited to boundary"
300 if(
State(fRandomNumber)>=0)
320 double invErfc =
InvErfc(value);
321 spaceStep = invErfc*2*sqrt_Dt;
323 if(
State(fTimeStepReachedLimit)==
false)
326 State(fGeometryLimitedStep) =
false;
347 double min_randomNumber =
Erfc(
State(fEndPointDistance)/2*sqrt_Dt);
349 double invErfc =
InvErfc(value);
350 spaceStep = invErfc*2*sqrt_Dt;
351 if(spaceStep >=
State(fEndPointDistance))
354 State(fGeometryLimitedStep) =
true;
357 else if(
State(fTimeStepReachedLimit)==
false)
360 State(fGeometryLimitedStep) =
false;
367 State(fGeometryLimitedStep) =
true;
369 spaceStep =
State(fEndPointDistance);
386 State(fTransportEndPosition)= spaceStep*
394 State(fGeometryLimitedStep) =
false;
405 State(fGeometryLimitedStep) =
false;
410 State(fEndGlobalTimeComputed) =
true;
417 <<
"G4ITBrownianTransportation::ComputeStep() : "
418 <<
" trackID : " << track.
GetTrackID() <<
" : Molecule name: "
423 <<
"Final position:" <<
G4BestUnit(
State(fTransportEndPosition),
"Length")
427 <<
"Final magnitude:" <<
G4BestUnit(
State(fTransportEndPosition).mag(),
"Length")
429 <<
"Diffusion length : "
431 <<
" within time step : " <<
G4BestUnit(timeStep,
"Time")
433 <<
"State(fTimeStepReachedLimit)= " <<
State(fTimeStepReachedLimit) <<
G4endl
434 <<
"State(fGeometryLimitedStep)=" <<
State(fGeometryLimitedStep) <<
G4endl
435 <<
"End point distance was: " <<
G4BestUnit(
State(fEndPointDistance),
"Length")
460 <<
" trackID : " << track.
GetTrackID() <<
" Molecule name: "
462 G4cout <<
"Diffusion length : "
465 <<
"\t Current global time : "
486 <<
"G4DNABrownianTransportation::Diffusion :" << setw(8)
488 <<
"\t" <<
" Global Time = "
509 if (waterDensity == 0.0)
523 G4cout <<
"A track is outside water material : trackID = "
540 mem_diff = mem_intermediaire-mem_first;
541 G4cout <<
"\t\t\t >> || MEM || In G4DNABrownianTransportation::Diffusion "
542 "after dealing with waterDensity for "<< track.
GetTrackID()
543 <<
", diff is : " << mem_diff <<
G4endl;
547 State(fMomentumChanged) =
true;
552 mem_diff = mem_intermediaire-mem_first;
553 G4cout <<
"\t\t\t >> || MEM || In G4DNABrownianTransportation::"
554 "After proposing new direction to fParticleChange for "
590 G4cout <<
" G4DNABrownianTransportation::AlongStepGetPhysicalInteractionLength - track ID: "
599 track, previousStepSize, currentMinimumStep, currentSafety,
602 if(geometryStepLength==0)
605 if(
State(fGeometryLimitedStep))
611 State(fCurrentTouchableHandle)->GetHistory());
623 State(fCurrentTouchableHandle) = newTouchable;
638 track, previousStepSize, currentMinimumStep, currentSafety,
683 if(diffusionCoefficient <= 0)
685 State(fGeometryLimitedStep) =
false;
692 State(fComputeLastPosition) =
false;
693 State(fTimeStepReachedLimit) =
false;
695 if (
State(fGeometryLimitedStep))
706 / (diffusionCoefficient);
711 / (diffusionCoefficient);
718 State(fComputeLastPosition) =
true;
726 * pow(geometryStepLength /
InvErfc(
State(fRandomNumber)),2);
728 State(fTransportEndPosition) = geometryStepLength*
743 State(fTimeStepReachedLimit) =
true;
744 State(fComputeLastPosition) =
true;
750 State(fTimeStepReachedLimit) =
true;
754 State(fComputeLastPosition) =
true;
758 State(fCandidateEndGlobalTime) =
761 State(fEndGlobalTimeComputed) =
true;
763 State(fPathLengthWasCorrected) =
false;
768 geometryStepLength = 2
771 State(fPathLengthWasCorrected) =
true;
773 State(fTransportEndPosition) = geometryStepLength*
782 <<
"G4DNABrownianTransportation::AlongStepGetPhysicalInteractionLength = "
794 return geometryStepLength;
806 MemStat mem_first, mem_second, mem_diff;
813 if (
GetIT(track)->GetTrackingInfo()->IsLeadingStep()
814 &&
State(fComputeLastPosition))
827 spaceStep =
State(fEndPointDistance);
828 State(fGeometryLimitedStep) =
true;
833 GetDiffusionCoefficient();
840 spaceStep = sqrt(x * x + y * y + z * z);
842 if(spaceStep >=
State(fEndPointDistance))
844 State(fGeometryLimitedStep) =
true;
848 && spaceStep >=
State(fEndPointDistance))
850 spaceStep =
State(fEndPointDistance);
855 State(fGeometryLimitedStep) =
false;
871 <<
"G4DNABrownianTransportation::AlongStepDoIt: "
872 "GeometryLimitedStep = "
873 <<
State(fGeometryLimitedStep)
887 mem_diff = mem_intermediaire-mem_first;
888 G4cout <<
"\t\t\t >> || MEM || After calling G4ITTransportation::"
889 "AlongStepDoIt for "<< track.
GetTrackID() <<
", diff is : "
938 mem_diff = mem_intermediaire-mem_first;
939 G4cout <<
"\t\t\t >> || MEM || After calling G4DNABrownianTransportation::"
940 "Diffusion for "<< track.
GetTrackID() <<
", diff is : "