Class Reference for E1039 Core & Analysis Software
UtilAsym.cc
Go to the documentation of this file.
1 #include <TLorentzVector.h>
2 #include <TLorentzRotation.h>
4 #include "UtilAsym.h"
5 using namespace std;
6 
7 void UtilAsym::CalcAngle(const SQDimuon* dim, const int pol_sign, double& xb, double& xt, double& phi_s_tf)
8 {
9  CalcAngle(dim->get_mom_pos(), dim->get_mom_neg(), pol_sign, xb, xt, phi_s_tf);
10 }
11 
12 void UtilAsym::CalcAngle(const TVector3& mu0, const TVector3& mu1, const int pol_sign, double& xb, double& xt, double& phi_s_tf)
13 {
14  const double M_MU = 0.10565836668;
15  CalcAngle(TLorentzVector(mu0, M_MU), TLorentzVector(mu1, M_MU), pol_sign, xb, xt, phi_s_tf);
16 }
17 
19 
22 void UtilAsym::CalcAngle(const TLorentzVector& mu0, const TLorentzVector& mu1, const int pol_sign, double& xb, double& xt, double& phi_s_tf)
23 {
24  //Initial 4-vector definition
25  const float pro_mass = 0.93827;
26  const float beamE = 120.0;
27  TLorentzVector hadron_b, hadron_t;
28  hadron_b.SetPxPyPzE(0.0,0.0,TMath::Sqrt(beamE*beamE-pro_mass*pro_mass),beamE);
29  hadron_t.SetPxPyPzE(0.0,0.0,0.0,pro_mass);
30  TLorentzVector initial = hadron_b + hadron_t;
31 
32  TLorentzVector spin;
33  spin.SetPxPyPzE(0.0, (pol_sign > 0 ? +1.0 : -1.0), 0.0, 0.0);
34 
35  TLorentzVector dimu = mu0 + mu1;
36  float dimu_gmass = dimu.Mag();
37 
38  //boost to centre of mass
39  TLorentzRotation cm_r;
40  TVector3 cm_v = initial.BoostVector();
41  cm_r.Boost(-cm_v);
42 
43  TLorentzVector hadron_b_cm = cm_r * hadron_b;
44  TLorentzVector hadron_t_cm = cm_r * hadron_t;
45  TLorentzVector mu0_cm = cm_r * mu0;
46  TLorentzVector mu1_cm = cm_r * mu1;
47  TLorentzVector dimu_cm = cm_r * dimu;
48  TLorentzVector spin_cm = cm_r * spin;
49 
50  float s = 2.0*beamE*pro_mass + 2.0*pro_mass*pro_mass;
51  float sqrt_s = TMath::Sqrt(s);
52  float dimu_E = dimu_cm.E();
53  float dimu_pl = dimu_cm.Pz();
54  float dimu_pl_max = sqrt_s/2.0*(1-(dimu_gmass*dimu_gmass)/s);
55  float xf = dimu_pl/dimu_pl_max;
56  float y = 0.5*TMath::Log((dimu_E+dimu_pl)/(dimu_E-dimu_pl));
57  float tau = (dimu_gmass*dimu_gmass)/s;
58  xb = 0.5*(TMath::Sqrt(xf*xf+4*tau)+xf);
59  xt = 0.5*(TMath::Sqrt(xf*xf+4*tau)-xf);
60 
61  //boost to dilepton restframe
62  TLorentzRotation cm_dimu;
63  TVector3 cm_v2 = dimu_cm.BoostVector();
64  cm_dimu.Boost(-cm_v2);
65 
66  TLorentzVector hadron_b_cm_dimu = cm_dimu * hadron_b_cm;
67  TLorentzVector hadron_t_cm_dimu = cm_dimu * hadron_t_cm;
68  TLorentzVector mu0_cm_dimu = cm_dimu * mu0_cm;
69  TLorentzVector mu1_cm_dimu = cm_dimu * mu1_cm;
70  TLorentzVector dimu_cm_dimu = cm_dimu * dimu_cm;
71  TLorentzVector spin_cm_dimu = cm_dimu * spin_cm;
72 
73  TVector3 zaxis = (hadron_b_cm_dimu.Vect()).Unit()-(hadron_t_cm_dimu.Vect()).Unit();
74  TVector3 zunit = zaxis.Unit();
75  TVector3 hadron_plane_norm = zunit.Cross((hadron_b_cm_dimu.Vect()).Unit());
76  TVector3 lepton_plane_norm = zunit.Cross((mu0_cm_dimu.Vect()).Unit());
77  TVector3 yunit = lepton_plane_norm.Unit();
78  TVector3 xunit = (yunit.Cross(zunit)).Unit();
79 
80  //below are phi_s_tf from target rest frame. The frame for the Asymmetry calculation
81  TVector3 spin_vect_tf = spin.Vect();
82  TVector3 z_prime_unit = (hadron_b.Vect()).Unit();
83  TVector3 y_prime_unit = (z_prime_unit.Cross(dimu.Vect())).Unit();
84  TVector3 x_prime_unit = (y_prime_unit.Cross(z_prime_unit)).Unit();
85  float cosphi_s_tf = (x_prime_unit.Dot(spin_vect_tf))/((x_prime_unit.Mag())*(spin_vect_tf.Mag()));
86  //float phi_s_tf;
87  if ( acos( spin_vect_tf.Dot(y_prime_unit) / ( (spin_vect_tf).Mag() * y_prime_unit.Mag() ) ) > TMath::Pi()/2 )
88  {
89  phi_s_tf = -acos(cosphi_s_tf);
90  }
91  else
92  {
93  phi_s_tf = acos(cosphi_s_tf);
94  }
95 }
#define M_MU
Definition: GlobalConsts.h:12
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 TLorentzVector get_mom_pos() const =0
Return the momentum of the positive track at vertex.
void CalcAngle(const SQDimuon *dim, const int pol_sign, double &xb, double &xt, double &phi_s_tf)
Definition: UtilAsym.cc:7