Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-04-04 08:05:04

0001 //
0002 // ********************************************************************
0003 // * License and Disclaimer                                           *
0004 // *                                                                  *
0005 // * The  Geant4 software  is  copyright of the Copyright Holders  of *
0006 // * the Geant4 Collaboration.  It is provided  under  the terms  and *
0007 // * conditions of the Geant4 Software License,  included in the file *
0008 // * LICENSE and available at  http://cern.ch/geant4/license .  These *
0009 // * include a list of copyright holders.                             *
0010 // *                                                                  *
0011 // * Neither the authors of this software system, nor their employing *
0012 // * institutes,nor the agencies providing financial support for this *
0013 // * work  make  any representation or  warranty, express or implied, *
0014 // * regarding  this  software system or assume any liability for its *
0015 // * use.  Please see the license in the file  LICENSE  and URL above *
0016 // * for the full disclaimer and the limitation of liability.         *
0017 // *                                                                  *
0018 // * This  code  implementation is the result of  the  scientific and *
0019 // * technical work of the GEANT4 collaboration.                      *
0020 // * By using,  copying,  modifying or  distributing the software (or *
0021 // * any work based  on the software)  you  agree  to acknowledge its *
0022 // * use  in  resulting  scientific  publications,  and indicate your *
0023 // * acceptance of all terms of the Geant4 Software license.          *
0024 // ********************************************************************
0025 //
0026 /// \file hadronic/Hadr00/src/RunAction.cc
0027 /// \brief Implementation of the RunAction class
0028 //
0029 //
0030 // -------------------------------------------------------------
0031 //
0032 //    GEANT4 class file
0033 //    RunAction
0034 //
0035 // -------------------------------------------------------------
0036 
0037 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
0038 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
0039 
0040 #include "RunAction.hh"
0041 
0042 #include "DetectorConstruction.hh"
0043 #include "HistoManager.hh"
0044 
0045 #include "G4SystemOfUnits.hh"
0046 #include "G4Threading.hh"
0047 #include "G4UImanager.hh"
0048 #include "G4VVisManager.hh"
0049 
0050 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
0051 
0052 RunAction::RunAction(const DetectorConstruction* det) : fDetector(det)
0053 {
0054   fHisto = new HistoManager();
0055 }
0056 
0057 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
0058 
0059 RunAction::~RunAction()
0060 {
0061   delete fHisto;
0062 }
0063 
0064 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
0065 
0066 void RunAction::BeginOfRunAction(const G4Run* aRun)
0067 {
0068   G4bool show = true;
0069   // #ifdef G4MULTITHREADED
0070   if (G4Threading::IsWorkerThread() == true) {
0071     show = false;
0072   }
0073   // #endif
0074   //   G4cout << "###### show= " << show << G4endl;
0075 
0076   if (show) {
0077     G4int id = aRun->GetRunID();
0078     G4cout << "### Run " << id << " start" << G4endl;
0079     fHisto->BeginOfRun();
0080   }
0081 }
0082 
0083 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
0084 
0085 void RunAction::EndOfRunAction(const G4Run*)
0086 {
0087   G4bool show = true;
0088   // #ifdef G4MULTITHREADED
0089   if (G4Threading::IsWorkerThread() == true) {
0090     show = false;
0091   }
0092   // #endif
0093 
0094   if (show) {
0095     G4cout << "RunAction: End of run actions are started" << G4endl;
0096     if (fDetector) {
0097       fHisto->SetTargetMaterial(fDetector->GetTargetMaterial());
0098     }
0099     fHisto->EndOfRun();
0100   }
0101 }
0102 
0103 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......