Class Reference for E1039 Core & Analysis Software
SQCosmicGen.cc
Go to the documentation of this file.
1 #include "SQCosmicGen.h"
2 
3 #include "PHG4Particlev2.h"
4 #include "PHG4InEvent.h"
5 #include "PHG4VtxPoint.h"
7 
9 #include <phool/getClass.h>
10 
11 #include <phool/PHCompositeNode.h>
12 #include <phool/PHIODataNode.h>
13 #include <phool/PHRandomSeed.h>
14 
15 #include <Geant4/G4ParticleTable.hh>
16 #include <Geant4/G4ParticleDefinition.hh>
17 
18 #include <TMath.h>
19 
20 #include <cstdlib>
21 #include <cmath>
22 #include <cassert>
23 
24 SQCosmicGen::SQCosmicGen(const std::string& name):
26  _ineve(nullptr),
27  _mom_min(1.),
28  _mom_max(100.),
29  _theta_min(0.),
30  _theta_max(0.5*TMath::Pi()),
31  _prob_mup(1.3/(1. + 1.3)),
32  _prob_mum(1./(1. + 1.3)),
33  _p0(55.6),
34  _p1(1.04),
35  _p2(64.0),
36  _altitude(1000.),
37  _size_x(800.),
38  _size_z(4000.),
39  _prob_max(1.),
40  _rndm(PHRandomSeed())
41 {
42  _req_st[0] = false;
43  _req_st[1] = false;
44  _req_st[2] = true;
45  _req_st[3] = true;
46  _req_st[4] = false;
47 
48  _z_st[0] = 620.;
49  _z_st[1] = 690.;
50  _z_st[2] = 1320.;
51  _z_st[3] = 1900.;
52  _z_st[4] = 2250.;
53 
54  _size_x_st[0] = 102./2.;
55  _size_x_st[1] = 152./2.;
56  _size_x_st[2] = 233./2.;
57  _size_x_st[3] = 320./2.;
58  _size_x_st[4] = 368./2.;
59 
60  _size_y_st[0] = 122./2.;
61  _size_y_st[1] = 137./2.;
62  _size_y_st[2] = 264./2.;
63  _size_y_st[3] = 166.;
64  _size_y_st[4] = 368./2.;
65 }
66 
68 {
69  _ineve = findNode::getClass<PHG4InEvent>(topNode, "PHG4INEVENT");
70  if(!_ineve)
71  {
72  PHNodeIterator iter(topNode);
73  PHCompositeNode* dstNode;
74  dstNode = dynamic_cast<PHCompositeNode*>(iter.findFirst("PHCompositeNode", "DST"));
75 
76  _ineve = new PHG4InEvent();
77  PHIODataNode<PHObject> *newNode = new PHIODataNode<PHObject>(_ineve, "PHG4INEVENT", "PHObject");
78  dstNode->addNode(newNode);
79  }
80 
82 }
83 
84 void SQCosmicGen::set_mom_range(const double lo, const double hi)
85 {
86  _mom_min = lo;
87  _mom_max = hi;
88 
89  if(_mom_min < 1.)
90  {
91  if(Verbosity() > 2) std::cout << Name() << ": mom_min should be larger than 1 GeV" << std::endl;
92  _mom_min = 1.;
93  }
94 
95  if(_theta_max > 1000.)
96  {
97  if(Verbosity() > 2) std::cout << Name() << ": mom_max should be smaller than 1 TeV" << std::endl;
98  _mom_max = 1000.;
99  }
100 
101  _prob_max = cosmicProb(_mom_min, 0.);
102 }
103 
104 void SQCosmicGen::set_theta_range(const double lo, const double hi)
105 {
106  _theta_min = lo;
107  _theta_max = hi;
108 
109  if(_theta_min < -0.5*TMath::Pi())
110  {
111  if(Verbosity() > 2) std::cout << Name() << ": theta_min should be larger than -pi/2." << std::endl;
112  _theta_min = -0.5*TMath::Pi();
113  }
114 
115  if(_theta_max > 0.5*TMath::Pi())
116  {
117  if(Verbosity() > 2) std::cout << Name() << ": theta_max should be smaller than pi/2." << std::endl;
118  _theta_max = 0.5*TMath::Pi();
119  }
120 }
121 
122 void SQCosmicGen::set_charge_ratio(const double p, const double n)
123 {
124  _prob_mup = p/(p + n);
125  _prob_mum = n/(p + n);
126 }
127 
129 {
130  //Generate the charge randomly according to the charge ratio of 1.25
131  int pdgcode = _rndm.Rndm() < _prob_mup ? -13 : 13;
132  std::string pdgname = get_pdgname(pdgcode);
133 
134  //Generate 3-momentum based on the probability function
135  int nTries = 0;
136  bool cosmic = false;
137  bool accepted = false;
138  double x_vtx, z_vtx, y_vtx = _altitude;
139  double p, px, py, pz;
140  while(!cosmic || !accepted)
141  {
142  ++nTries;
143 
144  p = uniformRand(_mom_min, _mom_max);
145  double theta = uniformRand(_theta_min, _theta_max);
146  double phi = _rndm.Rndm()*TMath::Pi();
147  py = -p*TMath::Cos(theta);
148  px = p*TMath::Sin(theta)*TMath::Cos(phi);
149  pz = p*TMath::Sin(theta)*TMath::Sin(phi);
150 
151  cosmic = _rndm.Rndm() < (cosmicProb(p, theta)/_prob_max);
152  if(!cosmic) continue;
153 
154  accepted = generateVtx(px/pz, py/pz, x_vtx, y_vtx, z_vtx);
155  }
156 
157  //Generate a muon and set common features
158  int vtxID = _ineve->AddVtx(x_vtx, y_vtx, z_vtx, 0.);
159  PHG4Particle* particle = new PHG4Particlev2();
160  particle->set_track_id(0);
161  particle->set_vtx_id(vtxID);
162  particle->set_parent_id(0);
163  particle->set_pid(pdgcode);
164  particle->set_name(pdgname);
165 
166  double m = 0.105658;
167  double e = TMath::Sqrt(p*p + m*m);
168  particle->set_px(px);
169  particle->set_py(py);
170  particle->set_pz(pz);
171  particle->set_e(e);
172  _ineve->AddParticle(vtxID, particle); //ownership of particle is transferred to _ineve and released in its Reset action
173 
175  {
176  _ineve->identify();
177  std::cout << nTries << " -------------------------------------------------------------------" << std::endl;
178  }
179 
181 }
182 
183 void SQCosmicGen::getZVtxLimits(int stationID, double ty, double y, double& min, double& max)
184 {
185  double v1 = (y + ty*_z_st[stationID] + _size_y_st[stationID])/ty;
186  double v2 = (y + ty*_z_st[stationID] - _size_y_st[stationID])/ty;
187  if(v1 < v2)
188  {
189  min = std::max(v1, min);
190  max = std::min(v2, max);
191  }
192  else
193  {
194  min = std::max(v2, min);
195  max = std::min(v1, max);
196  }
197 }
198 
199 void SQCosmicGen::getXVtxLimits(int stationID, double tx, double z, double& min, double& max)
200 {
201  double v1 = -_size_x_st[stationID] - tx*(_z_st[stationID] - z);
202  double v2 = _size_x_st[stationID] - tx*(_z_st[stationID] - z);
203  if(v1 < v2)
204  {
205  min = std::max(v1, min);
206  max = std::min(v2, max);
207  }
208  else
209  {
210  min = std::max(v2, min);
211  max = std::min(v1, max);
212  }
213 }
214 
215 bool SQCosmicGen::acceptedInSt(int stationID, double x, double y, double z, double tx, double ty)
216 {
217  return fabs(x + tx*(_z_st[stationID] - z)) < _size_x_st[stationID] &&
218  fabs(y + ty*(_z_st[stationID] - z)) < _size_y_st[stationID];
219 }
220 
221 bool SQCosmicGen::generateVtx(double tx, double ty, double& x, double& y, double& z)
222 {
223  double z_min = -999999.;
224  double z_max = 999999.;
225  for(int i = 0; i < 5; ++i)
226  {
227  if(!_req_st[i]) continue;
228  getZVtxLimits(i, ty, y, z_min, z_max);
229  }
230  if(z_max < z_min) return false;
231  z = uniformRand(z_min, z_max);
232 
233  double x_min = -999999.;
234  double x_max = 999999.;
235  for(int i = 0; i < 5; ++i)
236  {
237  if(!_req_st[i]) continue;
238  getXVtxLimits(i, tx, z, x_min, x_max);
239  }
240  if(x_max < x_min) return false;
241  x = uniformRand(x_min, x_max);
242 
243  for(int i = 0; i < 5; ++i)
244  {
245  if(!_req_st[i]) continue;
246  if(!acceptedInSt(i, x, y, z, tx, ty)) return false;
247  }
248  return true;
249 }
250 
251 double SQCosmicGen::cosmicProb(double p, double theta)
252 {
253  return TMath::Power(_p0, TMath::Cos(_p1*theta))/p/p/_p2;
254 }
255 
256 double SQCosmicGen::uniformRand(const double lo, const double hi)
257 {
258  return lo + (hi - lo)*_rndm.Rndm();
259 }
virtual const std::string Name() const
Returns the name of this module.
Definition: Fun4AllBase.h:23
@ VERBOSITY_A_LOT
Output a lot of messages.
Definition: Fun4AllBase.h:48
virtual int Verbosity() const
Gets the verbosity of this module.
Definition: Fun4AllBase.h:64
PHBoolean addNode(PHNode *)
int AddParticle(const int vtxid, PHG4Particle *particle)
Definition: PHG4InEvent.cc:63
int AddVtx(const double x, const double y, const double z, const double t)
Definition: PHG4InEvent.cc:38
virtual void identify(std::ostream &os=std::cout) const
Definition: PHG4InEvent.cc:134
std::string get_pdgname(const int pdgcode) const
virtual void set_parent_id(const int i)
Definition: PHG4Particle.h:30
virtual void set_vtx_id(const int i)
Definition: PHG4Particle.h:29
virtual void set_pid(const int i)
Definition: PHG4Particle.h:33
virtual void set_e(const double e)
Definition: PHG4Particle.h:37
virtual void set_py(const double x)
Definition: PHG4Particle.h:35
virtual void set_track_id(const int i)
Definition: PHG4Particle.h:28
virtual void set_name(const std::string &name)
Definition: PHG4Particle.h:32
virtual void set_px(const double x)
Definition: PHG4Particle.h:34
virtual void set_pz(const double x)
Definition: PHG4Particle.h:36
PHNode * findFirst(const std::string &, const std::string &)
void set_mom_range(const double lo, const double hi)
Definition: SQCosmicGen.cc:84
int InitRun(PHCompositeNode *topNode)
Definition: SQCosmicGen.cc:67
void set_charge_ratio(const double p, const double n)
Definition: SQCosmicGen.cc:122
int process_event(PHCompositeNode *topNode)
Definition: SQCosmicGen.cc:128
void set_theta_range(const double lo, const double hi)
Definition: SQCosmicGen.cc:104
SQCosmicGen(const std::string &name="COSMICGEN")
Definition: SQCosmicGen.cc:24