Geant4  v4-10.4-release
 모두 클래스 네임스페이스들 파일들 함수 변수 타입정의 열거형 타입 열거형 멤버 Friends 매크로 그룹들 페이지들
G4BetheHeitler5DModel.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: $
27 //
28 // -------------------------------------------------------------------
29 //
30 // GEANT4 Class header file
31 //
32 //
33 // File name: G4BetheHeitler5DModel
34 //
35 // Authors:
36 // Igor Semeniouk and Denis Bernard,
37 // LLR, Ecole polytechnique & CNRS/IN2P3, 91128 Palaiseau, France
38 //
39 // Modifications:
40 // 27-10-17 New class (IgS)
41 // 19-01-18 version that calculates the pdf in the same way as in the fortran
42 // version (Denis Bernard)
43 // 04-06-18 Performance optimization of the final state sampling (M. Novak)
44 //
45 // Class Description:
46 //
47 // Implementation of gamma convertion to e+e- in the field of a nucleus
48 //
49 
50 // -------------------------------------------------------------------
51 //
52 
53 #ifndef G4BetheHeitler5DModel_h
54 #define G4BetheHeitler5DModel_h 1
55 
56 #include "G4BetheHeitlerModel.hh"
57 
58 class G4IonTable;
59 
61 {
62 
63 public:
64 
65  explicit G4BetheHeitler5DModel(const G4ParticleDefinition* p = nullptr,
66  const G4String& nam = "BetheHeitler5D");
67 
68  virtual ~G4BetheHeitler5DModel();
69 
70  virtual void Initialise(const G4ParticleDefinition*,
71  const G4DataVector&) final;
72 
73  void SampleSecondaries(std::vector<G4DynamicParticle*>* fvect,
74  const G4MaterialCutsCouple* couple,
75  const G4DynamicParticle* aDynamicGamma,
76  G4double, G4double) final;
77 
78  inline void SetVerbose(G4int val) { fVerbose = val; }
79 
80 private:
81 
82  // hide assignment operator
85 
87  G4LorentzVector& res) const;
88 
89  void BoostG4LorentzVector(const G4LorentzVector& p, const G4double qz,
90  const G4double qt, const G4double lffac,
91  const G4double imass, G4LorentzVector& res) const;
92 
94  G4double e, G4double loge) const;
95 
97 
101 };
102 #endif
void SampleSecondaries(std::vector< G4DynamicParticle * > *fvect, const G4MaterialCutsCouple *couple, const G4DynamicParticle *aDynamicGamma, G4double, G4double) final
const char * p
Definition: xmltok.h:285
G4BetheHeitler5DModel(const G4ParticleDefinition *p=nullptr, const G4String &nam="BetheHeitler5D")
double G4double
Definition: G4Types.hh:76
bool G4bool
Definition: G4Types.hh:79
G4double MaxDiffCrossSection(const G4double *par, G4double eZ, G4double e, G4double loge) const
G4BetheHeitler5DModel & operator=(const G4BetheHeitler5DModel &right)=delete
void BoostG4LorentzVector(const G4LorentzVector &p, const G4LorentzVector &q, G4LorentzVector &res) const
virtual void Initialise(const G4ParticleDefinition *, const G4DataVector &) final
int G4int
Definition: G4Types.hh:78