File indexing completed on 2025-04-04 08:05:05
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017
0018
0019
0020
0021
0022
0023
0024
0025
0026
0027
0028
0029
0030
0031
0032
0033
0034
0035
0036
0037
0038
0039
0040
0041
0042
0043
0044
0045
0046
0047
0048
0049
0050 #ifndef HistoManager_h
0051 #define HistoManager_h 1
0052
0053 #include "G4Element.hh"
0054 #include "G4Material.hh"
0055 #include "globals.hh"
0056
0057
0058
0059 class Histo;
0060 class G4Track;
0061 class G4Step;
0062 class G4ParticleDefinition;
0063
0064 class HistoManager
0065 {
0066 public:
0067 static HistoManager* GetPointer();
0068
0069 private:
0070 HistoManager();
0071
0072 public:
0073 ~HistoManager();
0074
0075 void BookHisto();
0076
0077 void BeginOfRun();
0078 void EndOfRun();
0079 void BeginOfEvent();
0080 void EndOfEvent();
0081 void Fill(G4int id, G4double x, G4double w);
0082
0083 void ScoreNewTrack(const G4Track*);
0084 void AddTargetStep(const G4Step*);
0085 void AddLeakingParticle(const G4Track*);
0086
0087 void SetVerbose(G4int val);
0088
0089 inline void SetTargetRadius(G4double val)
0090 {
0091 fRadius = val;
0092 fR2 = val * val;
0093 };
0094 inline void SetTargetLength(G4double val) { fLength = val; };
0095 inline void SetNumberOfSlices(G4int val) { fNSlices = val; };
0096 inline void SetNumberOfBinsE(G4int val) { fNBinsE = val; };
0097 inline void SetDefaultBeamPositionFlag(G4bool f) { fBeamFlag = f; };
0098 inline void SetMaxEnergyDeposit(G4double val) { fEdepMax = val; };
0099
0100 inline G4double Radius() const { return fRadius; };
0101 inline G4double Length() const { return fLength; };
0102 inline G4bool DefaultBeamPosition() const { return fBeamFlag; };
0103 inline G4int NumberOfSlices() const { return fNSlices; };
0104 inline G4int GetVerbose() const { return fVerbose; };
0105
0106 inline G4int PrintBertiniXS() const { return fPrintBertiniXS; };
0107 inline void SetPrintBertiniXS(G4int key) { fPrintBertiniXS = key; };
0108
0109 private:
0110 static HistoManager* fManager;
0111
0112 const G4ParticleDefinition* fPrimaryDef;
0113 const G4ParticleDefinition* fNeutron;
0114
0115 G4double fR2 = 0.0;
0116 G4double fRadius;
0117 G4double fLength;
0118 G4double fEdepMax;
0119 G4double fEdepEvt = 0.0;
0120 G4double fEdepEM = 0.0;
0121 G4double fEdepPI = 0.0;
0122 G4double fEdepP = 0.0;
0123 G4double fEdepSum = 0.0;
0124 G4double fEdepSum2 = 0.0;
0125 G4double fAbsZ0 = 0.0;
0126 G4double fPrimaryKineticEnergy = 0.0;
0127
0128 G4int fVerbose = 0;
0129 G4int fNBinsE = 100;
0130 G4int fNSlices = 300;
0131
0132 G4int fNevt = 0;
0133 G4int fNelec = 0;
0134 G4int fNposit = 0;
0135 G4int fNgam = 0;
0136 G4int fNprot_leak = 0;
0137 G4int fNpiofNleak = 0;
0138 G4int fNcpions = 0;
0139 G4int fNpi0 = 0;
0140 G4int fNkaons = 0;
0141 G4int fNmuons = 0;
0142 G4int fNions = 0;
0143 G4int fNdeut = 0;
0144 G4int fNalpha = 0;
0145 G4int fNneutron = 0;
0146 G4int fNproton = 0;
0147 G4int fNaproton = 0;
0148 G4int fNneu_forw = 0;
0149 G4int fNneu_leak = 0;
0150 G4int fNneu_back = 0;
0151 G4int fNstep = 0;
0152 G4int fNHisto = 28;
0153 G4int fPrintBertiniXS = -1;
0154
0155 G4bool fBeamFlag = true;
0156 G4bool fHistoBooked = false;
0157
0158 Histo* fHisto;
0159 };
0160
0161 #endif