Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2026-06-24 07:53:30

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 Run.cc
0027 /// \brief Implementation of the Run class
0028 
0029 // This example is provided by the Geant4-DNA collaboration
0030 // Any report or published results obtained using the Geant4-DNA software
0031 // shall cite the following Geant4-DNA collaboration publications:
0032 // Med. Phys. 45 (2018) e722-e739
0033 // Phys. Med. 31 (2015) 861-874
0034 // Med. Phys. 37 (2010) 4692-4708
0035 // Int. J. Model. Simul. Sci. Comput. 1 (2010) 157–178
0036 //
0037 // The Geant4-DNA web site is available at http://geant4-dna.org
0038 //
0039 
0040 #include "Run.hh"
0041 
0042 #include "HistoManager.hh"
0043 #include "PrimaryGeneratorAction.hh"
0044 
0045 #include "G4Material.hh"
0046 #include "G4SystemOfUnits.hh"
0047 #include "G4UnitsTable.hh"
0048 
0049 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
0050 
0051 Run::Run(const DetectorConstruction* detector)
0052   : G4Run(), fDetector(detector), fParticle(0), fEkin(0.), fEdeposit(0.), fEdeposit2(0.)
0053 {}
0054 
0055 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
0056 
0057 Run::~Run() {}
0058 
0059 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
0060 
0061 void Run::SetPrimary(G4ParticleDefinition* particle, G4double energy)
0062 {
0063   fParticle = particle;
0064   fEkin = energy;
0065 }
0066 
0067 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
0068 
0069 void Run::AddEdep(G4double e)
0070 {
0071   fEdeposit += e;
0072   fEdeposit2 += e * e;
0073 }
0074 
0075 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
0076 
0077 void Run::Merge(const G4Run* run)
0078 {
0079   const Run* localRun = static_cast<const Run*>(run);
0080 
0081   // Pass information about primary particle
0082   fParticle = localRun->fParticle;
0083   fEkin = localRun->fEkin;
0084 
0085   // Accumulate sums
0086   fEdeposit += localRun->fEdeposit;
0087   fEdeposit2 += localRun->fEdeposit2;
0088 
0089   G4Run::Merge(run);
0090 }
0091 
0092 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
0093 
0094 void Run::EndOfRun()
0095 {
0096   std::ios::fmtflags mode = G4cout.flags();
0097   G4cout.setf(std::ios::fixed, std::ios::floatfield);
0098   G4int prec = G4cout.precision(2);
0099 
0100   // Run conditions
0101   G4String partName = fParticle->GetParticleName();
0102   G4Material* material = fDetector->GetAbsorMaterial();
0103   G4double density = material->GetDensity();
0104 
0105   G4cout << "\n ======================== run summary =====================\n";
0106   G4cout << "\n The run is " << numberOfEvent << " " << partName << " of "
0107          << G4BestUnit(fEkin, "Energy") << " through a volume of " << material->GetName()
0108          << " (density: " << G4BestUnit(density, "Volumic Mass") << ") of mass "
0109          << G4BestUnit(fDetector->GetAbsorMass(), "Mass") << G4endl;
0110 
0111   if (numberOfEvent == 0) {
0112     G4cout.setf(mode, std::ios::floatfield);
0113     G4cout.precision(prec);
0114     return;
0115   }
0116 
0117   G4cout.precision(3);
0118   G4cout << "\n Total Energy deposited        = " << G4BestUnit(fEdeposit, "Energy") << G4endl;
0119 
0120   /*
0121   G4double dose=fEdeposit/fDetector->GetAbsorMass();
0122   G4double rmsDose=rms/fDetector->GetAbsorMass();
0123 
0124   G4cout.precision(3);
0125   G4cout
0126     << "\n Dose                         = " << dose/gray << " Gy "
0127     << G4endl;
0128   */
0129 
0130   G4cout << G4endl;
0131 
0132   // Normalize histograms
0133   G4AnalysisManager* analysisManager = G4AnalysisManager::Instance();
0134   G4double fac = 1. / (numberOfEvent * (fEkin / eV));
0135   analysisManager->ScaleH1(1, fac);
0136   analysisManager->ScaleH1(2, fac);
0137   analysisManager->ScaleH1(3, fac);
0138 }