00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036 #include "G4SamplingPostStepAction.hh"
00037 #include "G4Track.hh"
00038 #include "G4ParticleChange.hh"
00039 #include "G4VImportanceSplitExaminer.hh"
00040 #include "G4Nsplit_Weight.hh"
00041 #include "G4VTrackTerminator.hh"
00042 #include <sstream>
00043
00044 G4SamplingPostStepAction::
00045 G4SamplingPostStepAction(const G4VTrackTerminator &TrackTerminator)
00046 : fTrackTerminator(TrackTerminator)
00047 {
00048 }
00049
00050 G4SamplingPostStepAction::~G4SamplingPostStepAction()
00051 {
00052 }
00053
00054 void G4SamplingPostStepAction::DoIt(const G4Track& aTrack,
00055 G4ParticleChange *aParticleChange,
00056 const G4Nsplit_Weight &nw)
00057 {
00058
00059 if (nw.fN>1)
00060 {
00061
00062 Split(aTrack, nw, aParticleChange);
00063 }
00064 else if (nw.fN==1)
00065 {
00066
00067 aParticleChange->ProposeWeight(nw.fW);
00068 }
00069 else if (nw.fN==0)
00070 {
00071
00072 fTrackTerminator.KillTrack();
00073 }
00074 else
00075 {
00076
00077 std::ostringstream os;
00078 os << "Sampler returned nw = "
00079 << nw
00080 << "\n";
00081 G4String msg = os.str();
00082
00083 G4Exception("G4SamplingPostStepAction::DoIt()",
00084 "InvalidCondition", FatalException, msg);
00085 }
00086 }
00087
00088 void G4SamplingPostStepAction::Split(const G4Track &aTrack,
00089 const G4Nsplit_Weight &nw,
00090 G4ParticleChange *aParticleChange)
00091 {
00092 aParticleChange->ProposeWeight(nw.fW);
00093 aParticleChange->SetNumberOfSecondaries(nw.fN-1);
00094
00095 for (G4int i=1;i<nw.fN;i++)
00096 {
00097 G4Track *ptrack = new G4Track(aTrack);
00098
00099
00100 ptrack->SetWeight(nw.fW);
00101
00102 if (ptrack->GetMomentumDirection() != aTrack.GetMomentumDirection())
00103 {
00104 G4Exception("G4SamplingPostStepAction::Split()", "InvalidCondition",
00105 FatalException, "Track with same momentum !");
00106 }
00107 aParticleChange->AddSecondary(ptrack);
00108 }
00109 return;
00110 }