Geant4  v4-10.4-release
 모두 클래스 네임스페이스들 파일들 함수 변수 타입정의 열거형 타입 열거형 멤버 Friends 매크로 그룹들 페이지들
examples/extended/medical/GammaTherapy/include/PrimaryGeneratorAction.hh
이 파일의 문서화 페이지로 가기
1 //
2 // ********************************************************************
3 // * License and Disclaimer *
4 // * *
5 // * The Geant4 software is copyright of the Copyright Holders of *
6 // * the Geant4 Collaboration. It is provided under the terms and *
7 // * conditions of the Geant4 Software License, included in the file *
8 // * LICENSE and available at http://cern.ch/geant4/license . These *
9 // * include a list of copyright holders. *
10 // * *
11 // * Neither the authors of this software system, nor their employing *
12 // * institutes,nor the agencies providing financial support for this *
13 // * work make any representation or warranty, express or implied, *
14 // * regarding this software system or assume any liability for its *
15 // * use. Please see the license in the file LICENSE and URL above *
16 // * for the full disclaimer and the limitation of liability. *
17 // * *
18 // * This code implementation is the result of the scientific and *
19 // * technical work of the GEANT4 collaboration. *
20 // * By using, copying, modifying or distributing the software (or *
21 // * any work based on the software) you agree to acknowledge its *
22 // * use in resulting scientific publications, and indicate your *
23 // * acceptance of all terms of the Geant4 Software license. *
24 // ********************************************************************
25 //
26 // $Id: PrimaryGeneratorAction.hh 103662 2017-04-20 14:58:33Z gcosmo $
27 //
30 //
31 
32 #ifndef PrimaryGeneratorAction_h
33 #define PrimaryGeneratorAction_h 1
34 
35 //---------------------------------------------------------------------------
36 //
37 // ClassName: PrimaryGeneratorAction
38 //
39 // Description: Generate primary beam
40 //
41 // Authors: V.Grichine, V.Ivanchenko
42 //
43 // Modified:
44 //
45 //----------------------------------------------------------------------------
46 //
47 
48 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
49 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
50 
51 #include "G4Event.hh"
52 #include "G4ParticleGun.hh"
54 #include "G4ThreeVector.hh"
55 #include "globals.hh"
56 
57 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
58 
61 
63 {
64 public:
65 
66  // The constructor defines a ParticleGun object, which allows
67  // shooting a beam of particles through the experimental set-up.
69 
70  //The destructor. It deletes the ParticleGun.
71  virtual ~PrimaryGeneratorAction();
72 
73  //It reads the parameters of the primary particles.
74  //Generates the primary event via the ParticleGun method.
75  void GeneratePrimaries(G4Event* anEvent);
76 
77  //Get/Set methods
78  void SetBeamEnergy(G4double val);
79 
80  inline void SetBeamSigmaE(G4double val) { fSigmaE = val; };
81  inline void SetBeamX(G4double val) { fX0 = val;};
82  inline void SetBeamY(G4double val) { fY0 = val;};
83  inline void SetBeamZ(G4double val) { fZ0 = val;};
84  inline void SetBeamSigmaX(G4double val) { fSigmaX = val;};
85  inline void SetBeamSigmaY(G4double val) { fSigmaY = val;};
86  inline void SetBeamSigmaZ(G4double val) { fSigmaY = val;};
87  inline void SetBeamMinCosTheta(G4double val) { fMinCosTheta = val;};
88  inline void SetSigmaTheta(G4double val) { fSigmaTheta = val;};
89  inline void SetVerbose(G4int val) { fVerbose = val;};
90  inline void SetRandom(const G4String& type) { fGauss = type;};
91 
92  G4bool GetVerbose() const { return fVerbose; }
93 
94 private:
95 
96  void InitializeMe();
97 
100 
105 
117 };
118 
119 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
120 
121 #endif
122 
123 
124 
125 
126 
127 
double G4double
Definition: G4Types.hh:76
bool G4bool
Definition: G4Types.hh:79
The primary generator action class with particle gun.
int G4int
Definition: G4Types.hh:78
PrimaryGeneratorAction & operator=(const PrimaryGeneratorAction &right)
Simple detector construction with a box volume placed in a world.