ECCE @ EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
RunAction.cc
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file RunAction.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 "RunAction.hh"
34 
35 #include "DetectorConstruction.hh"
36 #include "PrimaryGeneratorAction.hh"
37 #include "RunActionMessenger.hh"
38 #include "HistoManager.hh"
39 #include "Run.hh"
40 #include "G4Timer.hh"
41 #include "G4RunManager.hh"
42 #include "Randomize.hh"
43 
44 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
45 
47  :G4UserRunAction(), fDetector(det), fPrimary(prim), fRun(nullptr),
48  fTimer(nullptr)
49 {
52 }
53 
54 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
55 
57 {
58  delete fRunMessenger;
59 }
60 
61 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
62 
64 {
65  fRun = new Run(fDetector);
66  return fRun;
67 }
68 
69 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
70 
72 {
73  // keep run condition
74  if ( fPrimary ) {
78  fRun->SetPrimary(particle, energy);
79  }
80 
81  //histograms
82  //
84  if (analysis->IsActive()) analysis->OpenFile();
85 
86  // save Rndm status and open the timer
87 
88  if (isMaster) {
89  // G4Random::showEngineStatus();
90  fTimer = new G4Timer();
91  fTimer->Start();
92  }
93 }
94 
95 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
96 
98 {
99  // compute and print statistic
100  if (isMaster) {
101  fTimer->Stop();
102  if(!((G4RunManager::GetRunManager()->GetRunManagerType() ==
104  G4cout << "\n" << "Total number of events: "
105  << fRun->GetNumberOfEvent() << G4endl;
106  G4cout << "Master thread time: " << *fTimer << G4endl;
107  }
108  delete fTimer;
109  fRun->EndOfRun();
110  }
111  //save histograms
113  if (analysis->IsActive()) {
114  analysis->Write();
115  analysis->CloseFile();
116  }
117 
118  // show Rndm status
119  // if (isMaster) G4Random::showEngineStatus();
120 }
121 
122 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
123 
125 {
126  if (fRun) fRun->SetEdepAndRMS(i, edep, rms, lim);
127 }
128 
129 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
130 
132 {
133  if (fRun) fRun->SetApplyLimit(val);
134 }
135 
136 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......