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" >> 39 #include "G4AccumulableManager.hh" 41 #include "G4UnitsTable.hh" 40 #include "G4UnitsTable.hh" 42 41 43 //....oooOO0OOooo........oooOO0OOooo........oo 42 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 44 43 45 RunAction::RunAction(HistoManager* histo) : fH << 44 RunAction::RunAction(HistoManager* histo) >> 45 : fHistoManager(histo) 46 { 46 { 47 // Register accumulable to the accumulable m 47 // Register accumulable to the accumulable manager 48 G4AccumulableManager* accumulableManager = G 48 G4AccumulableManager* accumulableManager = G4AccumulableManager::Instance(); 49 accumulableManager->Register(fSumEAbs); << 49 accumulableManager->RegisterAccumulable(fSumEAbs); 50 accumulableManager->Register(fSum2EAbs); << 50 accumulableManager->RegisterAccumulable(fSum2EAbs); 51 accumulableManager->Register(fSumEGap); << 51 accumulableManager->RegisterAccumulable(fSumEGap); 52 accumulableManager->Register(fSum2EGap); << 52 accumulableManager->RegisterAccumulable(fSum2EGap); 53 accumulableManager->Register(fSumLAbs); << 53 accumulableManager->RegisterAccumulable(fSumLAbs); 54 accumulableManager->Register(fSum2LAbs); << 54 accumulableManager->RegisterAccumulable(fSum2LAbs); 55 accumulableManager->Register(fSumLGap); << 55 accumulableManager->RegisterAccumulable(fSumLGap); 56 accumulableManager->Register(fSum2LGap); << 56 accumulableManager->RegisterAccumulable(fSum2LGap); 57 } 57 } 58 58 59 //....oooOO0OOooo........oooOO0OOooo........oo 59 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 60 60 61 RunAction::~RunAction() = default; 61 RunAction::~RunAction() = default; 62 62 63 //....oooOO0OOooo........oooOO0OOooo........oo 63 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 64 64 65 void RunAction::BeginOfRunAction(const G4Run* 65 void RunAction::BeginOfRunAction(const G4Run* aRun) 66 { 66 { 67 G4cout << "### Run " << aRun->GetRunID() << 67 G4cout << "### Run " << aRun->GetRunID() << " start." << G4endl; 68 68 69 // reset accumulables to their initial value 69 // reset accumulables to their initial values 70 G4AccumulableManager::Instance()->Reset(); 70 G4AccumulableManager::Instance()->Reset(); 71 71 72 // histograms << 72 //histograms 73 // 73 // 74 fHistoManager->Book(); 74 fHistoManager->Book(); 75 } 75 } 76 76 77 //....oooOO0OOooo........oooOO0OOooo........oo 77 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 78 78 79 void RunAction::FillPerEvent(G4double EAbs, G4 << 79 void RunAction::FillPerEvent(G4double EAbs, G4double EGap, >> 80 G4double LAbs, G4double LGap) 80 { 81 { 81 // accumulate statistic << 82 //accumulate statistic 82 // 83 // 83 fSumEAbs += EAbs; << 84 fSumEAbs += EAbs; fSum2EAbs += EAbs*EAbs; 84 fSum2EAbs += EAbs * EAbs; << 85 fSumEGap += EGap; fSum2EGap += EGap*EGap; 85 fSumEGap += EGap; << 86 86 fSum2EGap += EGap * EGap; << 87 fSumLAbs += LAbs; fSum2LAbs += LAbs*LAbs; 87 << 88 fSumLGap += LGap; fSum2LGap += LGap*LGap; 88 fSumLAbs += LAbs; << 89 fSum2LAbs += LAbs * LAbs; << 90 fSumLGap += LGap; << 91 fSum2LGap += LGap * LGap; << 92 } 89 } 93 90 94 //....oooOO0OOooo........oooOO0OOooo........oo 91 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 95 92 96 void RunAction::EndOfRunAction(const G4Run* aR 93 void RunAction::EndOfRunAction(const G4Run* aRun) 97 { 94 { 98 // Merge accumulables 95 // Merge accumulables 99 G4AccumulableManager::Instance()->Merge(); 96 G4AccumulableManager::Instance()->Merge(); 100 97 101 G4int nofEvents = aRun->GetNumberOfEvent(); 98 G4int nofEvents = aRun->GetNumberOfEvent(); 102 if (nofEvents == 0) { 99 if (nofEvents == 0) { 103 // close open files 100 // close open files 104 fHistoManager->Save(); 101 fHistoManager->Save(); 105 return; 102 return; 106 } 103 } 107 104 108 // compute statistics: mean and rms << 105 //compute statistics: mean and rms 109 // 106 // 110 auto sumEAbs = fSumEAbs.GetValue(); 107 auto sumEAbs = fSumEAbs.GetValue(); 111 auto sum2EAbs = fSum2EAbs.GetValue(); 108 auto sum2EAbs = fSum2EAbs.GetValue(); 112 sumEAbs /= nofEvents; << 109 sumEAbs /= nofEvents; sum2EAbs /= nofEvents; 113 sum2EAbs /= nofEvents; << 110 auto rmsEAbs = sum2EAbs - sumEAbs*sumEAbs; 114 auto rmsEAbs = sum2EAbs - sumEAbs * sumEAbs; << 111 if (rmsEAbs >0.) { 115 if (rmsEAbs > 0.) { << 116 rmsEAbs = std::sqrt(rmsEAbs); 112 rmsEAbs = std::sqrt(rmsEAbs); 117 } << 113 } else { 118 else { << 119 rmsEAbs = 0.; 114 rmsEAbs = 0.; 120 } 115 } 121 116 122 auto sumEGap = fSumEGap.GetValue(); 117 auto sumEGap = fSumEGap.GetValue(); 123 auto sum2EGap = fSum2EGap.GetValue(); 118 auto sum2EGap = fSum2EGap.GetValue(); 124 sumEGap /= nofEvents; << 119 sumEGap /= nofEvents; sum2EGap /= nofEvents; 125 sum2EGap /= nofEvents; << 120 auto rmsEGap = sum2EGap - sumEGap*sumEGap; 126 auto rmsEGap = sum2EGap - sumEGap * sumEGap; << 121 if (rmsEGap >0.) { 127 if (rmsEGap > 0.) { << 128 rmsEGap = std::sqrt(rmsEGap); 122 rmsEGap = std::sqrt(rmsEGap); 129 } << 123 } else { 130 else { << 131 rmsEGap = 0.; 124 rmsEGap = 0.; 132 } 125 } 133 126 134 auto sumLAbs = fSumLAbs.GetValue(); 127 auto sumLAbs = fSumLAbs.GetValue(); 135 auto sum2LAbs = fSum2LAbs.GetValue(); 128 auto sum2LAbs = fSum2LAbs.GetValue(); 136 sumLAbs /= nofEvents; << 129 sumLAbs /= nofEvents; sum2LAbs /= nofEvents; 137 sum2LAbs /= nofEvents; << 130 auto rmsLAbs = sum2LAbs - sumLAbs*sumLAbs; 138 auto rmsLAbs = sum2LAbs - sumLAbs * sumLAbs; << 131 if (rmsLAbs >0.) { 139 if (rmsLAbs > 0.) { << 140 rmsLAbs = std::sqrt(rmsLAbs); 132 rmsLAbs = std::sqrt(rmsLAbs); 141 } << 133 } else { 142 else { << 143 rmsLAbs = 0.; 134 rmsLAbs = 0.; 144 } 135 } 145 136 146 auto sumLGap = fSumLGap.GetValue(); 137 auto sumLGap = fSumLGap.GetValue(); 147 auto sum2LGap = fSum2LGap.GetValue(); 138 auto sum2LGap = fSum2LGap.GetValue(); 148 sumLGap /= nofEvents; << 139 sumLGap /= nofEvents; sum2LGap /= nofEvents; 149 sum2LGap /= nofEvents; << 140 G4double rmsLGap = sum2LGap - sumLGap*sumLGap; 150 G4double rmsLGap = sum2LGap - sumLGap * sumL << 141 if (rmsLGap >0.) { 151 if (rmsLGap > 0.) { << 152 rmsLGap = std::sqrt(rmsLGap); 142 rmsLGap = std::sqrt(rmsLGap); 153 } << 143 } else { 154 else { << 155 rmsLGap = 0.; 144 rmsLGap = 0.; 156 } 145 } 157 146 158 // print << 147 //print 159 // 148 // 160 G4cout << "\n--------------------End of Run- << 149 G4cout 161 << "\n mean Energy in Absorber : " << << 150 << "\n--------------------End of Run------------------------------\n" 162 << G4BestUnit(rmsEAbs, "Energy") << 151 << "\n mean Energy in Absorber : " << G4BestUnit(sumEAbs,"Energy") 163 << "\n mean Energy in Gap : " << << 152 << " +- " << G4BestUnit(rmsEAbs,"Energy") 164 << G4BestUnit(rmsEGap, "Energy") << G << 153 << "\n mean Energy in Gap : " << G4BestUnit(sumEGap,"Energy") 165 << 154 << " +- " << G4BestUnit(rmsEGap,"Energy") 166 G4cout << "\n mean trackLength in Absorber : << 155 << G4endl; 167 << G4BestUnit(rmsLAbs, "Length") << 156 168 << "\n mean trackLength in Gap : << 157 G4cout 169 << G4BestUnit(rmsLGap, "Length") << 158 << "\n mean trackLength in Absorber : " << G4BestUnit(sumLAbs,"Length") 170 << "\n------------------------------- << 159 << " +- " << G4BestUnit(rmsLAbs,"Length") 171 << G4endl; << 160 << "\n mean trackLength in Gap : " << G4BestUnit(sumLGap,"Length") >> 161 << " +- " << G4BestUnit(rmsLGap,"Length") >> 162 << "\n------------------------------------------------------------\n" >> 163 << G4endl; 172 164 173 // save histograms << 165 //save histograms 174 // 166 // 175 fHistoManager->PrintStatistic(); 167 fHistoManager->PrintStatistic(); 176 fHistoManager->Save(); 168 fHistoManager->Save(); 177 } 169 } 178 170 179 //....oooOO0OOooo........oooOO0OOooo........oo 171 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 180 172