Geant4  v4-10.4-release
 모두 클래스 네임스페이스들 파일들 함수 변수 타입정의 열거형 타입 열거형 멤버 Friends 매크로 그룹들 페이지들
G4Generator2BS.cc
이 파일의 문서화 페이지로 가기
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: G4Generator2BS.cc 104410 2017-05-30 07:17:09Z gcosmo $
27 //
28 // -------------------------------------------------------------------
29 //
30 // GEANT4 Class file
31 //
32 //
33 // File name: G4Generator2BS
34 //
35 // Author: Andreia Trindade (andreia@lip.pt)
36 // Pedro Rodrigues (psilva@lip.pt)
37 // Luis Peralta (luis@lip.pt)
38 //
39 // Creation date: 2 June 2003
40 //
41 // Modifications:
42 // 02 Jun 2003 First implementation acording with new design
43 // 05 Nov 2003 MGP Fixed std namespace
44 // 17 Nov 2003 MGP Fixed compilation problem on Windows
45 // 12 Oct 2010 V.Ivanchenko Moved RejectionFunction inline, use G4Pow to speadup
46 // 09 May 2011 L.Pandola Initialize private members, to avoid Coverity warning
47 //
48 // Class Description:
49 //
50 // Concrete base class for Bremsstrahlung Angular Distribution Generation
51 // 2BS Distribution
52 //
53 // Class Description: End
54 //
55 // -------------------------------------------------------------------
56 //
57 
58 #include "G4Generator2BS.hh"
59 #include "Randomize.hh"
60 #include "G4PhysicalConstants.hh"
61 #include "G4SystemOfUnits.hh"
62 #include "G4Pow.hh"
63 
65  : G4VEmAngularDistribution("AngularGen2BS"),fz(1),ratio(1),
66  ratio1(1),ratio2(1),delta(0)
67 {
69  nwarn = 0;
70 }
71 
73 {}
74 
76  G4double final_energy,
77  G4int Z,
78  const G4Material*)
79 {
80 
81  // Adapted from "Improved bremsstrahlung photon angular sampling in the EGS4 code system"
82  // by Alex F. Bielajew, Rahde Mohan anc Chen-Shou Chui, PIRS-0203
83  // Ionizing Radiation Standards
84  // Institute for National Measurement Standards
85  // National Research Council of Canada
86  // Departement of Medical Physics, Memorial Sloan-Kettering Cancer Center, New York
87 
89  ratio = final_energy/energy;
90  ratio1 = (1 + ratio)*(1 + ratio);
91  ratio2 = 1 + ratio*ratio;
92 
93  G4double gamma = energy/electron_mass_c2;
94  G4double beta = std::sqrt((gamma - 1)*(gamma + 1))/gamma;
95 
96  // VI speadup
97  fz = 0.00008116224*g4pow->Z13(Z)*g4pow->Z13(Z+1);
98 
99  // majoranta
100  G4double ymax = 2*beta*(1 + beta)*gamma*gamma;
101  G4double gMax = RejectionFunction(0.0);
102  gMax = std::max(gMax,RejectionFunction(ymax));
103 
104  G4double y, gfun;
105 
106  do{
107  G4double q = G4UniformRand();
108  y = q*ymax/(1 + ymax*(1 - q));
109  gfun = RejectionFunction(y);
110 
111  // violation point
112  if(gfun > gMax && nwarn >= 20) {
113  ++nwarn;
114  G4cout << "### WARNING in G4Generator2BS: Etot(MeV)= " << energy/MeV
115  << " Egamma(MeV)" << (energy - final_energy)/MeV
116  << " gMax= " << gMax << " < " << gfun
117  << " results are not reliable!"
118  << G4endl;
119  if(20 == nwarn) {
120  G4cout << " WARNING in G4Generator2BS is closed" << G4endl;
121  }
122  }
123 
124  } while(G4UniformRand()*gMax > gfun || y > ymax);
125 
126 
127  G4double cost = 1 - 2*y/ymax;
128  G4double sint = std::sqrt((1 - cost)*(1 + cost));
129  G4double phi = twopi*G4UniformRand();
130 
131  fLocalDirection.set(sint*std::cos(phi), sint*std::sin(phi),cost);
133 
134  return fLocalDirection;
135 }
136 
138 {
139  G4cout << "\n" << G4endl;
140  G4cout << "Bremsstrahlung Angular Generator is 2BS Generator "
141  << "from 2BS Koch & Motz distribution (Rev Mod Phys 31(4), 920 (1959))" << G4endl;
142  G4cout << "Sampling algorithm adapted from PIRS-0203" << G4endl;
143  G4cout << "\n" << G4endl;
144 }
145 
void set(double x, double y, double z)
T max(const T t1, const T t2)
brief Return the largest of the two arguments
virtual ~G4Generator2BS()
virtual G4ThreeVector & SampleDirection(const G4DynamicParticle *dp, G4double out_energy, G4int Z, const G4Material *mat=nullptr)
G4double Z13(G4int Z) const
Definition: G4Pow.hh:132
static constexpr double MeV
Definition: G4SIunits.hh:214
#define G4endl
Definition: G4ios.hh:61
const G4ThreeVector & GetMomentumDirection() const
Float_t y
Definition: compare.C:6
G4Generator2BS(const G4String &name="")
Hep3Vector & rotateUz(const Hep3Vector &)
Definition: ThreeVector.cc:38
Double_t beta
Float_t Z
double G4double
Definition: G4Types.hh:76
static G4Pow * GetInstance()
Definition: G4Pow.cc:57
static constexpr double electron_mass_c2
#define G4UniformRand()
Definition: Randomize.hh:53
static constexpr double twopi
Definition: G4SIunits.hh:76
double energy
Definition: plottest35.C:25
int G4int
Definition: G4Types.hh:78
G4GLOB_DLL std::ostream G4cout
G4double RejectionFunction(G4double value) const
G4double GetTotalEnergy() const
void PrintGeneratorInformation() const