Geant4 Cross Reference |
1 // 1 // 2 // ******************************************* 2 // ******************************************************************** 3 // * License and Disclaimer 3 // * License and Disclaimer * 4 // * 4 // * * 5 // * The Geant4 software is copyright of th 5 // * The Geant4 software is copyright of the Copyright Holders of * 6 // * the Geant4 Collaboration. It is provided 6 // * the Geant4 Collaboration. It is provided under the terms and * 7 // * conditions of the Geant4 Software License 7 // * conditions of the Geant4 Software License, included in the file * 8 // * LICENSE and available at http://cern.ch/ 8 // * LICENSE and available at http://cern.ch/geant4/license . These * 9 // * include a list of copyright holders. 9 // * include a list of copyright holders. * 10 // * 10 // * * 11 // * Neither the authors of this software syst 11 // * Neither the authors of this software system, nor their employing * 12 // * institutes,nor the agencies providing fin 12 // * institutes,nor the agencies providing financial support for this * 13 // * work make any representation or warran 13 // * work make any representation or warranty, express or implied, * 14 // * regarding this software system or assum 14 // * regarding this software system or assume any liability for its * 15 // * use. Please see the license in the file 15 // * use. Please see the license in the file LICENSE and URL above * 16 // * for the full disclaimer and the limitatio 16 // * for the full disclaimer and the limitation of liability. * 17 // * 17 // * * 18 // * This code implementation is the result 18 // * This code implementation is the result of the scientific and * 19 // * technical work of the GEANT4 collaboratio 19 // * technical work of the GEANT4 collaboration. * 20 // * By using, copying, modifying or distri 20 // * By using, copying, modifying or distributing the software (or * 21 // * any work based on the software) you ag 21 // * any work based on the software) you agree to acknowledge its * 22 // * use in resulting scientific publicati 22 // * use in resulting scientific publications, and indicate your * 23 // * acceptance of all terms of the Geant4 Sof 23 // * acceptance of all terms of the Geant4 Software license. * 24 // ******************************************* 24 // ******************************************************************** 25 // 25 // 26 /// \file RunAction.cc 26 /// \file RunAction.cc 27 /// \brief Implementation of the RunAction cla 27 /// \brief Implementation of the RunAction class 28 // 28 // 29 // 29 // 30 // 30 // 31 //....oooOO0OOooo........oooOO0OOooo........oo 31 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 32 //....oooOO0OOooo........oooOO0OOooo........oo 32 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 33 33 34 #include "RunAction.hh" 34 #include "RunAction.hh" 35 << 36 #include "HistoManager.hh" 35 #include "HistoManager.hh" 37 36 38 #include "G4AccumulableManager.hh" << 39 #include "G4Run.hh" 37 #include "G4Run.hh" 40 #include "G4RunManager.hh" 38 #include "G4RunManager.hh" 41 #include "G4UnitsTable.hh" 39 #include "G4UnitsTable.hh" 42 40 43 //....oooOO0OOooo........oooOO0OOooo........oo 41 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 44 42 45 RunAction::RunAction(HistoManager* histo) : fH << 43 RunAction::RunAction(HistoManager* histo) 46 { << 44 : G4UserRunAction(), 47 // Register accumulable to the accumulable m << 45 fHistoManager(histo), 48 G4AccumulableManager* accumulableManager = G << 46 fSumEAbs(0.), fSum2EAbs(0.), 49 accumulableManager->Register(fSumEAbs); << 47 fSumEGap(0.), fSum2EGap(0.), 50 accumulableManager->Register(fSum2EAbs); << 48 fSumLAbs(0.), fSum2LAbs(0.), 51 accumulableManager->Register(fSumEGap); << 49 fSumLGap(0.), fSum2LGap(0.) 52 accumulableManager->Register(fSum2EGap); << 50 {} 53 accumulableManager->Register(fSumLAbs); << 54 accumulableManager->Register(fSum2LAbs); << 55 accumulableManager->Register(fSumLGap); << 56 accumulableManager->Register(fSum2LGap); << 57 } << 58 51 59 //....oooOO0OOooo........oooOO0OOooo........oo 52 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 60 53 61 RunAction::~RunAction() = default; << 54 RunAction::~RunAction() >> 55 {} 62 56 63 //....oooOO0OOooo........oooOO0OOooo........oo 57 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 64 58 65 void RunAction::BeginOfRunAction(const G4Run* 59 void RunAction::BeginOfRunAction(const G4Run* aRun) 66 { << 60 { 67 G4cout << "### Run " << aRun->GetRunID() << 61 G4cout << "### Run " << aRun->GetRunID() << " start." << G4endl; 68 << 62 69 // reset accumulables to their initial value << 63 //initialize cumulative quantities 70 G4AccumulableManager::Instance()->Reset(); << 71 << 72 // histograms << 73 // 64 // 74 fHistoManager->Book(); << 65 fSumEAbs = fSum2EAbs =fSumEGap = fSum2EGap = 0.; >> 66 fSumLAbs = fSum2LAbs =fSumLGap = fSum2LGap = 0.; >> 67 >> 68 //histograms >> 69 // >> 70 fHistoManager->Book(); 75 } 71 } 76 72 77 //....oooOO0OOooo........oooOO0OOooo........oo 73 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 78 74 79 void RunAction::FillPerEvent(G4double EAbs, G4 << 75 void RunAction::FillPerEvent(G4double EAbs, G4double EGap, >> 76 G4double LAbs, G4double LGap) 80 { 77 { 81 // accumulate statistic << 78 //accumulate statistic 82 // 79 // 83 fSumEAbs += EAbs; << 80 fSumEAbs += EAbs; fSum2EAbs += EAbs*EAbs; 84 fSum2EAbs += EAbs * EAbs; << 81 fSumEGap += EGap; fSum2EGap += EGap*EGap; 85 fSumEGap += EGap; << 82 86 fSum2EGap += EGap * EGap; << 83 fSumLAbs += LAbs; fSum2LAbs += LAbs*LAbs; 87 << 84 fSumLGap += LGap; fSum2LGap += LGap*LGap; 88 fSumLAbs += LAbs; << 89 fSum2LAbs += LAbs * LAbs; << 90 fSumLGap += LGap; << 91 fSum2LGap += LGap * LGap; << 92 } 85 } 93 86 94 //....oooOO0OOooo........oooOO0OOooo........oo 87 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 95 88 96 void RunAction::EndOfRunAction(const G4Run* aR 89 void RunAction::EndOfRunAction(const G4Run* aRun) 97 { 90 { 98 // Merge accumulables << 91 G4int NbOfEvents = aRun->GetNumberOfEvent(); 99 G4AccumulableManager::Instance()->Merge(); << 92 if (NbOfEvents == 0) return; 100 << 93 101 G4int nofEvents = aRun->GetNumberOfEvent(); << 94 //compute statistics: mean and rms 102 if (nofEvents == 0) { << 95 // 103 // close open files << 96 fSumEAbs /= NbOfEvents; fSum2EAbs /= NbOfEvents; 104 fHistoManager->Save(); << 97 G4double rmsEAbs = fSum2EAbs - fSumEAbs*fSumEAbs; 105 return; << 98 if (rmsEAbs >0.) rmsEAbs = std::sqrt(rmsEAbs); else rmsEAbs = 0.; 106 } << 99 107 << 100 fSumEGap /= NbOfEvents; fSum2EGap /= NbOfEvents; 108 // compute statistics: mean and rms << 101 G4double rmsEGap = fSum2EGap - fSumEGap*fSumEGap; 109 // << 102 if (rmsEGap >0.) rmsEGap = std::sqrt(rmsEGap); else rmsEGap = 0.; 110 auto sumEAbs = fSumEAbs.GetValue(); << 103 111 auto sum2EAbs = fSum2EAbs.GetValue(); << 104 fSumLAbs /= NbOfEvents; fSum2LAbs /= NbOfEvents; 112 sumEAbs /= nofEvents; << 105 G4double rmsLAbs = fSum2LAbs - fSumLAbs*fSumLAbs; 113 sum2EAbs /= nofEvents; << 106 if (rmsLAbs >0.) rmsLAbs = std::sqrt(rmsLAbs); else rmsLAbs = 0.; 114 auto rmsEAbs = sum2EAbs - sumEAbs * sumEAbs; << 107 115 if (rmsEAbs > 0.) { << 108 fSumLGap /= NbOfEvents; fSum2LGap /= NbOfEvents; 116 rmsEAbs = std::sqrt(rmsEAbs); << 109 G4double rmsLGap = fSum2LGap - fSumLGap*fSumLGap; 117 } << 110 if (rmsLGap >0.) rmsLGap = std::sqrt(rmsLGap); else rmsLGap = 0.; 118 else { << 111 119 rmsEAbs = 0.; << 112 //print 120 } << 113 // 121 << 114 G4cout 122 auto sumEGap = fSumEGap.GetValue(); << 115 << "\n--------------------End of Run------------------------------\n" 123 auto sum2EGap = fSum2EGap.GetValue(); << 116 << "\n mean Energy in Absorber : " << G4BestUnit(fSumEAbs,"Energy") 124 sumEGap /= nofEvents; << 117 << " +- " << G4BestUnit(rmsEAbs,"Energy") 125 sum2EGap /= nofEvents; << 118 << "\n mean Energy in Gap : " << G4BestUnit(fSumEGap,"Energy") 126 auto rmsEGap = sum2EGap - sumEGap * sumEGap; << 119 << " +- " << G4BestUnit(rmsEGap,"Energy") 127 if (rmsEGap > 0.) { << 120 << G4endl; 128 rmsEGap = std::sqrt(rmsEGap); << 121 129 } << 122 G4cout 130 else { << 123 << "\n mean trackLength in Absorber : " << G4BestUnit(fSumLAbs,"Length") 131 rmsEGap = 0.; << 124 << " +- " << G4BestUnit(rmsLAbs,"Length") 132 } << 125 << "\n mean trackLength in Gap : " << G4BestUnit(fSumLGap,"Length") 133 << 126 << " +- " << G4BestUnit(rmsLGap,"Length") 134 auto sumLAbs = fSumLAbs.GetValue(); << 127 << "\n------------------------------------------------------------\n" 135 auto sum2LAbs = fSum2LAbs.GetValue(); << 128 << G4endl; 136 sumLAbs /= nofEvents; << 129 137 sum2LAbs /= nofEvents; << 130 //save histograms 138 auto rmsLAbs = sum2LAbs - sumLAbs * sumLAbs; << 139 if (rmsLAbs > 0.) { << 140 rmsLAbs = std::sqrt(rmsLAbs); << 141 } << 142 else { << 143 rmsLAbs = 0.; << 144 } << 145 << 146 auto sumLGap = fSumLGap.GetValue(); << 147 auto sum2LGap = fSum2LGap.GetValue(); << 148 sumLGap /= nofEvents; << 149 sum2LGap /= nofEvents; << 150 G4double rmsLGap = sum2LGap - sumLGap * sumL << 151 if (rmsLGap > 0.) { << 152 rmsLGap = std::sqrt(rmsLGap); << 153 } << 154 else { << 155 rmsLGap = 0.; << 156 } << 157 << 158 // print << 159 // << 160 G4cout << "\n--------------------End of Run- << 161 << "\n mean Energy in Absorber : " << << 162 << G4BestUnit(rmsEAbs, "Energy") << 163 << "\n mean Energy in Gap : " << << 164 << G4BestUnit(rmsEGap, "Energy") << G << 165 << 166 G4cout << "\n mean trackLength in Absorber : << 167 << G4BestUnit(rmsLAbs, "Length") << 168 << "\n mean trackLength in Gap : << 169 << G4BestUnit(rmsLGap, "Length") << 170 << "\n------------------------------- << 171 << G4endl; << 172 << 173 // save histograms << 174 // 131 // 175 fHistoManager->PrintStatistic(); 132 fHistoManager->PrintStatistic(); 176 fHistoManager->Save(); << 133 fHistoManager->Save(); 177 } 134 } 178 135 179 //....oooOO0OOooo........oooOO0OOooo........oo 136 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 180 137