15 #include <Geant4/G4ParticleTable.hh>
16 #include <Geant4/G4ParticleDefinition.hh>
19 #include <TGenPhaseSpace.h>
30 _enable_geom_cut(true),
31 _enable_real_mom_dist(true),
32 _ctau(2.6E-8*29979245800.),
42 for(
int i = 0; i < 6; ++i) _pz_dist[i] =
nullptr;
54 _ineve = findNode::getClass<PHG4InEvent>(topNode,
"PHG4INEVENT");
62 _pt_dist =
new TF1(
"PtDistr",
"TMath::Landau(x, 0.416742, 0.174227)", 0., _pt_max);
63 _pz_dist[0] =
new TF1(
"PzDistr1",
"0.161*(x^-2.396)", _mom_min, _mom_max);
64 _pz_dist[1] =
new TF1(
"PzDistr2",
"0.527*(x^-1.996)", _mom_min, _mom_max);
65 _pz_dist[2] =
new TF1(
"PzDistr3",
"0.489*(x^-2.200)", _mom_min, _mom_max);
66 _pz_dist[3] =
new TF1(
"PzDistr4",
"0.302*(x^-1.900)", _mom_min, _mom_max);
67 _pz_dist[4] =
new TF1(
"PzDistr5",
"0.174*(x^-1.750)", _mom_min, _mom_max);
68 _pz_dist[5] =
new TF1(
"PzDistr6",
"0.909*(x^-1.850)", _mom_min > 8. ? _mom_min : 8., _mom_max);
75 for(
int i = 0; i < 6; ++i)
77 if(_pz_dist[i] !=
nullptr)
delete _pz_dist[i];
79 if(_pt_dist !=
nullptr)
delete _pt_dist;
85 bool accepted =
false;
90 generateMotherParticle();
93 decayMotherParticle();
95 accepted = _enable_geom_cut ? geometryCut() :
true;
99 if(
Verbosity() > 10) std::cout <<
"Generated single muon within acceptance after " << nTries <<
" tries." << std::endl;
101 int pdgcode = _truth->
motherPid > 0 ? 13 : -13;
113 double e = TMath::Sqrt(_truth->
muMom.Mag2() + _m_muon*_m_muon);
128 void SQSingleMuonGen::generateMotherParticle()
130 int pid = _rndm.Rndm() < _charge_ratio ? 211 : -211;
134 if(_enable_real_mom_dist)
136 pt = _pt_dist->GetRandom();
139 pz = _pz_dist[0]->GetRandom();
143 pz = _pz_dist[1]->GetRandom();
147 pz = _pz_dist[2]->GetRandom();
151 pz = _pz_dist[3]->GetRandom();
155 pz = _pz_dist[4]->GetRandom();
159 pz = _pz_dist[5]->GetRandom();
164 pz = _mom_min + (_mom_max - _mom_min)*_rndm.Rndm();
165 pt = _rndm.Rndm()*_pt_max;
168 double phi = _rndm.Rndm()*TMath::TwoPi();
169 double px = pt*TMath::Cos(phi);
170 double py = pt*TMath::Sin(phi);
173 _truth->
motherMom = TVector3(px, py, pz);
176 void SQSingleMuonGen::decayMotherParticle()
178 TGenPhaseSpace evtgen;
179 double m[2] = {_m_muon, 0.};
183 evtgen.SetDecay(W, 2, m);
186 TLorentzVector* p = evtgen.GetDecay(0);
187 _truth->
muMom = p->Vect();
190 double ctau1 = _ctau*W.Gamma();
195 bool SQSingleMuonGen::geometryCut()
197 if(fabs(_truth->
muMom.Px()/_truth->
muMom.Pz()) > 0.15)
return false;
198 if(fabs(_truth->
muMom.Py()/_truth->
muMom.Pz()) > 0.15)
return false;
199 if(_truth->
muMom.Mag() < 10.)
return false;
205 bool SQSingleMuonGen::generatePrimaryVtx()
@ 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 &)
virtual ~SQSingleMuonGen()
SQSingleMuonGen(const std::string &name="SINGLEGEN")
int InitRun(PHCompositeNode *topNode)
int process_event(PHCompositeNode *topNode)