Geant4  10.00.p02
Run.cc
Go to the documentation of this file.
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 //
28 //
29 // $Id: Run.cc 71376 2013-06-14 07:44:50Z maire $
30 //
31 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
32 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
33 
34 #include "Run.hh"
35 #include "DetectorConstruction.hh"
36 
37 #include "G4UnitsTable.hh"
38 #include "G4SystemOfUnits.hh"
39 
40 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
41 
43 : G4Run(),
44  fDetector(det),
45  fNbStep1(0), fNbStep2(0),
46  fTrackLen1(0.), fTrackLen2(0.),
47  fTime1(0.),fTime2(0.)
48 { }
49 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
50 
51 Run::~Run()
52 { }
53 
54 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
55 
56 void Run::CountProcesses(const G4VProcess* process)
57 {
58  std::map<const G4VProcess*,G4int>::iterator it = fProcCounter.find(process);
59  if ( it == fProcCounter.end()) {
60  fProcCounter[process] = 1;
61  }
62  else {
63  fProcCounter[process]++;
64  }
65 }
66 
67 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
68 
70 {
71  std::map<G4String, ParticleData>::iterator it = fParticleDataMap.find(name);
72  if ( it == fParticleDataMap.end()) {
73  fParticleDataMap[name] = ParticleData(1, Ekin, Ekin, Ekin);
74  }
75  else {
76  ParticleData& data = it->second;
77  data.fCount++;
78  data.fEmean += Ekin;
79  //update min max
80  G4double emin = data.fEmin;
81  if (Ekin < emin) data.fEmin = Ekin;
82  G4double emax = data.fEmax;
83  if (Ekin > emax) data.fEmax = Ekin;
84  }
85 }
86 
87 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
88 
89 void Run::SumTrackLength(G4int nstep1, G4int nstep2,
90  G4double trackl1, G4double trackl2,
91  G4double time1, G4double time2)
92 {
93  fNbStep1 += nstep1; fNbStep2 += nstep2;
94  fTrackLen1 += trackl1; fTrackLen2 += trackl2;
95  fTime1 += time1; fTime2 += time2;
96 }
97 
98 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
99 
101 {
102  G4int prec = 5, wid = prec + 2;
103  G4int dfprec = G4cout.precision(prec);
104 
105  //frequency of processes
106  //
107  G4cout << "\n Process calls frequency --->";
108  G4int survive = 0;
109  std::map<const G4VProcess*,G4int>::iterator it;
110  for (it = fProcCounter.begin(); it != fProcCounter.end(); it++) {
111  G4String procName = it->first->GetProcessName();
112  G4int count = it->second;
113  G4cout << "\t" << procName << "= " << count;
114  if (procName == "Transportation") survive = count;
115  }
116  G4cout << G4endl;
117 
118  if (survive > 0) {
119  G4cout << "\n Nb of incident particles surviving after "
120  << G4BestUnit(0.5*(fDetector->GetSize()),"Length") << " of "
121  << fDetector->GetMaterial()->GetName() << " : " << survive << G4endl;
122  }
123 
124  // total track length of incident neutron
125  //
126  G4cout << "\n Parcours of incident neutron:";
127 
128  G4double meanCollision1 = (G4double)fNbStep1/numberOfEvent;
129  G4double meanCollision2 = (G4double)fNbStep2/numberOfEvent;
130  G4double meanCollisTota = meanCollision1 + meanCollision2;
131 
132  G4cout << "\n nb of collisions E>1*eV= " << meanCollision1
133  << " E<1*eV= " << meanCollision2
134  << " total= " << meanCollisTota;
135 
136  G4double meanTrackLen1 = fTrackLen1/numberOfEvent;
137  G4double meanTrackLen2 = fTrackLen2/numberOfEvent;
138  G4double meanTrackLtot = meanTrackLen1 + meanTrackLen2;
139 
140  G4cout
141  << "\n track length E>1*eV= " << G4BestUnit(meanTrackLen1,"Length")
142  << " E<1*eV= " << G4BestUnit(meanTrackLen2, "Length")
143  << " total= " << G4BestUnit(meanTrackLtot, "Length");
144 
145  G4double meanTime1 = fTime1/numberOfEvent;
146  G4double meanTime2 = fTime2/numberOfEvent;
147  G4double meanTimeTo = meanTime1 + meanTime2;
148 
149  G4cout
150  << "\n time of flight E>1*eV= " << G4BestUnit(meanTime1,"Time")
151  << " E<1*eV= " << G4BestUnit(meanTime2, "Time")
152  << " total= " << G4BestUnit(meanTimeTo, "Time") << G4endl;
153 
154  //particles count
155  //
156  G4cout << "\n List of generated particles:" << G4endl;
157 
158  std::map<G4String,ParticleData>::iterator itn;
159  for (itn = fParticleDataMap.begin(); itn != fParticleDataMap.end(); itn++) {
160  G4String name = itn->first;
161  ParticleData data = itn->second;
162  G4int count = data.fCount;
163  G4double eMean = data.fEmean/count;
164  G4double eMin = data.fEmin;
165  G4double eMax = data.fEmax;
166 
167  G4cout << " " << std::setw(13) << name << ": " << std::setw(7) << count
168  << " Emean = " << std::setw(wid) << G4BestUnit(eMean, "Energy")
169  << "\t( " << G4BestUnit(eMin, "Energy")
170  << " --> " << G4BestUnit(eMax, "Energy")
171  << ")" << G4endl;
172  }
173 
174  //restore default format
175  G4cout.precision(dfprec);
176 
177  // remove all contents in fProcCounter
178  fProcCounter.clear();
179  // remove all contents in fCount
180  fParticleDataMap.clear();
181 }
182 
183 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
184 
185 void Run::Merge(const G4Run* run)
186 {
187  const Run* localRun = static_cast<const Run*>(run);
188 
189  // accumulate sums
190  //
191  fNbStep1 += localRun->fNbStep1;
192  fNbStep2 += localRun->fNbStep2;
193  fTrackLen1 += localRun->fTrackLen1;
194  fTrackLen2 += localRun->fTrackLen2;
195  fTime1 += localRun->fTime1;
196  fTime2 += localRun->fTime2;
197 
198  //maps
199  std::map<const G4VProcess*,G4int>::const_iterator itp;
200  for ( itp = localRun->fProcCounter.begin();
201  itp != localRun->fProcCounter.end(); ++itp ) {
202 
203  const G4VProcess* process = itp->first;
204  G4int localCount = itp->second;
205  if ( fProcCounter.find(process) == fProcCounter.end()) {
206  fProcCounter[process] = localCount;
207  }
208  else {
209  fProcCounter[process] += localCount;
210  }
211  }
212 
213  std::map<G4String,ParticleData>::const_iterator itn;
214  for (itn = localRun->fParticleDataMap.begin();
215  itn != localRun->fParticleDataMap.end(); ++itn) {
216 
217  G4String name = itn->first;
218  const ParticleData& localData = itn->second;
219  if ( fParticleDataMap.find(name) == fParticleDataMap.end()) {
221  = ParticleData(localData.fCount,
222  localData.fEmean,
223  localData.fEmin,
224  localData.fEmax);
225  }
226  else {
227  ParticleData& data = fParticleDataMap[name];
228  data.fCount += localData.fCount;
229  data.fEmean += localData.fEmean;
230  G4double emin = localData.fEmin;
231  if (emin < data.fEmin) data.fEmin = emin;
232  G4double emax = localData.fEmax;
233  if (emax > data.fEmax) data.fEmax = emax;
234  }
235  }
236 
237  G4Run::Merge(run);
238 }
239 
240 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
virtual void Merge(const G4Run *)
Definition: G4Run.cc:54
G4int numberOfEvent
Definition: G4Run.hh:59
void CountProcesses(G4String procName)
Definition: Run.hh:57
G4int fNbStep1
Definition: Run.hh:78
G4double fTime2
Definition: Run.hh:80
std::map< G4String, ParticleData > fParticleDataMap
Definition: Run.hh:76
G4int first(char) const
G4String name
Definition: TRTMaterials.hh:40
const G4String & GetName() const
Definition: G4Material.hh:176
G4double fEmean
Definition: Run.hh:71
#define G4BestUnit(a, b)
#define G4_USE_G4BESTUNIT_FOR_VERBOSE 1
G4double fTime1
Definition: Run.hh:80
int G4int
Definition: G4Types.hh:78
void SumTrackLength(G4int, G4int, G4double, G4double, G4double, G4double)
Definition: Run.cc:89
static const double prec
Definition: RanecuEngine.cc:51
G4GLOB_DLL std::ostream G4cout
std::map< G4String, G4int > fProcCounter
Definition: Run.hh:82
G4double fEmax
Definition: Run.hh:73
G4int fCount
Definition: Run.hh:70
Definition: G4Run.hh:46
G4double fEmin
Definition: Run.hh:72
G4int fNbStep2
Definition: Run.hh:78
G4double fTrackLen1
Definition: Run.hh:79
void ComputeStatistics()
Definition: Run.cc:97
DetectorConstruction * fDetector
Definition: Run.hh:72
Detector construction class to demonstrate various ways of placement.
#define G4endl
Definition: G4ios.hh:61
double G4double
Definition: G4Types.hh:76
Definition: Run.hh:46
virtual void Merge(const G4Run *)
Definition: Run.cc:180
G4double fTrackLen2
Definition: Run.hh:74
~Run()
Definition: Run.cc:60
void ParticleCount(G4String, G4double)
Definition: Run.cc:69
Run(DetectorConstruction *)
Definition: Run.cc:46