Back to home page

EIC code displayed by LXR

 
 

    


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

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 electromagnetic/TestEm8/src/RunAction.cc
0027 /// \brief Implementation of the RunAction class
0028 //
0029 //
0030 //---------------------------------------------------------------------------
0031 //
0032 // ClassName:   RunAction
0033 //
0034 // Author:      V.Ivanchenko 01.09.2010
0035 //
0036 //----------------------------------------------------------------------------
0037 //
0038 
0039 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
0040 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
0041 
0042 #include "RunAction.hh"
0043 
0044 #include "Run.hh"
0045 #include "TestParameters.hh"
0046 
0047 #include "G4Run.hh"
0048 #include "G4RunManager.hh"
0049 #include "G4SystemOfUnits.hh"
0050 #include "Randomize.hh"
0051 
0052 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
0053 
0054 RunAction::RunAction()
0055 {
0056   TestParameters::GetPointer();
0057   fAnalysisManager = G4AnalysisManager::Instance();
0058   fAnalysisManager->SetDefaultFileType("root");
0059   fAnalysisManager->SetFileName("testem8");
0060   fAnalysisManager->SetVerboseLevel(1);
0061   fAnalysisManager->SetActivation(true);
0062 }
0063 
0064 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
0065 
0066 void RunAction::Book()
0067 {
0068   // Always creating analysis manager
0069   TestParameters* param = TestParameters::GetPointer();
0070   G4int nBinsE = param->GetNumberBins();
0071   G4int nBinsCluster = param->GetNumberBinsCluster();
0072   G4int nMaxCluster = param->GetMaxCluster();
0073   G4double maxEnergy = param->GetMaxEnergy();
0074   G4double factorALICE = param->GetFactorALICE();
0075 
0076   // G4cout << "### maxenergy(keV)= " << maxEnergy/keV
0077   //         << "  factorALICE= " <<  factorALICE << G4endl;
0078 
0079   // Creating an 1-dimensional histograms in the root directory of the tree
0080   fAnalysisManager->SetFirstHistoId(1);
0081   fAnalysisManager->CreateH1("h1", "Energy deposition in detector (keV)", nBinsE, 0.0,
0082                              maxEnergy / keV);
0083   fAnalysisManager->CreateH1("h2", "Number of primary clusters", nBinsCluster, 0.0,
0084                              G4double(nMaxCluster));
0085   fAnalysisManager->CreateH1("h3", "Energy deposition in detector (ADC)", nBinsE, 0.0,
0086                              maxEnergy * factorALICE);
0087   fAnalysisManager->OpenFile();
0088 }
0089 
0090 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
0091 
0092 G4Run* RunAction::GenerateRun()
0093 {
0094   fRun = new Run();
0095   return fRun;
0096 }
0097 
0098 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
0099 
0100 void RunAction::BeginOfRunAction(const G4Run* aRun)
0101 {
0102   G4int id = aRun->GetRunID();
0103   G4cout << "### Run " << id << " start analysis activation; rand= " << G4UniformRand() << G4endl;
0104 
0105   fRun->BeginOfRun();
0106 
0107   // histograms
0108   Book();
0109 }
0110 
0111 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
0112 
0113 void RunAction::EndOfRunAction(const G4Run*)
0114 {
0115   // print Run summary
0116   G4cout << "RunAction: End of run actions are started " << isMaster
0117          << "  Nevt=  " << fRun->GetNumberOfEvent() << "  Edep= " << fRun->GetStat()->mean()
0118          << G4endl;
0119   if (isMaster) {
0120     fRun->EndOfRun();
0121   }
0122   // save histos and close analysis
0123   if (fAnalysisManager->IsActive()) {
0124     fAnalysisManager->Write();
0125     fAnalysisManager->CloseFile();
0126     fAnalysisManager->Clear();
0127   }
0128 }
0129 
0130 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......