Geant4 Cross Reference |
1 // 1 2 // ******************************************* 3 // * License and Disclaimer 4 // * 5 // * The Geant4 software is copyright of th 6 // * the Geant4 Collaboration. It is provided 7 // * conditions of the Geant4 Software License 8 // * LICENSE and available at http://cern.ch/ 9 // * include a list of copyright holders. 10 // * 11 // * Neither the authors of this software syst 12 // * institutes,nor the agencies providing fin 13 // * work make any representation or warran 14 // * regarding this software system or assum 15 // * use. Please see the license in the file 16 // * for the full disclaimer and the limitatio 17 // * 18 // * This code implementation is the result 19 // * technical work of the GEANT4 collaboratio 20 // * By using, copying, modifying or distri 21 // * any work based on the software) you ag 22 // * use in resulting scientific publicati 23 // * acceptance of all terms of the Geant4 Sof 24 // ******************************************* 25 // 26 /// \file hadronic/Hadr01/include/HistoManager 27 /// \brief Definition of the HistoManager clas 28 // 29 //-------------------------------------------- 30 // 31 // ClassName: HistoManager 32 // 33 // Description: Singleton class to hold parame 34 // User cannot access to the cons 35 // The pointer of the only existi 36 // HistoManager::GetPointer() sta 37 // The first invokation of this s 38 // the singleton object. 39 // 40 // Author: V.Ivanchenko 27/09/00 41 // 42 // Modified: 43 // 04.06.2006 Adoptation of Hadr01 (V.Ivanchen 44 // 03.10.2006 Add csFlag (V.Ivanchenko) 45 // 16.11.2006 Add beamFlag (V.Ivanchenko) 46 // 47 //-------------------------------------------- 48 // 49 50 #ifndef HistoManager_h 51 #define HistoManager_h 1 52 53 #include "G4Element.hh" 54 #include "G4Material.hh" 55 #include "globals.hh" 56 57 //....oooOO0OOooo........oooOO0OOooo........oo 58 59 class Histo; 60 class G4Track; 61 class G4Step; 62 class G4ParticleDefinition; 63 64 class HistoManager 65 { 66 public: 67 static HistoManager* GetPointer(); 68 69 private: 70 HistoManager(); 71 72 public: 73 ~HistoManager(); 74 75 void BookHisto(); 76 77 void BeginOfRun(); 78 void EndOfRun(); 79 void BeginOfEvent(); 80 void EndOfEvent(); 81 void Fill(G4int id, G4double x, G4double w 82 83 void ScoreNewTrack(const G4Track*); 84 void AddTargetStep(const G4Step*); 85 void AddLeakingParticle(const G4Track*); 86 87 void SetVerbose(G4int val); 88 89 inline void SetTargetRadius(G4double val) 90 { 91 fRadius = val; 92 fR2 = val * val; 93 }; 94 inline void SetTargetLength(G4double val) 95 inline void SetNumberOfSlices(G4int val) { 96 inline void SetNumberOfBinsE(G4int val) { 97 inline void SetDefaultBeamPositionFlag(G4b 98 inline void SetMaxEnergyDeposit(G4double v 99 100 inline G4double Radius() const { return fR 101 inline G4double Length() const { return fL 102 inline G4bool DefaultBeamPosition() const 103 inline G4int NumberOfSlices() const { retu 104 inline G4int GetVerbose() const { return f 105 106 inline G4int PrintBertiniXS() const { retu 107 inline void SetPrintBertiniXS(G4int key) { 108 109 private: 110 static HistoManager* fManager; 111 112 const G4ParticleDefinition* fPrimaryDef; 113 const G4ParticleDefinition* fNeutron; 114 115 G4double fR2 = 0.0; 116 G4double fRadius; 117 G4double fLength; 118 G4double fEdepMax; 119 G4double fEdepEvt = 0.0; 120 G4double fEdepEM = 0.0; 121 G4double fEdepPI = 0.0; 122 G4double fEdepP = 0.0; 123 G4double fEdepSum = 0.0; 124 G4double fEdepSum2 = 0.0; 125 G4double fAbsZ0 = 0.0; 126 G4double fPrimaryKineticEnergy = 0.0; 127 128 G4int fVerbose = 0; 129 G4int fNBinsE = 100; 130 G4int fNSlices = 300; 131 132 G4int fNevt = 0; 133 G4int fNelec = 0; 134 G4int fNposit = 0; 135 G4int fNgam = 0; 136 G4int fNprot_leak = 0; 137 G4int fNpiofNleak = 0; 138 G4int fNcpions = 0; 139 G4int fNpi0 = 0; 140 G4int fNkaons = 0; 141 G4int fNmuons = 0; 142 G4int fNions = 0; 143 G4int fNdeut = 0; 144 G4int fNalpha = 0; 145 G4int fNneutron = 0; 146 G4int fNproton = 0; 147 G4int fNaproton = 0; 148 G4int fNneu_forw = 0; 149 G4int fNneu_leak = 0; 150 G4int fNneu_back = 0; 151 G4int fNstep = 0; 152 G4int fNHisto = 28; 153 G4int fPrintBertiniXS = -1; // 0 - all 154 155 G4bool fBeamFlag = true; 156 G4bool fHistoBooked = false; 157 158 Histo* fHisto; 159 }; 160 161 #endif 162