Geant4 Cross Reference |
1 // 1 // 2 // ******************************************* 2 // ******************************************************************** 3 // * License and Disclaimer 3 // * License and Disclaimer * 4 // * 4 // * * 5 // * The Geant4 software is copyright of th 5 // * The Geant4 software is copyright of the Copyright Holders of * 6 // * the Geant4 Collaboration. It is provided 6 // * the Geant4 Collaboration. It is provided under the terms and * 7 // * conditions of the Geant4 Software License 7 // * conditions of the Geant4 Software License, included in the file * 8 // * LICENSE and available at http://cern.ch/ 8 // * LICENSE and available at http://cern.ch/geant4/license . These * 9 // * include a list of copyright holders. 9 // * include a list of copyright holders. * 10 // * 10 // * * 11 // * Neither the authors of this software syst 11 // * Neither the authors of this software system, nor their employing * 12 // * institutes,nor the agencies providing fin 12 // * institutes,nor the agencies providing financial support for this * 13 // * work make any representation or warran 13 // * work make any representation or warranty, express or implied, * 14 // * regarding this software system or assum 14 // * regarding this software system or assume any liability for its * 15 // * use. Please see the license in the file 15 // * use. Please see the license in the file LICENSE and URL above * 16 // * for the full disclaimer and the limitatio 16 // * for the full disclaimer and the limitation of liability. * 17 // * 17 // * * 18 // * This code implementation is the result 18 // * This code implementation is the result of the scientific and * 19 // * technical work of the GEANT4 collaboratio 19 // * technical work of the GEANT4 collaboration. * 20 // * By using, copying, modifying or distri 20 // * By using, copying, modifying or distributing the software (or * 21 // * any work based on the software) you ag 21 // * any work based on the software) you agree to acknowledge its * 22 // * use in resulting scientific publicati 22 // * use in resulting scientific publications, and indicate your * 23 // * acceptance of all terms of the Geant4 Sof 23 // * acceptance of all terms of the Geant4 Software license. * 24 // ******************************************* 24 // ******************************************************************** 25 // 25 // 26 /// \file medical/GammaTherapy/include/Run.hh 26 /// \file medical/GammaTherapy/include/Run.hh 27 /// \brief Definition of the Run class 27 /// \brief Definition of the Run class 28 // 28 // 29 // 29 // 30 //....oooOO0OOooo........oooOO0OOooo........oo 30 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 31 //....oooOO0OOooo........oooOO0OOooo........oo 31 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 32 32 33 #ifndef Run_h 33 #ifndef Run_h 34 #define Run_h 1 34 #define Run_h 1 35 35 36 #include "G4AnalysisManager.hh" << 36 #include "G4Run.hh" 37 #include "G4DataVector.hh" << 37 38 #include "G4DynamicParticle.hh" << 39 #include "G4Electron.hh" << 40 #include "G4Gamma.hh" 38 #include "G4Gamma.hh" >> 39 #include "G4Electron.hh" 41 #include "G4Positron.hh" 40 #include "G4Positron.hh" 42 #include "G4Run.hh" << 41 #include "G4DynamicParticle.hh" 43 #include "G4VPhysicalVolume.hh" 42 #include "G4VPhysicalVolume.hh" >> 43 #include "G4DataVector.hh" >> 44 #include "G4AnalysisManager.hh" >> 45 44 #include "globals.hh" 46 #include "globals.hh" 45 47 46 class DetectorConstruction; 48 class DetectorConstruction; 47 class HistoManager; 49 class HistoManager; 48 class G4ParticleDefinition; 50 class G4ParticleDefinition; 49 class G4Track; 51 class G4Track; 50 52 51 //....oooOO0OOooo........oooOO0OOooo........oo 53 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 52 54 53 class Run : public G4Run 55 class Run : public G4Run 54 { 56 { 55 public: << 57 public: 56 Run(DetectorConstruction*, HistoManager*); << 58 Run(DetectorConstruction*, HistoManager*); 57 ~Run(); << 59 ~Run(); 58 << 60 59 public: << 61 public: 60 virtual void Merge(const G4Run*); << 62 virtual void Merge(const G4Run*); 61 void EndOfRun(); << 63 void EndOfRun(); 62 << 64 63 void ScoreNewTrack(const G4Track* aTrack); << 65 void ScoreNewTrack(const G4Track* aTrack); 64 << 66 65 void AddPhantomStep(G4double e, G4double r << 67 void AddPhantomStep(G4double e, G4double r1, G4double z1, G4double r2, 66 G4double z0); << 68 G4double z2, G4double r0, G4double z0); 67 << 69 68 void AddPhantomGamma(G4double e, G4double << 70 void AddPhantomGamma(G4double e, G4double r); 69 << 71 70 bool GetVerbose() const { return fVerbose; << 72 bool GetVerbose() const { return fVerbose; } 71 inline void AddStepInTarget() { ++fNstepTa << 73 inline void AddStepInTarget() { ++fNstepTarget; }; 72 << 74 73 private: << 75 private: 74 DetectorConstruction* fDetector; << 76 DetectorConstruction* fDetector; 75 HistoManager* fHistoMgr; << 77 HistoManager* fHistoMgr; 76 G4AnalysisManager* fAnalysisManager; << 78 G4AnalysisManager* fAnalysisManager; 77 << 79 78 std::vector<G4int> fHistoId; << 80 std::vector<G4int> fHistoId; 79 G4int fNHisto; << 81 G4int fNHisto; 80 << 82 81 void AddPhantomPhoton(const G4DynamicParti << 83 void AddPhantomPhoton(const G4DynamicParticle*); 82 void AddTargetPhoton(const G4DynamicPartic << 84 void AddTargetPhoton(const G4DynamicParticle*); 83 void AddPhantomElectron(const G4DynamicPar << 85 void AddPhantomElectron(const G4DynamicParticle*); 84 void AddTargetElectron(const G4DynamicPart << 86 void AddTargetElectron(const G4DynamicParticle*); 85 << 87 86 inline void AddPhoton() { ++fNgam; }; << 88 inline void AddPhoton() { ++fNgam; }; 87 inline void AddElectron() { ++fNelec; }; << 89 inline void AddElectron() { ++fNelec; }; 88 inline void AddPositron() { ++fNposit; }; << 90 inline void AddPositron() { ++fNposit; }; 89 << 91 90 // Parameters retrived from DetectorConstr << 92 // Parameters retrived from DetectorConstructor 91 const G4ParticleDefinition* fGamma; << 93 const G4ParticleDefinition* fGamma; 92 const G4ParticleDefinition* fElectron; << 94 const G4ParticleDefinition* fElectron; 93 const G4ParticleDefinition* fPositron; << 95 const G4ParticleDefinition* fPositron; 94 << 96 95 const G4VPhysicalVolume* fCheckVolume; << 97 const G4VPhysicalVolume* fCheckVolume; 96 const G4VPhysicalVolume* fGasVolume; << 98 const G4VPhysicalVolume* fGasVolume; 97 const G4VPhysicalVolume* fPhantom; << 99 const G4VPhysicalVolume* fPhantom; 98 const G4VPhysicalVolume* fTarget1; << 100 const G4VPhysicalVolume* fTarget1; 99 const G4VPhysicalVolume* fTarget2; << 101 const G4VPhysicalVolume* fTarget2; 100 << 102 101 G4int fNBinsR; << 103 G4int fNBinsR; 102 G4int fNBinsZ; << 104 G4int fNBinsZ; 103 G4int fNBinsE; << 105 G4int fNBinsE; 104 G4int fScoreBin; << 106 G4int fScoreBin; 105 << 107 106 G4double fScoreZ; << 108 G4double fScoreZ; 107 G4double fAbsorberZ; << 109 G4double fAbsorberZ; 108 G4double fAbsorberR; << 110 G4double fAbsorberR; 109 G4double fMaxEnergy; << 111 G4double fMaxEnergy; 110 << 112 111 G4double fStepZ; << 113 G4double fStepZ; 112 G4double fStepR; << 114 G4double fStepR; 113 G4double fStepE; << 115 G4double fStepE; 114 // G4double fNormZ; << 116 // G4double fNormZ; 115 << 117 116 // Local histogramming parameters << 118 // Local histogramming parameters 117 G4bool fVerbose; << 119 G4bool fVerbose; 118 G4double fSumR; << 120 G4double fSumR; 119 << 121 120 G4int fNevt; << 122 G4int fNevt; 121 G4int fNelec; << 123 G4int fNelec; 122 G4int fNposit; << 124 G4int fNposit; 123 G4int fNgam; << 125 G4int fNgam; 124 G4int fNstep; << 126 G4int fNstep; 125 G4int fNgamPh; << 127 G4int fNgamPh; 126 G4int fNgamTar; << 128 G4int fNgamTar; 127 G4int fNeTar; << 129 G4int fNeTar; 128 G4int fNePh; << 130 G4int fNePh; 129 G4int fNstepTarget; << 131 G4int fNstepTarget; 130 << 132 131 G4DataVector fVolumeR; << 133 G4DataVector fVolumeR; 132 G4DataVector fGammaE; << 134 G4DataVector fGammaE; 133 G4DataVector fEdep; << 135 G4DataVector fEdep; 134 }; 136 }; 135 137 136 //....oooOO0OOooo........oooOO0OOooo........oo 138 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 137 139 138 #endif 140 #endif 139 141