Geant4 Cross Reference

Cross-Referencing   Geant4
Geant4/examples/extended/radioactivedecay/rdecay01/src/TrackingAction.cc

Version: [ ReleaseNotes ] [ 1.0 ] [ 1.1 ] [ 2.0 ] [ 3.0 ] [ 3.1 ] [ 3.2 ] [ 4.0 ] [ 4.0.p1 ] [ 4.0.p2 ] [ 4.1 ] [ 4.1.p1 ] [ 5.0 ] [ 5.0.p1 ] [ 5.1 ] [ 5.1.p1 ] [ 5.2 ] [ 5.2.p1 ] [ 5.2.p2 ] [ 6.0 ] [ 6.0.p1 ] [ 6.1 ] [ 6.2 ] [ 6.2.p1 ] [ 6.2.p2 ] [ 7.0 ] [ 7.0.p1 ] [ 7.1 ] [ 7.1.p1 ] [ 8.0 ] [ 8.0.p1 ] [ 8.1 ] [ 8.1.p1 ] [ 8.1.p2 ] [ 8.2 ] [ 8.2.p1 ] [ 8.3 ] [ 8.3.p1 ] [ 8.3.p2 ] [ 9.0 ] [ 9.0.p1 ] [ 9.0.p2 ] [ 9.1 ] [ 9.1.p1 ] [ 9.1.p2 ] [ 9.1.p3 ] [ 9.2 ] [ 9.2.p1 ] [ 9.2.p2 ] [ 9.2.p3 ] [ 9.2.p4 ] [ 9.3 ] [ 9.3.p1 ] [ 9.3.p2 ] [ 9.4 ] [ 9.4.p1 ] [ 9.4.p2 ] [ 9.4.p3 ] [ 9.4.p4 ] [ 9.5 ] [ 9.5.p1 ] [ 9.5.p2 ] [ 9.6 ] [ 9.6.p1 ] [ 9.6.p2 ] [ 9.6.p3 ] [ 9.6.p4 ] [ 10.0 ] [ 10.0.p1 ] [ 10.0.p2 ] [ 10.0.p3 ] [ 10.0.p4 ] [ 10.1 ] [ 10.1.p1 ] [ 10.1.p2 ] [ 10.1.p3 ] [ 10.2 ] [ 10.2.p1 ] [ 10.2.p2 ] [ 10.2.p3 ] [ 10.3 ] [ 10.3.p1 ] [ 10.3.p2 ] [ 10.3.p3 ] [ 10.4 ] [ 10.4.p1 ] [ 10.4.p2 ] [ 10.4.p3 ] [ 10.5 ] [ 10.5.p1 ] [ 10.6 ] [ 10.6.p1 ] [ 10.6.p2 ] [ 10.6.p3 ] [ 10.7 ] [ 10.7.p1 ] [ 10.7.p2 ] [ 10.7.p3 ] [ 10.7.p4 ] [ 11.0 ] [ 11.0.p1 ] [ 11.0.p2 ] [ 11.0.p3, ] [ 11.0.p4 ] [ 11.1 ] [ 11.1.1 ] [ 11.1.2 ] [ 11.1.3 ] [ 11.2 ] [ 11.2.1 ] [ 11.2.2 ] [ 11.3.0 ]

  1 //
  2 // ********************************************************************
  3 // * License and Disclaimer                                           *
  4 // *                                                                  *
  5 // * The  Geant4 software  is  copyright of the Copyright Holders  of *
  6 // * the Geant4 Collaboration.  It is provided  under  the terms  and *
  7 // * conditions of the Geant4 Software License,  included in the file *
  8 // * LICENSE and available at  http://cern.ch/geant4/license .  These *
  9 // * include a list of copyright holders.                             *
 10 // *                                                                  *
 11 // * Neither the authors of this software system, nor their employing *
 12 // * institutes,nor the agencies providing financial support for this *
 13 // * work  make  any representation or  warranty, express or implied, *
 14 // * regarding  this  software system or assume any liability for its *
 15 // * use.  Please see the license in the file  LICENSE  and URL above *
 16 // * for the full disclaimer and the limitation of liability.         *
 17 // *                                                                  *
 18 // * This  code  implementation is the result of  the  scientific and *
 19 // * technical work of the GEANT4 collaboration.                      *
 20 // * By using,  copying,  modifying or  distributing the software (or *
 21 // * any work based  on the software)  you  agree  to acknowledge its *
 22 // * use  in  resulting  scientific  publications,  and indicate your *
 23 // * acceptance of all terms of the Geant4 Software license.          *
 24 // ********************************************************************
 25 //
 26 /// \file TrackingAction.cc
 27 /// \brief Implementation of the TrackingAction class
 28 //
 29 //
 30 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
 31 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
 32 
 33 #include "TrackingAction.hh"
 34 
 35 #include "EventAction.hh"
 36 #include "HistoManager.hh"
 37 #include "Run.hh"
 38 #include "TrackingMessenger.hh"
 39 
 40 #include "G4IonTable.hh"
 41 #include "G4ParticleTypes.hh"
 42 #include "G4RunManager.hh"
 43 #include "G4SystemOfUnits.hh"
 44 #include "G4Track.hh"
 45 #include "G4UnitsTable.hh"
 46 
 47 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
 48 
 49 TrackingAction::TrackingAction(EventAction* event) : fEvent(event)
 50 
 51 {
 52   fTrackMessenger = new TrackingMessenger(this);
 53 }
 54 
 55 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
 56 
 57 TrackingAction::~TrackingAction()
 58 {
 59   delete fTrackMessenger;
 60 }
 61 
 62 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
 63 
 64 void TrackingAction::SetTimeWindow(G4double t1, G4double dt)
 65 {
 66   fTimeWindow1 = t1;
 67   fTimeWindow2 = fTimeWindow1 + dt;
 68 }
 69 
 70 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
 71 
 72 void TrackingAction::PreUserTrackingAction(const G4Track* track)
 73 {
 74   Run* run = static_cast<Run*>(G4RunManager::GetRunManager()->GetNonConstCurrentRun());
 75 
 76   G4ParticleDefinition* particle = track->GetDefinition();
 77   G4String name = particle->GetParticleName();
 78   fCharge = particle->GetPDGCharge();
 79   fMass = particle->GetPDGMass();
 80 
 81   G4double Ekin = track->GetKineticEnergy();
 82   G4int ID = track->GetTrackID();
 83 
 84   G4bool condition = false;
 85 
 86   // check LifeTime
 87   //
 88   G4double meanLife = particle->GetPDGLifeTime();
 89 
 90   // count particles
 91   //
 92   run->ParticleCount(name, Ekin, meanLife);
 93 
 94   // energy spectrum
 95   //
 96   G4int ih = 0;
 97   if (particle == G4Electron::Electron() || particle == G4Positron::Positron())
 98     ih = 1;
 99   else if (particle == G4NeutrinoE::NeutrinoE() || particle == G4AntiNeutrinoE::AntiNeutrinoE())
100     ih = 2;
101   else if (particle == G4Gamma::Gamma())
102     ih = 3;
103   else if (particle == G4Alpha::Alpha())
104     ih = 4;
105   else if (fCharge > 2.)
106     ih = 5;
107   if (ih) G4AnalysisManager::Instance()->FillH1(ih, Ekin);
108 
109   // Ion
110   //
111   if (fCharge > 2.) {
112     // build decay chain
113     if (ID == 1)
114       fEvent->AddDecayChain(name);
115     else
116       fEvent->AddDecayChain(" ---> " + name);
117     //
118     // full chain: put at rest; if not: kill secondary
119     G4Track* tr = (G4Track*)track;
120     if (fFullChain) {
121       tr->SetKineticEnergy(0.);
122       tr->SetTrackStatus(fStopButAlive);
123     }
124     else if (ID > 1)
125       tr->SetTrackStatus(fStopAndKill);
126     //
127     fTimeBirth = track->GetGlobalTime();
128   }
129 
130   // example of saving random number seed of this fEvent, under condition
131   //
132   ////condition = (ih == 3);
133   if (condition) G4RunManager::GetRunManager()->rndmSaveThisEvent();
134 }
135 
136 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
137 
138 void TrackingAction::PostUserTrackingAction(const G4Track* track)
139 {
140   // keep only ions
141   //
142   if (fCharge < 3.) return;
143 
144   Run* run = static_cast<Run*>(G4RunManager::GetRunManager()->GetNonConstCurrentRun());
145 
146   G4AnalysisManager* analysis = G4AnalysisManager::Instance();
147 
148   // get time
149   //
150   G4double time = track->GetGlobalTime();
151   G4int ID = track->GetTrackID();
152   if (ID == 1) run->PrimaryTiming(time);  // time of life of primary ion
153   fTimeEnd = time;
154 
155   // energy and momentum balance (from secondaries)
156   //
157   const std::vector<const G4Track*>* secondaries = track->GetStep()->GetSecondaryInCurrentStep();
158   size_t nbtrk = (*secondaries).size();
159   if (nbtrk) {
160     // there are secondaries --> it is a decay
161     //
162     // balance
163     G4double EkinTot = 0., EkinVis = 0.;
164     G4ThreeVector Pbalance = -track->GetMomentum();
165     for (size_t itr = 0; itr < nbtrk; itr++) {
166       const G4Track* trk = (*secondaries)[itr];
167       G4ParticleDefinition* particle = trk->GetDefinition();
168       G4double Ekin = trk->GetKineticEnergy();
169       EkinTot += Ekin;
170       G4bool visible =
171         !((particle == G4NeutrinoE::NeutrinoE()) || (particle == G4AntiNeutrinoE::AntiNeutrinoE()));
172       if (visible) EkinVis += Ekin;
173       // exclude gamma desexcitation from momentum balance
174       if (particle != G4Gamma::Gamma()) Pbalance += trk->GetMomentum();
175     }
176     G4double Pbal = Pbalance.mag();
177     run->Balance(EkinTot, Pbal);
178     analysis->FillH1(6, EkinTot);
179     analysis->FillH1(7, Pbal);
180     fEvent->AddEvisible(EkinVis);
181   }
182 
183   // no secondaries --> end of chain
184   //
185   if (!nbtrk) {
186     run->EventTiming(time);  // total time of life
187     G4double weight = track->GetWeight();
188     analysis->FillH1(8, time, weight);
189     ////    analysis->FillH1(8,time);
190     fTimeEnd = DBL_MAX;
191   }
192 
193   // count activity in time window
194   //
195   run->SetTimeWindow(fTimeWindow1, fTimeWindow2);
196 
197   G4String name = track->GetDefinition()->GetParticleName();
198   G4bool life1(false), life2(false), decay(false);
199   if ((fTimeBirth <= fTimeWindow1) && (fTimeEnd > fTimeWindow1)) life1 = true;
200   if ((fTimeBirth <= fTimeWindow2) && (fTimeEnd > fTimeWindow2)) life2 = true;
201   if ((fTimeEnd > fTimeWindow1) && (fTimeEnd < fTimeWindow2)) decay = true;
202   if (life1 || life2 || decay) run->CountInTimeWindow(name, life1, life2, decay);
203 }
204 
205 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
206