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 electromagnetic/TestEm16/src/RunActi << 26 // $Id: RunAction.cc,v 1.6 2006/06/29 16:48:02 gunter Exp $ 27 /// \brief Implementation of the RunAction cla << 27 // GEANT4 tag $Name: geant4-08-01-patch-01 $ 28 // << 29 // 28 // 30 //....oooOO0OOooo........oooOO0OOooo........oo 29 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 31 //....oooOO0OOooo........oooOO0OOooo........oo 30 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 32 31 33 #include "RunAction.hh" 32 #include "RunAction.hh" 34 33 35 #include "HistoManager.hh" << 36 #include "Run.hh" << 37 << 38 #include "G4Run.hh" 34 #include "G4Run.hh" 39 #include "G4RunManager.hh" 35 #include "G4RunManager.hh" >> 36 #include "G4UnitsTable.hh" >> 37 40 #include "Randomize.hh" 38 #include "Randomize.hh" 41 39 >> 40 #ifdef G4ANALYSIS_USE >> 41 #include "AIDA/AIDA.h" >> 42 #endif >> 43 42 //....oooOO0OOooo........oooOO0OOooo........oo 44 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 43 45 44 RunAction::RunAction() : G4UserRunAction() << 46 RunAction::RunAction() >> 47 :af(0), tree(0) 45 { 48 { 46 fHistoManager = new HistoManager(); << 49 for (G4int j=0; j<n_histos; j++) histo[j] = 0; >> 50 n_gam_sync = 0; >> 51 e_gam_sync = 0; >> 52 e_gam_sync2 = 0; >> 53 e_gam_sync_max =0; >> 54 lam_gam_sync = 0; >> 55 >> 56 #ifdef G4ANALYSIS_USE >> 57 // Creating the analysis factory >> 58 af = AIDA_createAnalysisFactory(); >> 59 >> 60 if (af) { >> 61 // Creating the tree factory >> 62 AIDA::ITreeFactory* tf = af->createTreeFactory(); >> 63 >> 64 // Creating a tree mapped to an hbook file. >> 65 G4bool readOnly = false; >> 66 G4bool createNew = true; >> 67 G4String options = "--noErrors uncompress"; >> 68 tree = tf->create("testem16.hbook","hbook",readOnly,createNew,options); >> 69 //tree = tf->create("testem16.root", "root",readOnly,createNew,options); >> 70 //tree = tf->create("testem16.xml" ,"xml" ,readOnly,createNew,options); >> 71 delete tf; >> 72 >> 73 if (tree) { >> 74 // Creating a histogram factory >> 75 AIDA::IHistogramFactory* hf = af->createHistogramFactory(*tree); >> 76 >> 77 // Creating histograms >> 78 const G4double Ecr=66.5025; >> 79 histo[0] = hf->createHistogram1D("1","SynRad Energy in keV",100, 0 ,5.*Ecr); >> 80 histo[1] = hf->createHistogram1D("2","SynRad Power in keV",100, 0 ,5.*Ecr); >> 81 histo[2] = hf->createHistogram1D("3","Path Length in m",100, 0, 1.6); >> 82 >> 83 delete hf; >> 84 G4cout << "\n----> Histogram tree is opened" << G4endl; >> 85 } >> 86 } >> 87 G4cout << "G4ANALYSIS_USE was set, there will be AIDA histos" << '\n'; >> 88 #else >> 89 G4cout << "G4ANALYSIS_USE was not set, there will be no AIDA histos" << '\n'; >> 90 #endif 47 } 91 } 48 92 49 //....oooOO0OOooo........oooOO0OOooo........oo 93 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 50 94 51 G4Run* RunAction::GenerateRun() << 95 RunAction::~RunAction() 52 { 96 { 53 fRun = new Run(); << 97 54 return fRun; << 98 #ifdef G4ANALYSIS_USE >> 99 bool debug=true; >> 100 bool Commit_Ok=tree->commit(); // Writing the histograms to the file >> 101 if (Commit_Ok) >> 102 { if(debug) G4cout << "tree->commit() ok. Writing of histogram file done" >> 103 << '\n'; >> 104 } >> 105 else if(!Commit_Ok) >> 106 { G4cout << "tree->commit() not successful, no histogram file written" >> 107 << '\n'; >> 108 } >> 109 tree->close(); // and closing the tree (and the file) >> 110 >> 111 delete tree; >> 112 delete af; >> 113 #endif 55 } 114 } 56 115 57 //....oooOO0OOooo........oooOO0OOooo........oo 116 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 58 117 59 void RunAction::BeginOfRunAction(const G4Run*) << 118 void RunAction::BeginOfRunAction(const G4Run* aRun) 60 { 119 { 61 // save Rndm status << 120 G4cout << "### Run " << aRun->GetRunID() << " start." << G4endl; 62 ////G4RunManager::GetRunManager()->SetRandom << 63 if (isMaster) CLHEP::HepRandom::showEngineSt << 64 121 65 // histograms << 122 // save Rndm status 66 // << 123 G4RunManager::GetRunManager()->SetRandomNumberStore(true); 67 G4AnalysisManager* analysisManager = G4Analy << 124 CLHEP::HepRandom::showEngineStatus(); 68 if (analysisManager->IsActive()) { << 69 analysisManager->OpenFile(); << 70 } << 71 } 125 } 72 126 73 //....oooOO0OOooo........oooOO0OOooo........oo 127 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 74 128 75 void RunAction::EndOfRunAction(const G4Run*) 129 void RunAction::EndOfRunAction(const G4Run*) 76 { 130 { 77 // compute and print statistic << 131 if(n_gam_sync>0) 78 if (isMaster) fRun->EndOfRun(); << 132 { 79 << 133 G4double Emean = e_gam_sync/n_gam_sync; 80 // show Rndm status << 134 G4double E_rms = std::sqrt(e_gam_sync2/n_gam_sync - Emean*Emean); 81 if (isMaster) CLHEP::HepRandom::showEngineSt << 135 G4cout 82 << 136 << "Summary for synchrotron radiation :" << '\n' << std::setprecision(4) 83 // save histograms << 137 << " Number of photons = " << n_gam_sync << '\n' 84 G4AnalysisManager* analysisManager = G4Analy << 138 << " Emean = " << Emean/keV << " +/- " 85 if (analysisManager->IsActive()) { << 139 << E_rms/(keV * std::sqrt((G4double) n_gam_sync)) << " keV" << '\n' 86 G4String FileName = analysisManager->GetFi << 140 << " E_rms = " << G4BestUnit(E_rms,"Energy") << '\n' 87 if (FileName.find("TestReflection") != std << 141 << " Energy Max / Mean = " << e_gam_sync_max / Emean << '\n' 88 std::ostringstream ostr; << 142 << " MeanFreePath = " << G4BestUnit(lam_gam_sync/n_gam_sync,"Length") 89 ostr << std::setfill('0') << std::right << 143 << G4endl; 90 // FileName="TestReflection"+ToString(fR << 91 // RunID to histogram name << 92 FileName = << 93 "TestReflection_" + ostr.str() + ".roo << 94 << 95 analysisManager->SetFileName(FileName); << 96 } << 97 analysisManager->Write(); << 98 analysisManager->CloseFile(); << 99 } 144 } >> 145 >> 146 // show Rndm status >> 147 CLHEP::HepRandom::showEngineStatus(); 100 } 148 } 101 149 102 //....oooOO0OOooo........oooOO0OOooo........oo 150 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 103 151