Geant4 Cross Reference |
>> 1 1 // 2 // 2 // ******************************************* 3 // ******************************************************************** 3 // * License and Disclaimer << 4 // * DISCLAIMER * 4 // * 5 // * * 5 // * The Geant4 software is copyright of th << 6 // * The following disclaimer summarizes all the specific disclaimers * 6 // * the Geant4 Collaboration. It is provided << 7 // * of contributors to this software. The specific disclaimers,which * 7 // * conditions of the Geant4 Software License << 8 // * govern, are listed with their locations in: * 8 // * LICENSE and available at http://cern.ch/ << 9 // * http://cern.ch/geant4/license * 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. * 16 // * for the full disclaimer and the limitatio << 17 // * 16 // * * 18 // * This code implementation is the result << 17 // * This code implementation is the intellectual property of the * 19 // * technical work of the GEANT4 collaboratio << 18 // * GEANT4 collaboration. * 20 // * By using, copying, modifying or distri << 19 // * By copying, distributing or modifying the Program (or any work * 21 // * any work based on the software) you ag << 20 // * based on the Program) you indicate your acceptance of this * 22 // * use in resulting scientific publicati << 21 // * statement, and all its terms. * 23 // * acceptance of all terms of the Geant4 Sof << 24 // ******************************************* 22 // ******************************************************************** >> 23 // $Id: HadrontherapyPrimaryGeneratorAction.hh; May 2005 >> 24 // ---------------------------------------------------------------------------- >> 25 // GEANT 4 - Hadrontherapy example >> 26 // ---------------------------------------------------------------------------- >> 27 // Code developed by: 25 // 28 // 26 // Hadrontherapy advanced example for Geant4 << 29 // G.A.P. Cirrone(a)*, F. Di Rosa(a), S. Guatelli(b), G. Russo(a) 27 // See more at: https://twiki.cern.ch/twiki/bi << 30 // >> 31 // (a) Laboratori Nazionali del Sud >> 32 // of the National Institute for Nuclear Physics, Catania, Italy >> 33 // (b) National Institute for Nuclear Physics Section of Genova, genova, Italy >> 34 // >> 35 // * cirrone@lns.infn.it >> 36 // ---------------------------------------------------------------------------- 28 37 29 #ifndef HadrontherapyPrimaryGeneratorAction_h 38 #ifndef HadrontherapyPrimaryGeneratorAction_h 30 #define HadrontherapyPrimaryGeneratorAction_h 39 #define HadrontherapyPrimaryGeneratorAction_h 1 31 40 32 #include "G4VUserPrimaryGeneratorAction.hh" 41 #include "G4VUserPrimaryGeneratorAction.hh" 33 #include "globals.hh" 42 #include "globals.hh" 34 #include "G4RunManager.hh" << 35 #include "G4ParticleGun.hh" << 36 43 37 class G4GeneralParticleSource; << 44 class G4ParticleGun; 38 class HadrontherapyPrimaryGeneratorMessenger; << 45 class G4Event; 39 46 >> 47 class HadrontherapyPrimaryGeneratorMessenger; 40 class HadrontherapyPrimaryGeneratorAction : pu 48 class HadrontherapyPrimaryGeneratorAction : public G4VUserPrimaryGeneratorAction 41 { 49 { 42 public: 50 public: 43 HadrontherapyPrimaryGeneratorAction(); << 51 HadrontherapyPrimaryGeneratorAction(); 44 ~HadrontherapyPrimaryGeneratorAction(); 52 ~HadrontherapyPrimaryGeneratorAction(); 45 << 53 46 public: 54 public: 47 // Methods to change the parameters of prima << 55 48 // interactively << 56 >> 57 void SetsigmaEnergy(G4double); >> 58 void SetmeanKineticEnergy(G4double); >> 59 void SetDefaultPrimaryParticle(); 49 void GeneratePrimaries(G4Event*); 60 void GeneratePrimaries(G4Event*); 50 inline void setNewSource(G4bool Varbool){fNe << 61 void SetXposition(G4double); 51 inline void setCalculatedPhaseSpaceFileIN(G4 << 62 void SetYposition(G4double); 52 << 63 void SetZposition(G4double); 53 private: << 64 void SetsigmaY(G4double); 54 // void SetDefaultPrimaryParticle(); << 65 void SetsigmaZ(G4double); 55 G4bool fNewSource; << 66 void SetsigmaMomentumY(G4double); 56 G4String calculatedPhaseSpaceFileIN; << 67 void SetsigmaMomentumZ(G4double); 57 void setGunCalculatedPhaseSpace(); << 58 68 59 HadrontherapyPrimaryGeneratorMessenger *Prim << 69 G4double meanKineticEnergy; 60 G4GeneralParticleSource* particleGun; << 70 G4double sigmaEnergy; 61 << 71 G4double X0; >> 72 G4double Y0; >> 73 G4double Z0; >> 74 G4double sigmaY; >> 75 G4double sigmaZ; >> 76 G4double sigmaMomentumY; >> 77 G4double sigmaMomentumZ; >> 78 >> 79 private: >> 80 G4ParticleGun* particleGun; >> 81 HadrontherapyPrimaryGeneratorMessenger* gunMessenger; >> 82 G4double sigmaX; 62 }; 83 }; 63 84 64 #endif 85 #endif 65 86 66 87 67 88