File indexing completed on 2025-04-04 08:05:11
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 #ifndef HistoManager_h
0049 #define HistoManager_h 1
0050
0051 #include "G4Material.hh"
0052 #include "globals.hh"
0053
0054
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