15 #include <Geant4/G4ParticleTable.hh>
16 #include <Geant4/G4ParticleDefinition.hh>
30 _theta_max(0.5*TMath::Pi()),
31 _prob_mup(1.3/(1. + 1.3)),
32 _prob_mum(1./(1. + 1.3)),
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.;
60 _size_y_st[0] = 122./2.;
61 _size_y_st[1] = 137./2.;
62 _size_y_st[2] = 264./2.;
64 _size_y_st[4] = 368./2.;
69 _ineve = findNode::getClass<PHG4InEvent>(topNode,
"PHG4INEVENT");
91 if(
Verbosity() > 2) std::cout <<
Name() <<
": mom_min should be larger than 1 GeV" << std::endl;
95 if(_theta_max > 1000.)
97 if(
Verbosity() > 2) std::cout <<
Name() <<
": mom_max should be smaller than 1 TeV" << std::endl;
101 _prob_max = cosmicProb(_mom_min, 0.);
109 if(_theta_min < -0.5*TMath::Pi())
111 if(
Verbosity() > 2) std::cout <<
Name() <<
": theta_min should be larger than -pi/2." << std::endl;
112 _theta_min = -0.5*TMath::Pi();
115 if(_theta_max > 0.5*TMath::Pi())
117 if(
Verbosity() > 2) std::cout <<
Name() <<
": theta_max should be smaller than pi/2." << std::endl;
118 _theta_max = 0.5*TMath::Pi();
124 _prob_mup = p/(p + n);
125 _prob_mum = n/(p + n);
131 int pdgcode = _rndm.Rndm() < _prob_mup ? -13 : 13;
137 bool accepted =
false;
138 double x_vtx, z_vtx, y_vtx = _altitude;
139 double p, px, py, pz;
140 while(!cosmic || !accepted)
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);
151 cosmic = _rndm.Rndm() < (cosmicProb(p, theta)/_prob_max);
152 if(!cosmic)
continue;
154 accepted = generateVtx(px/pz, py/pz, x_vtx, y_vtx, z_vtx);
158 int vtxID = _ineve->
AddVtx(x_vtx, y_vtx, z_vtx, 0.);
167 double e = TMath::Sqrt(p*p + m*m);
177 std::cout << nTries <<
" -------------------------------------------------------------------" << std::endl;
183 void SQCosmicGen::getZVtxLimits(
int stationID,
double ty,
double y,
double& min,
double& max)
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;
189 min = std::max(v1, min);
190 max = std::min(v2, max);
194 min = std::max(v2, min);
195 max = std::min(v1, max);
199 void SQCosmicGen::getXVtxLimits(
int stationID,
double tx,
double z,
double& min,
double& max)
201 double v1 = -_size_x_st[stationID] - tx*(_z_st[stationID] - z);
202 double v2 = _size_x_st[stationID] - tx*(_z_st[stationID] - z);
205 min = std::max(v1, min);
206 max = std::min(v2, max);
210 min = std::max(v2, min);
211 max = std::min(v1, max);
215 bool SQCosmicGen::acceptedInSt(
int stationID,
double x,
double y,
double z,
double tx,
double ty)
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];
221 bool SQCosmicGen::generateVtx(
double tx,
double ty,
double& x,
double& y,
double& z)
223 double z_min = -999999.;
224 double z_max = 999999.;
225 for(
int i = 0; i < 5; ++i)
227 if(!_req_st[i])
continue;
228 getZVtxLimits(i, ty, y, z_min, z_max);
230 if(z_max < z_min)
return false;
231 z = uniformRand(z_min, z_max);
233 double x_min = -999999.;
234 double x_max = 999999.;
235 for(
int i = 0; i < 5; ++i)
237 if(!_req_st[i])
continue;
238 getXVtxLimits(i, tx, z, x_min, x_max);
240 if(x_max < x_min)
return false;
241 x = uniformRand(x_min, x_max);
243 for(
int i = 0; i < 5; ++i)
245 if(!_req_st[i])
continue;
246 if(!acceptedInSt(i, x, y, z, tx, ty))
return false;
251 double SQCosmicGen::cosmicProb(
double p,
double theta)
253 return TMath::Power(_p0, TMath::Cos(_p1*theta))/p/p/_p2;
256 double SQCosmicGen::uniformRand(
const double lo,
const double hi)
258 return lo + (hi - lo)*_rndm.Rndm();
virtual const std::string Name() const
Returns the name of this module.
@ VERBOSITY_A_LOT
Output a lot of messages.
virtual int Verbosity() const
Gets the verbosity of this module.
PHBoolean addNode(PHNode *)
int AddParticle(const int vtxid, PHG4Particle *particle)
int AddVtx(const double x, const double y, const double z, const double t)
virtual void identify(std::ostream &os=std::cout) const
std::string get_pdgname(const int pdgcode) const
virtual void set_parent_id(const int i)
virtual void set_vtx_id(const int i)
virtual void set_pid(const int i)
virtual void set_e(const double e)
virtual void set_py(const double x)
virtual void set_track_id(const int i)
virtual void set_name(const std::string &name)
virtual void set_px(const double x)
virtual void set_pz(const double x)
PHNode * findFirst(const std::string &, const std::string &)
void set_mom_range(const double lo, const double hi)
int InitRun(PHCompositeNode *topNode)
void set_charge_ratio(const double p, const double n)
int process_event(PHCompositeNode *topNode)
void set_theta_range(const double lo, const double hi)
SQCosmicGen(const std::string &name="COSMICGEN")