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 // 26 // 27 /// \file B4/B4b/src/RunAction.cc << 27 /// \file RunAction.cc 28 /// \brief Implementation of the B4b::RunActio 28 /// \brief Implementation of the B4b::RunAction class 29 29 30 #include "RunAction.hh" 30 #include "RunAction.hh" 31 << 32 #include "RunData.hh" 31 #include "RunData.hh" 33 32 34 #include "G4AnalysisManager.hh" 33 #include "G4AnalysisManager.hh" 35 #include "G4Run.hh" 34 #include "G4Run.hh" 36 #include "G4RunManager.hh" 35 #include "G4RunManager.hh" 37 #include "G4SystemOfUnits.hh" << 38 #include "G4UnitsTable.hh" 36 #include "G4UnitsTable.hh" 39 #include "globals.hh" << 37 #include "G4SystemOfUnits.hh" 40 38 41 namespace B4b 39 namespace B4b 42 { 40 { 43 41 44 //....oooOO0OOooo........oooOO0OOooo........oo 42 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 45 43 46 RunAction::RunAction() 44 RunAction::RunAction() 47 { 45 { 48 // set printing event number per each event 46 // set printing event number per each event 49 G4RunManager::GetRunManager()->SetPrintProgr 47 G4RunManager::GetRunManager()->SetPrintProgress(1); 50 48 51 // Create analysis manager 49 // Create analysis manager 52 // The choice of analysis technology is done 50 // The choice of analysis technology is done via selectin of a namespace 53 // in Analysis.hh 51 // in Analysis.hh 54 auto analysisManager = G4AnalysisManager::In 52 auto analysisManager = G4AnalysisManager::Instance(); 55 53 56 // Create directories 54 // Create directories 57 // analysisManager->SetHistoDirectoryName("h << 55 //analysisManager->SetHistoDirectoryName("histograms"); 58 // analysisManager->SetNtupleDirectoryName(" << 56 //analysisManager->SetNtupleDirectoryName("ntuple"); 59 analysisManager->SetVerboseLevel(1); 57 analysisManager->SetVerboseLevel(1); 60 analysisManager->SetNtupleMerging(true); 58 analysisManager->SetNtupleMerging(true); 61 // Note: merging ntuples is available only w << 59 // Note: merging ntuples is available only with Root output 62 60 63 // Book histograms, ntuple 61 // Book histograms, ntuple 64 // 62 // 65 63 66 // Creating histograms 64 // Creating histograms 67 analysisManager->CreateH1("Eabs", "Edep in a << 65 analysisManager->CreateH1("Eabs","Edep in absorber", 100, 0., 800*MeV); 68 analysisManager->CreateH1("Egap", "Edep in g << 66 analysisManager->CreateH1("Egap","Edep in gap", 100, 0., 100*MeV); 69 analysisManager->CreateH1("Labs", "trackL in << 67 analysisManager->CreateH1("Labs","trackL in absorber", 100, 0., 1*m); 70 analysisManager->CreateH1("Lgap", "trackL in << 68 analysisManager->CreateH1("Lgap","trackL in gap", 100, 0., 50*cm); 71 69 72 // Creating ntuple 70 // Creating ntuple 73 // 71 // 74 analysisManager->CreateNtuple("B4", "Edep an 72 analysisManager->CreateNtuple("B4", "Edep and TrackL"); 75 analysisManager->CreateNtupleDColumn("Eabs") 73 analysisManager->CreateNtupleDColumn("Eabs"); 76 analysisManager->CreateNtupleDColumn("Egap") 74 analysisManager->CreateNtupleDColumn("Egap"); 77 analysisManager->CreateNtupleDColumn("Labs") 75 analysisManager->CreateNtupleDColumn("Labs"); 78 analysisManager->CreateNtupleDColumn("Lgap") 76 analysisManager->CreateNtupleDColumn("Lgap"); 79 analysisManager->FinishNtuple(); 77 analysisManager->FinishNtuple(); 80 } 78 } 81 79 82 //....oooOO0OOooo........oooOO0OOooo........oo 80 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 83 81 >> 82 RunAction::~RunAction() >> 83 { >> 84 } >> 85 >> 86 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... >> 87 84 G4Run* RunAction::GenerateRun() 88 G4Run* RunAction::GenerateRun() 85 { 89 { 86 return (new RunData); 90 return (new RunData); 87 } 91 } 88 92 89 //....oooOO0OOooo........oooOO0OOooo........oo 93 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 90 94 91 void RunAction::BeginOfRunAction(const G4Run* 95 void RunAction::BeginOfRunAction(const G4Run* run) 92 { 96 { 93 G4cout << "### Run " << run->GetRunID() << " 97 G4cout << "### Run " << run->GetRunID() << " start." << G4endl; 94 98 95 // inform the runManager to save random numb << 99 //inform the runManager to save random number seed 96 // G4RunManager::GetRunManager()->SetRandomN << 100 //G4RunManager::GetRunManager()->SetRandomNumberStore(true); 97 101 98 // Get analysis manager 102 // Get analysis manager 99 auto analysisManager = G4AnalysisManager::In 103 auto analysisManager = G4AnalysisManager::Instance(); 100 104 101 // Open an output file 105 // Open an output file 102 // 106 // 103 G4String fileName = "B4.root"; 107 G4String fileName = "B4.root"; 104 // Other supported output types: 108 // Other supported output types: 105 // G4String fileName = "B4.csv"; 109 // G4String fileName = "B4.csv"; 106 // G4String fileName = "B4.hdf5"; 110 // G4String fileName = "B4.hdf5"; 107 // G4String fileName = "B4.xml"; 111 // G4String fileName = "B4.xml"; 108 analysisManager->OpenFile(fileName); 112 analysisManager->OpenFile(fileName); 109 G4cout << "Using " << analysisManager->GetTy 113 G4cout << "Using " << analysisManager->GetType() << G4endl; 110 } 114 } 111 115 112 //....oooOO0OOooo........oooOO0OOooo........oo 116 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 113 117 114 void RunAction::EndOfRunAction(const G4Run* /* << 118 void RunAction::EndOfRunAction(const G4Run* /*aRun*/) 115 { 119 { 116 // print histogram statistics 120 // print histogram statistics 117 // 121 // 118 auto analysisManager = G4AnalysisManager::In 122 auto analysisManager = G4AnalysisManager::Instance(); 119 if (analysisManager->GetH1(1)) { << 123 if ( analysisManager->GetH1(1) ) { 120 G4cout << G4endl << " ----> print histogra 124 G4cout << G4endl << " ----> print histograms statistic "; 121 if (isMaster) { << 125 if(isMaster) { 122 G4cout << "for the entire run " << G4end 126 G4cout << "for the entire run " << G4endl << G4endl; 123 } 127 } 124 else { 128 else { 125 G4cout << "for the local thread " << G4e 129 G4cout << "for the local thread " << G4endl << G4endl; 126 } 130 } 127 131 128 G4cout << " EAbs : mean = " << G4BestUnit( << 132 G4cout << " EAbs : mean = " 129 << " rms = " << G4BestUnit(analysis << 133 << G4BestUnit(analysisManager->GetH1(0)->mean(), "Energy") 130 << 134 << " rms = " 131 G4cout << " EGap : mean = " << G4BestUnit( << 135 << G4BestUnit(analysisManager->GetH1(0)->rms(), "Energy") << G4endl; 132 << " rms = " << G4BestUnit(analysis << 136 133 << 137 G4cout << " EGap : mean = " 134 G4cout << " LAbs : mean = " << G4BestUnit( << 138 << G4BestUnit(analysisManager->GetH1(1)->mean(), "Energy") 135 << " rms = " << G4BestUnit(analysis << 139 << " rms = " 136 << 140 << G4BestUnit(analysisManager->GetH1(1)->rms(), "Energy") << G4endl; 137 G4cout << " LGap : mean = " << G4BestUnit( << 141 138 << " rms = " << G4BestUnit(analysis << 142 G4cout << " LAbs : mean = " >> 143 << G4BestUnit(analysisManager->GetH1(2)->mean(), "Length") >> 144 << " rms = " >> 145 << G4BestUnit(analysisManager->GetH1(2)->rms(), "Length") << G4endl; >> 146 >> 147 G4cout << " LGap : mean = " >> 148 << G4BestUnit(analysisManager->GetH1(3)->mean(), "Length") >> 149 << " rms = " >> 150 << G4BestUnit(analysisManager->GetH1(3)->rms(), "Length") << G4endl; 139 } 151 } 140 152 141 // save histograms & ntuple 153 // save histograms & ntuple 142 // 154 // 143 analysisManager->Write(); 155 analysisManager->Write(); 144 analysisManager->CloseFile(); 156 analysisManager->CloseFile(); >> 157 145 } 158 } 146 159 147 //....oooOO0OOooo........oooOO0OOooo........oo 160 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 148 161 149 } // namespace B4b << 162 } 150 163