2 #include <TLorentzVector.h>
17 if (do_assert) assert(dim);
27 const double M_P = 0.938;
28 const double E_BEAM = 120.0;
30 const TLorentzVector p_target(0, 0, 0,
M_P);
31 const TLorentzVector p_cms = p_beam + p_target;
33 x1 = (p_target*p_sum)/(p_target*p_cms);
34 x2 = (p_beam *p_sum)/(p_beam *p_cms);
83 void UtilDimuon::CalcVar(
const TLorentzVector& p_pos,
const TLorentzVector& p_neg,
double& mass,
double& pT,
double& x1,
double& x2,
double& xF)
85 const Double_t mp = 0.938;
86 const Double_t ebeam = 120.;
87 const TLorentzVector p_beam (0., 0., sqrt(ebeam*ebeam - mp*mp), ebeam);
88 const TLorentzVector p_target(0., 0., 0., mp);
89 const TLorentzVector p_cms = p_beam + p_target;
91 TLorentzVector p_sum = p_pos + p_neg;
94 x1 = (p_target*p_sum)/(p_target*p_cms);
95 x2 = (p_beam *p_sum)/(p_beam *p_cms);
97 Double_t s = p_cms.M2();
98 Double_t sqrts = p_cms.M();
99 TVector3 bv_cms = p_cms.BoostVector();
100 p_sum.Boost(-bv_cms);
101 xF = 2 * p_sum.Pz() / sqrts / (1 - pow(mass,2) / s);
118 void UtilDimuon::CalcVar(
const TLorentzVector& p_pos,
const TLorentzVector& p_neg,
double& mass,
double& pT,
double& x1,
double& x2,
double& xF,
double& costh,
double& phi)
120 CalcVar(p_pos, p_neg, mass, pT, x1, x2, xF);
139 Lab2CollinsSoper(p1.X(), p1.Y(), p1.Z(), p2.X(), p2.Y(), p2.Z(), costh, phi);
148 const double px2,
const double py2,
const double pz2,
double& costh,
double& phi)
150 const double m_mu = 0.1056;
153 mom1.SetXYZM(px1, py1, pz1, m_mu);
154 mom2.SetXYZM(px2, py2, pz2, m_mu);
157 const double m_p = 0.938;
158 const double E_p = 120.0;
159 const double p_p = sqrt(E_p*E_p - m_p*m_p);
160 const double beta = p_p/E_p;
161 mom1.Boost(0,0,-beta);
162 mom2.Boost(0,0,-beta);
165 TLorentzVector Q = mom1 + mom2;
166 double k1p = mom1.E() + mom1.Pz();
167 double k2p = mom2.E() + mom2.Pz();
168 double k1m = mom1.E() - mom1.Pz();
169 double k2m = mom2.E() - mom2.Pz();
170 costh = 1.0/Q.M()/sqrt(Q*Q + Q.Px()*Q.Px() + Q.Py()*Q.Py())*(k1p*k2m - k1m*k2p);
173 TVector3 Delta(mom1.Px() - mom2.Px(), mom1.Py() - mom2.Py(), mom1.Pz() - mom2.Pz());
174 TVector3 Q3(Q.Px(),Q.Py(),Q.Pz());
175 TVector3 PA(0, 0, p_p);
176 TVector3 R = PA.Cross(Q3);
177 TVector3 RHat = R.Unit();
180 double tanphi = sqrt(Q*Q + Q.Px()*Q.Px() + Q.Py()*Q.Py()) / Q.M() * (Delta.X()*RHat.X() + Delta.Y()*RHat.Y()) / (Delta.X()*QT.Unit().X() + Delta.Y()*QT.Unit().Y());
183 double sinth = sin( acos(costh) );
184 double sinphi = (Delta.X()*RHat.X() + Delta.Y()*RHat.Y())/(Q.M()*sinth);
188 if (tanphi >= 0 && sinphi >= 0) {;}
189 else if (tanphi < 0 && sinphi > 0) {phi += TMath::Pi();}
190 else if (tanphi > 0 && sinphi < 0) {phi += TMath::Pi();}
191 else if (tanphi < 0 && sinphi < 0) {phi += 2*TMath::Pi();}
An SQ interface class to hold a list of SQDimuon objects.
std::vector< SQDimuon * >::const_iterator ConstIter
virtual ConstIter begin() const =0
virtual ConstIter end() const =0
An SQ interface class to hold one true or reconstructed dimuon.
virtual TLorentzVector get_mom_neg() const =0
Return the momentum of the negative track at vertex.
virtual int get_dimuon_id() const =0
Return the dimuon ID, which is unique per event(?).
virtual TLorentzVector get_mom_pos() const =0
Return the momentum of the positive track at vertex.
void GetX1X2(const SQDimuon *dim, double &x1, double &x2)
OBSOLETE: Use CalcVar() instead.
SQDimuon * FindDimuonByID(const SQDimuonVector *vec, const int id_dim, const bool do_assert=false)
Find a dimuon by dimuon ID in the given dimuon list.
double GetX1(const SQDimuon *dim)
OBSOLETE: Use CalcVar() instead.
void CalcVar(const SQDimuon *dim, double &mass, double &pT, double &x1, double &x2, double &xF)
Calculate the key kinematic variables of dimuon.
double GetX2(const SQDimuon *dim)
OBSOLETE: Use CalcVar() instead.
void Lab2CollinsSoper(const SQDimuon *dim, double &costh, double &phi)
Convert the momenta of muon pair from Lab frame to Collins-Soper frame.