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 exoticphysics/dmparticle/src/RunActi 26 /// \file exoticphysics/dmparticle/src/RunAction.cc 27 /// \brief Implementation of the RunAction cla 27 /// \brief Implementation of the RunAction class 28 // 28 // 29 // 29 // 30 //-------------------------------------------- 30 //--------------------------------------------------------------------------- 31 // 31 // 32 // ClassName: RunAction 32 // ClassName: RunAction 33 // 33 // 34 // Author: V.Ivanchenko 01.09.2010 34 // Author: V.Ivanchenko 01.09.2010 35 // 35 // 36 //-------------------------------------------- 36 //---------------------------------------------------------------------------- 37 // 37 // 38 38 39 //....oooOO0OOooo........oooOO0OOooo........oo 39 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 40 //....oooOO0OOooo........oooOO0OOooo........oo 40 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 41 41 42 #include "RunAction.hh" 42 #include "RunAction.hh" 43 << 44 #include "Run.hh" 43 #include "Run.hh" 45 #include "TestParameters.hh" 44 #include "TestParameters.hh" 46 << 47 #include "G4Run.hh" 45 #include "G4Run.hh" 48 #include "G4RunManager.hh" 46 #include "G4RunManager.hh" 49 #include "G4SystemOfUnits.hh" 47 #include "G4SystemOfUnits.hh" 50 48 51 //....oooOO0OOooo........oooOO0OOooo........oo 49 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 52 50 53 RunAction::RunAction() : G4UserRunAction(), fA << 51 RunAction::RunAction() >> 52 : G4UserRunAction(), fAnalysisManager(nullptr), fRun(nullptr) 54 { 53 { 55 TestParameters::GetPointer(); 54 TestParameters::GetPointer(); 56 fAnalysisManager = G4AnalysisManager::Instan 55 fAnalysisManager = G4AnalysisManager::Instance(); 57 fAnalysisManager->SetFileName("dmp.root"); 56 fAnalysisManager->SetFileName("dmp.root"); 58 fAnalysisManager->SetVerboseLevel(1); 57 fAnalysisManager->SetVerboseLevel(1); 59 fAnalysisManager->SetActivation(true); 58 fAnalysisManager->SetActivation(true); 60 } 59 } 61 60 62 //....oooOO0OOooo........oooOO0OOooo........oo 61 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 63 62 64 RunAction::~RunAction() {} << 63 RunAction::~RunAction() >> 64 {} 65 65 66 //....oooOO0OOooo........oooOO0OOooo........oo 66 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 67 67 68 void RunAction::Book() 68 void RunAction::Book() 69 { 69 { 70 // Always creating analysis manager 70 // Always creating analysis manager 71 TestParameters* param = TestParameters::GetP 71 TestParameters* param = TestParameters::GetPointer(); 72 G4int nBinsE = param->GetNumberBins(); 72 G4int nBinsE = param->GetNumberBins(); 73 G4double maxEnergy = param->GetMaxEnergy(); 73 G4double maxEnergy = param->GetMaxEnergy(); 74 74 75 // Creating an 1-dimensional histograms in t 75 // Creating an 1-dimensional histograms in the root directory of the tree 76 fAnalysisManager->SetFirstHistoId(1); << 76 fAnalysisManager->SetFirstHistoId(1); 77 fAnalysisManager->CreateH1("h1", "Energy dep << 77 fAnalysisManager->CreateH1("h1","Energy deposition in detector (GeV)", 78 maxEnergy / GeV); << 78 nBinsE,0.0,maxEnergy/GeV); 79 fAnalysisManager->OpenFile(); << 79 fAnalysisManager->OpenFile(); 80 } 80 } 81 81 82 //....oooOO0OOooo........oooOO0OOooo........oo 82 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 83 83 84 G4Run* RunAction::GenerateRun() 84 G4Run* RunAction::GenerateRun() 85 { << 85 { 86 fRun = new Run(); << 86 fRun = new Run(); 87 return fRun; 87 return fRun; 88 } 88 } 89 89 90 //....oooOO0OOooo........oooOO0OOooo........oo 90 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 91 91 92 void RunAction::BeginOfRunAction(const G4Run* 92 void RunAction::BeginOfRunAction(const G4Run* aRun) 93 { 93 { 94 G4int id = aRun->GetRunID(); 94 G4int id = aRun->GetRunID(); 95 G4cout << "### Run " << id << " start analys << 95 G4cout << "### Run " << id << " start analysis activation: " >> 96 << G4endl; 96 97 97 fRun->BeginOfRun(); 98 fRun->BeginOfRun(); 98 99 99 // histograms << 100 //histograms 100 Book(); 101 Book(); 101 } 102 } 102 103 103 //....oooOO0OOooo........oooOO0OOooo........oo 104 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 104 105 105 void RunAction::EndOfRunAction(const G4Run*) 106 void RunAction::EndOfRunAction(const G4Run*) 106 { 107 { 107 // print Run summary 108 // print Run summary 108 G4cout << "RunAction: End of run actions are << 109 G4cout << "RunAction: End of run actions are started " << isMaster 109 << " Nevt= " << fRun->GetNumberOfEv << 110 << " Nevt= " << fRun->GetNumberOfEvent() 110 << G4endl; << 111 << " Edep= " << fRun->GetStat()->mean() << G4endl; 111 if (isMaster) { 112 if (isMaster) { 112 fRun->EndOfRun(); << 113 fRun->EndOfRun(); 113 } 114 } 114 // save histos and close analysis 115 // save histos and close analysis 115 if (fAnalysisManager->IsActive()) { << 116 if (fAnalysisManager->IsActive()) { 116 fAnalysisManager->Write(); 117 fAnalysisManager->Write(); 117 fAnalysisManager->CloseFile(); 118 fAnalysisManager->CloseFile(); 118 fAnalysisManager->Clear(); 119 fAnalysisManager->Clear(); 119 } 120 } 120 } 121 } 121 122 122 //....oooOO0OOooo........oooOO0OOooo........oo 123 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 123 124