ECCE @ EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
MedicalBeam.cc
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file MedicalBeam.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 //
29 
30 #include <cmath>
31 #include "G4Event.hh"
32 #include "G4ParticleTable.hh"
33 #include "G4PrimaryVertex.hh"
34 #include "Randomize.hh"
35 #include "MedicalBeam.hh"
36 
37 using namespace CLHEP;
38 
39 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
41  : fparticle(0), fkineticE(1.*MeV), fsourcePosition(G4ThreeVector()),
42  fSSD(1.*m), ffieldShape(MedicalBeam::kSQUARE), ffieldR(10.*cm)
43 {
45  fparticle = particleTable-> FindParticle("proton");
46 
47  fkineticE = 200.*MeV;
48  fsourcePosition = G4ThreeVector(0.,0.,-125.*cm);
49  fSSD = 100.*cm;
50  ffieldXY[0] = ffieldXY[1] = 5.*cm;
51 }
52 
53 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
55 {
56 }
57 
58 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
60 {
61  // uniform distribution in a limitted solid angle
62  G4double dr;
63  if ( ffieldShape == MedicalBeam::kSQUARE ) {
64  dr = std::sqrt(sqr(ffieldXY[0]/2.) + sqr(ffieldXY[1]/2.));
65  } else {
66  dr = ffieldR;
67  }
68 
69  G4double sin0 = dr/fSSD;
70  G4double cos0 = std::sqrt(1.-sqr(sin0));
71 
72  G4double dcos = 0.;
73  G4double dsin, dphi, z;
74 
75  G4double x = DBL_MAX;
76  G4double y = DBL_MAX;
77 
79  if ( ffieldShape == MedicalBeam::kSQUARE ) {
80  xmax = ffieldXY[0]/2./fSSD;
81  ymax = ffieldXY[1]/2./fSSD;
82  } else {
83  xmax = ymax = DBL_MAX-1.;
84  }
85 
86  while(! (std::abs(x) < xmax && std::abs(y) < ymax) ) {
87  dcos = G4RandFlat::shoot(cos0, 1.);
88  dsin = std::sqrt(1.-sqr(dcos));
89  dphi = G4RandFlat::shoot(0., twopi);
90 
91  x = std::cos(dphi)*dsin*dcos;
92  y = std::sin(dphi)*dsin*dcos;
93  }
94  z = dcos;
95 
96  return G4ThreeVector(x,y,z);
97 }
98 
99 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
101 {
102  if ( fparticle == NULL ) return;
103 
104  // create a new vertex
105  G4PrimaryVertex* vertex = new G4PrimaryVertex(fsourcePosition, 0.*ns);
106 
107  // momentum
108  G4double mass = fparticle-> GetPDGMass();
109  G4double p = std::sqrt(sqr(mass+fkineticE)-sqr(mass));
110  G4ThreeVector pmon = p*GenerateBeamDirection();
111  G4PrimaryParticle* primary =
112  new G4PrimaryParticle(fparticle, pmon.x(), pmon.y(), pmon.z());
113 
114  // set primary to vertex
115  vertex-> SetPrimary(primary);
116 
117  // set vertex to event
118  anEvent-> AddPrimaryVertex(vertex);
119 }