Class Reference for E1039 Core & Analysis Software
UtilDimuon.cc
Go to the documentation of this file.
1 #include <cassert>
2 #include <TLorentzVector.h>
4 #include "UtilDimuon.h"
5 using namespace std;
6 
8 
12 SQDimuon* UtilDimuon::FindDimuonByID(const SQDimuonVector* vec, const int id_dim, const bool do_assert)
13 {
14  for (SQDimuonVector::ConstIter it = vec->begin(); it != vec->end(); it++) {
15  SQDimuon* dim = *it;
16  if (dim->get_dimuon_id() == id_dim) {
17  if (do_assert) assert(dim);
18  return dim;
19  }
20  }
21  return 0;
22 }
23 
25 void UtilDimuon::GetX1X2(const SQDimuon* dim, double& x1, double& x2)
26 {
27  const double M_P = 0.938;
28  const double E_BEAM = 120.0;
29  const TLorentzVector p_beam (0, 0, sqrt(E_BEAM*E_BEAM - M_P*M_P), E_BEAM);
30  const TLorentzVector p_target(0, 0, 0, M_P);
31  const TLorentzVector p_cms = p_beam + p_target;
32  TLorentzVector p_sum = dim->get_mom_pos() + dim->get_mom_neg();
33  x1 = (p_target*p_sum)/(p_target*p_cms);
34  x2 = (p_beam *p_sum)/(p_beam *p_cms);
35 }
36 
38 void UtilDimuon::GetX1X2(const SQDimuon* dim, float& x1, float& x2)
39 {
40  double x1d, x2d;
41  GetX1X2(dim, x1d, x2d);
42  x1 = x1d;
43  x2 = x2d;
44 }
45 
47 double UtilDimuon::GetX1(const SQDimuon* dim)
48 {
49  double x1, x2;
50  GetX1X2(dim, x1, x2);
51  return x1;
52 }
53 
55 double UtilDimuon::GetX2(const SQDimuon* dim)
56 {
57  double x1, x2;
58  GetX1X2(dim, x1, x2);
59  return x2;
60 }
61 
63 
70 void UtilDimuon::CalcVar(const SQDimuon* dim, double& mass, double& pT, double& x1, double& x2, double& xF)
71 {
72  CalcVar(dim->get_mom_pos(), dim->get_mom_neg(), mass, pT, x1, x2, xF);
73 }
74 
76 
83 void UtilDimuon::CalcVar(const TLorentzVector& p_pos, const TLorentzVector& p_neg, double& mass, double& pT, double& x1, double& x2, double& xF)
84 {
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;
90 
91  TLorentzVector p_sum = p_pos + p_neg;
92  mass = p_sum.M();
93  pT = p_sum.Perp();
94  x1 = (p_target*p_sum)/(p_target*p_cms);
95  x2 = (p_beam *p_sum)/(p_beam *p_cms);
96 
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);
102 }
103 
105 
112 void UtilDimuon::CalcVar(const SQDimuon* dim, double& mass, double& pT, double& x1, double& x2, double& xF, double& costh, double& phi)
113 {
114  CalcVar(dim->get_mom_pos(), dim->get_mom_neg(), mass, pT, x1, x2, xF, costh, phi);
115 }
116 
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)
119 {
120  CalcVar(p_pos, p_neg, mass, pT, x1, x2, xF);
121  Lab2CollinsSoper(p_pos.Vect(), p_neg.Vect(), costh, phi);
122 }
123 
125 void UtilDimuon::Lab2CollinsSoper(const SQDimuon* dim, double& costh, double& phi)
126 {
127  Lab2CollinsSoper(dim->get_mom_pos().Vect(), dim->get_mom_neg().Vect(), costh, phi);
128 }
129 
131 void UtilDimuon::Lab2CollinsSoper(const TLorentzVector& p1, const TLorentzVector& p2, double& costh, double& phi)
132 {
133  Lab2CollinsSoper(p1.Vect(), p2.Vect(), costh, phi);
134 }
135 
137 void UtilDimuon::Lab2CollinsSoper(const TVector3& p1, const TVector3& p2, double& costh, double& phi)
138 {
139  Lab2CollinsSoper(p1.X(), p1.Y(), p1.Z(), p2.X(), p2.Y(), p2.Z(), costh, phi);
140 }
141 
143 
147 void UtilDimuon::Lab2CollinsSoper(const double px1, const double py1, const double pz1,
148  const double px2, const double py2, const double pz2, double& costh, double& phi)
149 {
150  const double m_mu = 0.1056;
151  TLorentzVector mom1;
152  TLorentzVector mom2;
153  mom1.SetXYZM(px1, py1, pz1, m_mu); //Momentum of muon 1 at Laboratory Frame
154  mom2.SetXYZM(px2, py2, pz2, m_mu); //Momentum of muon 2 at Laboratory Frame
155 
156  //Lorentz Boost to Hadron Rest Frame
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); //mom1.Pz is now boosted
162  mom2.Boost(0,0,-beta); //mom2.Pz is now boosted
163 
164  //Calculate costheta
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);
171 
172  //Calculate tanphi
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();
178  TVector3 QT = Q3;
179  QT.SetZ(0);
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());
181 
182  //Calculate Phi Quadrant
183  double sinth = sin( acos(costh) );
184  double sinphi = (Delta.X()*RHat.X() + Delta.Y()*RHat.Y())/(Q.M()*sinth);
185 
186  //Calculate Phi
187  phi = atan(tanphi);
188  if (tanphi >= 0 && sinphi >= 0) {;} // phi = phi;}
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();}
192 }
193 
#define E_BEAM
Definition: GlobalConsts.h:14
#define M_P
Definition: GlobalConsts.h:13
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.
Definition: SQDimuon.h:8
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.
Definition: UtilDimuon.cc:25
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.
Definition: UtilDimuon.cc:12
double GetX1(const SQDimuon *dim)
OBSOLETE: Use CalcVar() instead.
Definition: UtilDimuon.cc:47
void CalcVar(const SQDimuon *dim, double &mass, double &pT, double &x1, double &x2, double &xF)
Calculate the key kinematic variables of dimuon.
Definition: UtilDimuon.cc:70
double GetX2(const SQDimuon *dim)
OBSOLETE: Use CalcVar() instead.
Definition: UtilDimuon.cc:55
void Lab2CollinsSoper(const SQDimuon *dim, double &costh, double &phi)
Convert the momenta of muon pair from Lab frame to Collins-Soper frame.
Definition: UtilDimuon.cc:125