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