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/TestEm8/src/RunActio << 26 // $Id: RunAction.cc,v 1.1 2010-09-08 11:23:53 vnivanch Exp $ 27 /// \brief Implementation of the RunAction cla << 27 // GEANT4 tag $Name: not supported by cvs2svn $ 28 // << 29 // 28 // 30 //-------------------------------------------- 29 //--------------------------------------------------------------------------- 31 // 30 // 32 // ClassName: RunAction 31 // ClassName: RunAction 33 // 32 // 34 // Author: V.Ivanchenko 01.09.2010 33 // Author: V.Ivanchenko 01.09.2010 35 // 34 // 36 //-------------------------------------------- 35 //---------------------------------------------------------------------------- 37 // 36 // 38 37 39 //....oooOO0OOooo........oooOO0OOooo........oo << 38 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 40 //....oooOO0OOooo........oooOO0OOooo........oo << 39 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 41 40 42 #include "RunAction.hh" 41 #include "RunAction.hh" >> 42 #include "HistoManager.hh" >> 43 #include "G4UImanager.hh" >> 44 #include "G4VVisManager.hh" 43 45 44 #include "Run.hh" << 46 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 45 #include "TestParameters.hh" << 46 << 47 #include "G4Run.hh" << 48 #include "G4RunManager.hh" << 49 #include "G4SystemOfUnits.hh" << 50 #include "Randomize.hh" << 51 << 52 //....oooOO0OOooo........oooOO0OOooo........oo << 53 47 54 RunAction::RunAction() 48 RunAction::RunAction() 55 { << 49 {} 56 TestParameters::GetPointer(); << 57 fAnalysisManager = G4AnalysisManager::Instan << 58 fAnalysisManager->SetDefaultFileType("root") << 59 fAnalysisManager->SetFileName("testem8"); << 60 fAnalysisManager->SetVerboseLevel(1); << 61 fAnalysisManager->SetActivation(true); << 62 } << 63 50 64 //....oooOO0OOooo........oooOO0OOooo........oo << 51 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 65 52 66 void RunAction::Book() << 53 RunAction::~RunAction() 67 { << 54 {} 68 // Always creating analysis manager << 69 TestParameters* param = TestParameters::GetP << 70 G4int nBinsE = param->GetNumberBins(); << 71 G4int nBinsCluster = param->GetNumberBinsClu << 72 G4int nMaxCluster = param->GetMaxCluster(); << 73 G4double maxEnergy = param->GetMaxEnergy(); << 74 G4double factorALICE = param->GetFactorALICE << 75 << 76 // G4cout << "### maxenergy(keV)= " << maxEn << 77 // << " factorALICE= " << factorAL << 78 << 79 // Creating an 1-dimensional histograms in t << 80 fAnalysisManager->SetFirstHistoId(1); << 81 fAnalysisManager->CreateH1("h1", "Energy dep << 82 maxEnergy / keV); << 83 fAnalysisManager->CreateH1("h2", "Number of << 84 G4double(nMaxClus << 85 fAnalysisManager->CreateH1("h3", "Energy dep << 86 maxEnergy * facto << 87 fAnalysisManager->OpenFile(); << 88 } << 89 55 90 //....oooOO0OOooo........oooOO0OOooo........oo << 56 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 91 << 92 G4Run* RunAction::GenerateRun() << 93 { << 94 fRun = new Run(); << 95 return fRun; << 96 } << 97 << 98 //....oooOO0OOooo........oooOO0OOooo........oo << 99 57 100 void RunAction::BeginOfRunAction(const G4Run* 58 void RunAction::BeginOfRunAction(const G4Run* aRun) 101 { 59 { 102 G4int id = aRun->GetRunID(); 60 G4int id = aRun->GetRunID(); 103 G4cout << "### Run " << id << " start analys << 61 G4cout << "### Run " << id << " start" << G4endl; >> 62 (HistoManager::GetPointer())->BeginOfRun(); >> 63 >> 64 #ifdef G4VIS_USE >> 65 G4UImanager* UI = G4UImanager::GetUIpointer(); 104 66 105 fRun->BeginOfRun(); << 67 G4VVisManager* pVVisManager = G4VVisManager::GetConcreteInstance(); >> 68 >> 69 if(pVVisManager) >> 70 { >> 71 UI->ApplyCommand("/vis/scene/notifyHandlers"); >> 72 } >> 73 #endif 106 74 107 // histograms << 108 Book(); << 109 } 75 } 110 76 111 //....oooOO0OOooo........oooOO0OOooo........oo << 77 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 112 78 113 void RunAction::EndOfRunAction(const G4Run*) 79 void RunAction::EndOfRunAction(const G4Run*) 114 { 80 { 115 // print Run summary << 81 G4cout << "RunAction: End of run actions are started" << G4endl; 116 G4cout << "RunAction: End of run actions are << 82 (HistoManager::GetPointer())->EndOfRun(); 117 << " Nevt= " << fRun->GetNumberOfEv << 83 118 << G4endl; << 84 #ifdef G4VIS_USE 119 if (isMaster) { << 85 if (G4VVisManager::GetConcreteInstance()) { 120 fRun->EndOfRun(); << 86 G4UImanager::GetUIpointer()->ApplyCommand("/vis/viewer/update"); 121 } << 122 // save histos and close analysis << 123 if (fAnalysisManager->IsActive()) { << 124 fAnalysisManager->Write(); << 125 fAnalysisManager->CloseFile(); << 126 fAnalysisManager->Clear(); << 127 } 87 } >> 88 #endif 128 } 89 } 129 90 130 //....oooOO0OOooo........oooOO0OOooo........oo << 91 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 131 92