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 Par02RunAction.cc 27 /// \file Par02RunAction.cc 28 /// \brief Implementation of the Par02RunActio 28 /// \brief Implementation of the Par02RunAction class 29 29 30 #include "Par02RunAction.hh" << 31 << 32 #include "Par02Output.hh" 30 #include "Par02Output.hh" 33 << 31 #include "Par02RunAction.hh" 34 #include "G4Run.hh" 32 #include "G4Run.hh" 35 #include "G4SystemOfUnits.hh" << 36 #include "G4UnitsTable.hh" 33 #include "G4UnitsTable.hh" >> 34 #include "G4SystemOfUnits.hh" 37 35 38 //....oooOO0OOooo........oooOO0OOooo........oo 36 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 39 37 40 Par02RunAction::Par02RunAction(const G4String << 38 Par02RunAction::Par02RunAction( const G4String aOutName ) : 41 { << 39 G4UserRunAction() { 42 Par02Output::Instance()->SetFileName(aOutNam << 40 Par02Output::Instance()->SetFileName( aOutName ); 43 } 41 } 44 42 45 //....oooOO0OOooo........oooOO0OOooo........oo 43 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 46 44 47 Par02RunAction::~Par02RunAction() << 45 Par02RunAction::~Par02RunAction() { 48 { << 46 #ifdef G4MULTITHREADED 49 #ifdef G4MULTITHREADED << 47 if ( isMaster ) delete Par02Output::Instance(); 50 if (isMaster) delete Par02Output::Instance() << 48 #else 51 #else << 52 delete Par02Output::Instance(); 49 delete Par02Output::Instance(); 53 #endif << 50 #endif 54 } 51 } 55 52 56 //....oooOO0OOooo........oooOO0OOooo........oo 53 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 57 54 58 void Par02RunAction::BeginOfRunAction(const G4 << 55 void Par02RunAction::BeginOfRunAction( const G4Run* aRun ) { 59 { << 56 Par02Output::Instance()->StartAnalysis( aRun->GetRunID() ); 60 Par02Output::Instance()->StartAnalysis(aRun- << 61 Par02Output::Instance()->CreateHistograms(); 57 Par02Output::Instance()->CreateHistograms(); 62 } 58 } 63 59 64 //....oooOO0OOooo........oooOO0OOooo........oo 60 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 65 61 66 void Par02RunAction::EndOfRunAction(const G4Ru << 62 void Par02RunAction::EndOfRunAction( const G4Run* /*aRun*/ ) { 67 { << 68 Par02Output::Instance()->EndAnalysis(); 63 Par02Output::Instance()->EndAnalysis(); 69 } 64 } 70 65 71 //....oooOO0OOooo........oooOO0OOooo........oo 66 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... >> 67 72 68