Back to home page

EIC code displayed by LXR

 
 

    


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

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/Hadr02/include/HistoManager.hh
0027 /// \brief Definition of the HistoManager class
0028 //
0029 //
0030 //---------------------------------------------------------------------------
0031 //
0032 // ClassName:   HistoManager
0033 //
0034 // Description: Singleton class to hold parameters and build histograms.
0035 //              User cannot access to the constructor.
0036 //              The pointer of the only existing object can be got via
0037 //              HistoManager::GetPointer() static method.
0038 //              The first invokation of this static method makes
0039 //              the singleton object.
0040 //
0041 // Author:      V.Ivanchenko 03/03/2011
0042 //
0043 // Modified:
0044 //
0045 //----------------------------------------------------------------------------
0046 //
0047 
0048 #ifndef HistoManager_h
0049 #define HistoManager_h 1
0050 
0051 #include "G4Material.hh"
0052 #include "globals.hh"
0053 
0054 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
0055 
0056 class Histo;
0057 class G4Track;
0058 class G4Step;
0059 class G4ParticleDefinition;
0060 class G4VModularPhysicsList;
0061 class G4VPhysicsConstructor;
0062 
0063 class HistoManager
0064 {
0065   public:
0066     static HistoManager* GetPointer();
0067 
0068     ~HistoManager();
0069 
0070     void BookHisto();
0071 
0072     void BeginOfRun();
0073     void EndOfRun();
0074     void BeginOfEvent();
0075     void EndOfEvent();
0076     void Fill(G4int id, G4double x, G4double w);
0077 
0078     void ScoreNewTrack(const G4Track*);
0079     void AddTargetStep(const G4Step*);
0080 
0081     void SetVerbose(G4int val);
0082     void SetIonPhysics(const G4String&);
0083 
0084     inline void SetTargetMaterial(const G4Material* mat) { fMaterial = mat; };
0085     inline void SetTargetLength(G4double val) { fLength = val; };
0086     inline void SetNumberOfSlices(G4int val) { fNSlices = val; };
0087     inline void SetNumberOfBinsE(G4int val) { fNBinsE = val; };
0088 
0089     inline G4double Length() const { return fLength; };
0090     inline G4int NumberOfSlices() const { return fNSlices; };
0091 
0092     inline G4int GetVerbose() const { return fVerbose; };
0093 
0094     inline void SetDefaultBeamPositionFlag(G4bool f) { fBeamFlag = f; };
0095     inline G4bool DefaultBeamPosition() const { return fBeamFlag; };
0096 
0097     inline void SetMaxEnergyDeposit(G4double val) { fEdepMax = val; };
0098 
0099     inline void SetPhysicsList(G4VModularPhysicsList* p) { fPhysList = p; };
0100 
0101   private:
0102     HistoManager();
0103 
0104     void Initialise();
0105 
0106     static HistoManager* fManager;
0107 
0108     G4VModularPhysicsList* fPhysList;
0109     G4VPhysicsConstructor* fIonPhysics;
0110     const G4ParticleDefinition* fPrimaryDef;
0111     const G4ParticleDefinition* fNeutron;
0112     const G4Material* fMaterial;
0113 
0114     G4double fEdepMax;
0115     G4double fEdepEvt;
0116     G4double fEdepSum;
0117     G4double fEdepSum2;
0118     G4double fLength;
0119     G4double fAbsZ0;
0120     G4double fPrimaryKineticEnergy;
0121 
0122     G4int fVerbose;
0123     G4int fNBinsE;
0124     G4int fNSlices;
0125 
0126     G4int fNevt;
0127     G4int fNelec;
0128     G4int fNposit;
0129     G4int fNgam;
0130     G4int fNcpions;
0131     G4int fNpi0;
0132     G4int fNkaons;
0133     G4int fNmuons;
0134     G4int fNions;
0135     G4int fNdeut;
0136     G4int fNalpha;
0137     G4int fNneutron;
0138     G4int fNproton;
0139     G4int fNaproton;
0140     G4int fNstep;
0141     G4int fNHisto;
0142 
0143     G4bool fBeamFlag;
0144 
0145     Histo* fHisto;
0146 };
0147 
0148 #endif