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 // $Id: Run.hh 71375 2013-06-14 07:39:33Z maire $ 29 // 30 // 30 //....oooOO0OOooo........oooOO0OOooo........oo 31 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 31 //....oooOO0OOooo........oooOO0OOooo........oo 32 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 32 33 33 #ifndef Run_h 34 #ifndef Run_h 34 #define Run_h 1 35 #define Run_h 1 35 36 36 #include "G4AnalysisManager.hh" << 37 #include "G4Run.hh" 37 #include "G4DataVector.hh" << 38 38 #include "G4DynamicParticle.hh" << 39 #include "G4Electron.hh" << 40 #include "G4Gamma.hh" 39 #include "G4Gamma.hh" >> 40 #include "G4Electron.hh" 41 #include "G4Positron.hh" 41 #include "G4Positron.hh" 42 #include "G4Run.hh" << 42 #include "G4DynamicParticle.hh" 43 #include "G4VPhysicalVolume.hh" 43 #include "G4VPhysicalVolume.hh" >> 44 #include "G4DataVector.hh" >> 45 #include "g4root.hh" >> 46 44 #include "globals.hh" 47 #include "globals.hh" 45 48 46 class DetectorConstruction; 49 class DetectorConstruction; >> 50 class PrimaryGeneratorAction; 47 class HistoManager; 51 class HistoManager; 48 class G4ParticleDefinition; 52 class G4ParticleDefinition; 49 class G4Track; 53 class G4Track; 50 54 51 //....oooOO0OOooo........oooOO0OOooo........oo 55 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 52 56 53 class Run : public G4Run 57 class Run : public G4Run 54 { 58 { 55 public: << 59 public: 56 Run(DetectorConstruction*, HistoManager*); << 60 Run(DetectorConstruction*, PrimaryGeneratorAction*, HistoManager*); 57 ~Run(); << 61 ~Run(); 58 << 62 59 public: << 63 public: 60 virtual void Merge(const G4Run*); << 64 61 void EndOfRun(); << 65 virtual void Merge(const G4Run*); 62 << 66 void EndOfRun(); 63 void ScoreNewTrack(const G4Track* aTrack); << 67 64 << 68 void ScoreNewTrack(const G4Track* aTrack); 65 void AddPhantomStep(G4double e, G4double r << 69 66 G4double z0); << 70 void AddPhantomStep(G4double e, G4double r1, G4double z1, 67 << 71 G4double r2, G4double z2, 68 void AddPhantomGamma(G4double e, G4double << 72 G4double r0, G4double z0); 69 << 73 70 bool GetVerbose() const { return fVerbose; << 74 void AddPhantomGamma(G4double e, G4double r); 71 inline void AddStepInTarget() { ++fNstepTa << 75 72 << 76 bool GetVerbose() const { return fVerbose; } 73 private: << 77 inline void AddStepInTarget() { ++fNstepTarget;}; 74 DetectorConstruction* fDetector; << 78 75 HistoManager* fHistoMgr; << 79 private: 76 G4AnalysisManager* fAnalysisManager; << 80 77 << 81 DetectorConstruction* fDetector; 78 std::vector<G4int> fHistoId; << 82 HistoManager* fHistoMgr; 79 G4int fNHisto; << 83 G4AnalysisManager* fAnalysisManager; 80 << 84 81 void AddPhantomPhoton(const G4DynamicParti << 85 std::vector<G4int> fHistoId; 82 void AddTargetPhoton(const G4DynamicPartic << 86 G4int fNHisto; 83 void AddPhantomElectron(const G4DynamicPar << 87 84 void AddTargetElectron(const G4DynamicPart << 88 void AddPhantomPhoton(const G4DynamicParticle*); 85 << 89 void AddTargetPhoton(const G4DynamicParticle*); 86 inline void AddPhoton() { ++fNgam; }; << 90 void AddPhantomElectron(const G4DynamicParticle*); 87 inline void AddElectron() { ++fNelec; }; << 91 void AddTargetElectron(const G4DynamicParticle*); 88 inline void AddPositron() { ++fNposit; }; << 92 89 << 93 inline void AddPhoton() { ++fNgam; }; 90 // Parameters retrived from DetectorConstr << 94 inline void AddElectron(){ ++fNelec; }; 91 const G4ParticleDefinition* fGamma; << 95 inline void AddPositron(){ ++fNposit; }; 92 const G4ParticleDefinition* fElectron; << 96 93 const G4ParticleDefinition* fPositron; << 97 // Parameters retrived from DetectorConstructor 94 << 98 const G4ParticleDefinition* fGamma; 95 const G4VPhysicalVolume* fCheckVolume; << 99 const G4ParticleDefinition* fElectron; 96 const G4VPhysicalVolume* fGasVolume; << 100 const G4ParticleDefinition* fPositron; 97 const G4VPhysicalVolume* fPhantom; << 101 98 const G4VPhysicalVolume* fTarget1; << 102 const G4VPhysicalVolume* fCheckVolume; 99 const G4VPhysicalVolume* fTarget2; << 103 const G4VPhysicalVolume* fGasVolume; 100 << 104 const G4VPhysicalVolume* fPhantom; 101 G4int fNBinsR; << 105 const G4VPhysicalVolume* fTarget1; 102 G4int fNBinsZ; << 106 const G4VPhysicalVolume* fTarget2; 103 G4int fNBinsE; << 107 104 G4int fScoreBin; << 108 G4int fNBinsR; 105 << 109 G4int fNBinsZ; 106 G4double fScoreZ; << 110 G4int fNBinsE; 107 G4double fAbsorberZ; << 111 G4int fScoreBin; 108 G4double fAbsorberR; << 112 109 G4double fMaxEnergy; << 113 G4double fScoreZ; 110 << 114 G4double fAbsorberZ; 111 G4double fStepZ; << 115 G4double fAbsorberR; 112 G4double fStepR; << 116 G4double fMaxEnergy; 113 G4double fStepE; << 117 114 // G4double fNormZ; << 118 G4double fStepZ; 115 << 119 G4double fStepR; 116 // Local histogramming parameters << 120 G4double fStepE; 117 G4bool fVerbose; << 121 // G4double fNormZ; 118 G4double fSumR; << 122 119 << 123 // Local histogramming parameters 120 G4int fNevt; << 124 G4bool fVerbose; 121 G4int fNelec; << 125 G4double fSumR; 122 G4int fNposit; << 126 123 G4int fNgam; << 127 G4int fNevt; 124 G4int fNstep; << 128 G4int fNelec; 125 G4int fNgamPh; << 129 G4int fNposit; 126 G4int fNgamTar; << 130 G4int fNgam; 127 G4int fNeTar; << 131 G4int fNstep; 128 G4int fNePh; << 132 G4int fNgamPh; 129 G4int fNstepTarget; << 133 G4int fNgamTar; 130 << 134 G4int fNeTar; 131 G4DataVector fVolumeR; << 135 G4int fNePh; 132 G4DataVector fGammaE; << 136 G4int fNstepTarget; 133 G4DataVector fEdep; << 137 >> 138 G4DataVector fVolumeR; >> 139 G4DataVector fGammaE; >> 140 G4DataVector fEdep; >> 141 >> 142 134 }; 143 }; 135 144 136 //....oooOO0OOooo........oooOO0OOooo........oo 145 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 137 146 138 #endif 147 #endif >> 148 139 149