ECCE @ EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Run.cc
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file Run.cc
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 //
30 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
31 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
32 
33 #include "Run.hh"
34 #include "PrimaryGeneratorAction.hh"
35 #include "DetectorConstruction.hh"
36 #include "G4EmCalculator.hh"
37 #include "G4Proton.hh"
38 #include "G4SystemOfUnits.hh"
39 #include "G4UnitsTable.hh"
40 #include <iomanip>
41 
42 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
43 
45  :fDetector(det), fPrimary(prim)
46 {
48 
50  fOffsetX = -0.5 * length;
51 
52  fVerboseLevel = 1;
53  fNevt = 0;
54  fProjRange = fProjRange2 = 0.;
55 }
56 
57 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
58 
59 Run::~Run()
60 {}
61 
62 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
63 
64 void Run::Merge(const G4Run* run)
65 {
66  const Run* localRun = static_cast<const Run*>(run);
67 
68  fNevt += localRun->GetNumberOfEvent();
69  fProjRange += localRun->fProjRange;
70  fProjRange2 += localRun->fProjRange2;
71 
72  G4Run::Merge(run);
73 }
74 
75 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
76 
77 void Run::EndOfRun(double binLength)
78 {
79 
81  fNevt += this->GetNumberOfEvent();
82  }
83 
85  if (nEvents == 0) { return; }
86 
87  //run conditions
88  //
90  G4double density = material->GetDensity();
91  G4String matName = material->GetName();
92 
93  const G4ParticleDefinition* part =
97 
99 
100  if(GetVerbose() > 0){
101  G4cout << "\n The run consists of " << nEvents << " "<< particle << " of "
102  << G4BestUnit(energy,"Energy") << "\n through "
103  << G4BestUnit(fDetector->GetAbsorSizeX(),"Length") << " of "
104  << matName << " (density: "
105  << G4BestUnit(density,"Volumic Mass") << ")" << G4endl;
106  //G4cout<<"Proj "<<fProjRange<<" "<<fProjRange2<<G4endl;
107  };
108 
109  //compute projected range and straggling
112  if (rms>0.) { rms = std::sqrt(rms); }
113  else { rms = 0.; }
114 
115  if(GetVerbose() > 0){
116  G4cout.precision(5);
117  G4cout << " Projected Range= " << G4BestUnit(fProjRange, "Length")
118  << " rms= " << G4BestUnit(rms, "Length")
119  << "\n" << G4endl;
120  };
121 
122  G4double ekin[100], dedxp[100], dedxmp[100], tdedxp[100], tdedxmp[100],
123  xsp[100], xsmp[100];
124  G4EmCalculator calc;
125  //calc.SetVerbose(2);
126  G4int i;
127  for(i = 0; i < 100; ++i) {
128  ekin[i] = std::pow(10., 0.1*G4double(i)) * keV;
129  dedxp[i] = calc.GetDEDX(ekin[i], proton, material);
130  xsp[i] = calc.GetCrossSectionPerVolume(ekin[i], proton, "hIoni",
131  material);
132  tdedxp[i] = calc.ComputeElectronicDEDX(ekin[i], proton, material);
133  dedxmp[i] = calc.GetDEDX(ekin[i], part, material);
134  xsmp[i] = calc.GetCrossSectionPerVolume(ekin[i], part, "mplIoni",
135  material);
136  tdedxmp[i] = calc.ComputeElectronicDEDX(ekin[i], part, material);
137  }
138 
139  if(GetVerbose() > 0){
140  G4int prec = G4cout.precision(3);
141  G4cout<<"##################################################################"
142  << G4endl;
143  G4cout<< "### Stopping Powers and Cross Sections" << G4endl;
144  G4cout<<"##################################################################"
145  << G4endl;
146 
147  G4cout<<"# N E(MeV) p_dEdx(MeV/mm) mpl_dEdx(MeV/mm) xs(1/mm)"
148  << G4endl;
149  G4cout<<" restr tot restr tot p mpl"
150  << G4endl;
151  G4cout<<"##################################################################"
152  << G4endl;
153  for(i=0; i<100; ++i) {
154  G4cout << std::setw(2) << i << "." << std::setw(9) << ekin[i]
155  << std::setw(8) << dedxp[i]
156  << std::setw(8) << tdedxp[i]
157  << std::setw(9) << dedxmp[i]
158  << std::setw(9) << tdedxmp[i]
159  << std::setw(10) << xsp[i]
160  << std::setw(10) << xsmp[i]
161  << G4endl;
162  }
163  G4cout.precision(prec);
164  G4cout<<"##################################################################"
165  << G4endl;
166  }
167 
168  // normalize histogram
169  G4double fac = (mm/MeV) / (nEvents * binLength);
170  fAnalysisManager->ScaleH1(1,fac);
171 
172  for(i=0; i<100; ++i) {
173  G4double e = std::log10(ekin[i] / MeV) + 0.05;
174  fAnalysisManager->FillH1(2, e, tdedxp[i]);
175  fAnalysisManager->FillH1(3, e, tdedxmp[i]);
176  fAnalysisManager->FillH1(4, e,
177  std::log10(calc.GetRange(ekin[i],"proton",matName)/mm));
178  fAnalysisManager->FillH1(5, e,
179  std::log10(calc.GetRange(ekin[i],"monopole",matName)/mm));
180  fAnalysisManager->FillH1(6, e, dedxp[i]);
181  fAnalysisManager->FillH1(7, e, dedxmp[i]);
182  fAnalysisManager->FillH1(8, e, xsp[i]);
183  fAnalysisManager->FillH1(9, e, xsmp[i]);
184  }
185 }
186 
187 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
188 
189 
191 {
192  fAnalysisManager->FillH1(histoId, v1, v2);
193 }
194 
195 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......