Class Reference for E1039 Core & Analysis Software
AnaSimDimuon.cc
Go to the documentation of this file.
1 #include <iomanip>
2 #include <fstream>
3 #include <TFile.h>
4 #include <TTree.h>
5 #include <TLorentzRotation.h>
10 #include <ktracker/SRecEvent.h>
12 #include <phool/getClass.h>
13 #include <UtilAna/UtilDimuon.h>
14 #include "UtilAsym.h"
15 #include "AnaSimDimuon.h"
16 using namespace std;
17 
18 AnaSimDimuon::AnaSimDimuon(const std::string& name)
19  : SubsysReco(name)
20 {
21  ;
22 }
23 
25 {
27 }
28 
30 {
31  mi_evt = findNode::getClass<SQEvent >(topNode, "SQEvent");
32  mi_srec = findNode::getClass<SRecEvent >(topNode, "SRecEvent");
33  mi_evt_true = findNode::getClass<SQMCEvent >(topNode, "SQMCEvent");
34  mi_vec_trk = findNode::getClass<SQTrackVector >(topNode, "SQTruthTrackVector");
35  mi_vec_dim = findNode::getClass<SQDimuonVector>(topNode, "SQTruthDimuonVector");
36  if (!mi_evt || !mi_srec || !mi_evt_true || !mi_vec_trk || !mi_vec_dim) {
38  }
39 
40  mo_file = new TFile("sim_tree.root", "RECREATE");
41  mo_tree = new TTree("tree", "Created by AnaSimDimuon");
42  //mo_tree->Branch("sqevt" , mi_evt);
43  mo_tree->Branch("evt" , &mo_evt);
44  //mo_tree->Branch("trk_true", &mo_trk_true);
45  //mo_tree->Branch("trk_reco", &mo_trk_reco);
46  mo_tree->Branch("dim_true", &mo_dim_true);
47  mo_tree->Branch("dim_reco", &mo_dim_reco);
48 
50 }
51 
53 {
57  mo_evt.proc_id = mi_evt_true->get_process_id();
58  for (int ii = 0; ii < 4; ii++) {
59  mo_evt.par_id [ii] = mi_evt_true->get_particle_id (ii);
60  mo_evt.par_mom[ii] = mi_evt_true->get_particle_momentum(ii);
61  }
62  mo_evt.weight = mi_evt_true->get_weight();
63  mo_evt.nim1 = mi_evt->get_trigger(SQEvent::NIM1);
64  mo_evt.fpga1 = mi_evt->get_trigger(SQEvent::MATRIX1);
65  mo_evt.trig_bits = mi_evt->get_trigger();
66  mo_evt.rec_stat = mi_srec->getRecStatus();
67  mo_evt.n_dim_true = mi_vec_dim->size();
68  mo_evt.n_dim_reco = mi_srec->getNDimuons();
69 
70  int pol_sign = (mi_evt->get_event_id() % 2 == 0 ? +1 : -1);
71 
72  m_proc_id_cnt [mi_evt_true->get_process_id() ]++;
73  m_part_id_1_cnt [mi_evt_true->get_particle_id(0)]++;
74  m_part_id_2_cnt [mi_evt_true->get_particle_id(1)]++;
75  m_part_id_3_cnt [mi_evt_true->get_particle_id(2)]++;
76  m_part_id_4_cnt [mi_evt_true->get_particle_id(3)]++;
77 
78  ostringstream oss;
79  oss << mi_evt_true->get_particle_id(0) << " " << mi_evt_true->get_particle_id(1);
80  m_part_id_12_cnt[oss.str()]++;
81 
85  IdMap_t id_dim_t2r;
86  FindDimuonRelation(id_dim_t2r);
87  mo_dim_true.clear();
88  mo_dim_reco.clear();
89  for (unsigned int ii = 0; ii < mi_vec_dim->size(); ii++) {
90  SQDimuon* dim = mi_vec_dim->at(ii);
91  DimuonData dd;
92  //dd.pdg_id = dim->get_pdg_id();
93  dd.pos = dim->get_pos();
94  dd.mom = dim->get_mom();
95  dd.mom_pos = dim->get_mom_pos();
96  dd.mom_neg = dim->get_mom_neg();
97  //if (fabs(dd.mom.M() - 3.097) < 0.001) dd.pdg_id = 443;
98  UtilDimuon::CalcVar(dim, dd.mass, dd.pT, dd.x1, dd.x2, dd.xF);
100 
101  //double x1mod, x2mod;
102  //double phi_s, phi_s_up;
103  //UtilAsym::CalcAngle(dd.mom_pos, dd.mom_neg, +1, x1mod, x2mod, phi_s_up);
104  //UtilAsym::CalcAngle(dd.mom_pos, dd.mom_neg, pol_sign, x1mod, x2mod, phi_s);
105  //if (dd.pT > 2) cout << "X " << dd.x1 << " " << x1mod << " " << dd.x2 << " " << x2mod << " " << dd.phi_s << " " << phi_s << endl;
106  //dd.x1 = x1mod;
107  //dd.x2 = x2mod;
108  //dd.phi_s = phi_s;
109  //dd.phi_s_up = phi_s_up;
110  mo_dim_true.push_back(dd);
111 
112  //double costh_dim, phi_dim;
113  //UtilDimuon::Lab2CollinsSoper(dim, costh_dim, phi_dim);
114  //cout << "X "<<dd.x1<<" "<<dd.x2<<" "<<x1mod<<" "<<x2mod<<endl;
115  //cout << "P "<<phi_s<<" "<<phi_dim<<" "<<costh_dim<<endl;
116 
117  DimuonData ddr;
118  if (id_dim_t2r[ii] >= 0) {
119  SRecDimuon dim_reco = mi_srec->getDimuon(id_dim_t2r[ii]);
120  ddr.pos = dim_reco.vtx;
121  ddr.mom = dim_reco.p_pos + dim_reco.p_neg;
122  ddr.mom_pos = dim_reco.p_pos;
123  ddr.mom_neg = dim_reco.p_neg;
124  ddr.x1 = dim_reco.x1;
125  ddr.x2 = dim_reco.x2;
126  }
127  mo_dim_reco.push_back(ddr);
128  }
129  mo_tree->Fill();
131 }
132 
134 {
135  ostringstream oss;
136  oss << "Process ID:\n";
137  for (map<int, int>::iterator it = m_proc_id_cnt.begin(); it != m_proc_id_cnt.end(); it++) {
138  oss << setw(10) << it->first << "\t" << setw(10) << it->second << "\n";
139  }
140  oss << "Particle-1&2 IDs:\n";
141  for (map<string, int>::iterator it = m_part_id_12_cnt.begin(); it != m_part_id_12_cnt.end(); it++) {
142  oss << setw(10) << it->first << "\t" << setw(10) << it->second << "\n";
143  }
144  oss << "Particle-1 ID:\n";
145  for (map<int, int>::iterator it = m_part_id_1_cnt.begin(); it != m_part_id_1_cnt.end(); it++) {
146  oss << setw(10) << it->first << "\t" << setw(10) << it->second << "\n";
147  }
148  oss << "Particle-2 ID:\n";
149  for (map<int, int>::iterator it = m_part_id_2_cnt.begin(); it != m_part_id_2_cnt.end(); it++) {
150  oss << setw(10) << it->first << "\t" << setw(10) << it->second << "\n";
151  }
152  oss << "Particle-3 ID:\n";
153  for (map<int, int>::iterator it = m_part_id_3_cnt.begin(); it != m_part_id_3_cnt.end(); it++) {
154  oss << setw(10) << it->first << "\t" << setw(10) << it->second << "\n";
155  }
156  oss << "Particle-4 ID:\n";
157  for (map<int, int>::iterator it = m_part_id_4_cnt.begin(); it != m_part_id_4_cnt.end(); it++) {
158  oss << setw(10) << it->first << "\t" << setw(10) << it->second << "\n";
159  }
160  cout << "\n" << oss.str() << endl;
161 
162  ofstream ofs("pid_count.txt");
163  ofs << oss.str() << endl;
164  ofs.close();
165 
166  mo_file->cd();
167  mo_file->Write();
168  mo_file->Close();
170 }
171 
172 void AnaSimDimuon::FindDimuonRelation(IdMap_t& id_map)
173 {
174  id_map.clear();
175  for (unsigned int i_true = 0; i_true < mi_vec_dim->size(); i_true++) {
176  SQDimuon* dim_true = mi_vec_dim->at(i_true);
177  double mass_true = dim_true->get_mom().M();
178 
179  int i_reco_best = -1;
180  double mass_diff_best;
181  for (int i_reco = 0; i_reco < mi_srec->getNDimuons(); i_reco++) {
182  SRecDimuon dim_reco = mi_srec->getDimuon(i_reco);
183  double mass_diff = fabs(dim_reco.mass - mass_true);
184  if (i_reco_best < 0 || mass_diff < mass_diff_best) {
185  i_reco_best = i_reco;
186  mass_diff_best = mass_diff;
187  }
188  }
189  id_map[i_true] = i_reco_best;
190  }
191 }
AnaSimDimuon(const std::string &name="AnaSimDimuon")
Definition: AnaSimDimuon.cc:18
int process_event(PHCompositeNode *topNode)
Definition: AnaSimDimuon.cc:52
int Init(PHCompositeNode *topNode)
Definition: AnaSimDimuon.cc:24
int End(PHCompositeNode *topNode)
Called at the end of all processing.
int InitRun(PHCompositeNode *topNode)
Definition: AnaSimDimuon.cc:29
virtual const SQDimuon * at(const size_t id) const =0
virtual size_t size() 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 TLorentzVector get_mom_pos() const =0
Return the momentum of the positive track at vertex.
virtual TLorentzVector get_mom() const =0
Return the dimuon momentum at vertex.
virtual TVector3 get_pos() const =0
Return the dimuon position at vertex.
@ MATRIX1
Definition: SQEvent.h:27
@ NIM1
Definition: SQEvent.h:22
virtual bool get_trigger(const SQEvent::TriggerMask i) const =0
Return the trigger bit (fired or not) of the selected trigger channel.
virtual int get_event_id() const =0
Return the event ID, which is unique per run.
virtual int get_particle_id(const int i) const =0
Return the particle ID of the primary process, where i=0...3 for "0 + 1 -> 2 + 3".
virtual double get_weight() const =0
Return the event weight.
virtual TLorentzVector get_particle_momentum(const int i) const =0
Return the particle momentum of the primary process, where i=0...3 for "0 + 1 -> 2 + 3".
virtual int get_process_id() const =0
Return the primary process ID.
TVector3 vtx
3-vector vertex position
Definition: SRecEvent.h:379
TLorentzVector p_neg
Definition: SRecEvent.h:366
Double_t x2
Definition: SRecEvent.h:394
TLorentzVector p_pos
4-momentum of the muon tracks after vertex fit
Definition: SRecEvent.h:365
Double_t x1
Definition: SRecEvent.h:393
Double_t mass
Kinematic variables.
Definition: SRecEvent.h:390
Int_t getRecStatus()
Definition: SRecEvent.h:445
SRecDimuon & getDimuon(Int_t i)
Definition: SRecEvent.h:463
Int_t getNDimuons()
Get dimuons.
Definition: SRecEvent.h:462
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
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
TLorentzVector mom_pos
Definition: TreeData.h:37
TLorentzVector mom
Definition: TreeData.h:36
double phi_s
Definition: TreeData.h:47
double x1
Definition: TreeData.h:41
TLorentzVector mom_neg
Definition: TreeData.h:38
double x2
Definition: TreeData.h:42
double mass
Definition: TreeData.h:39
double xF
Definition: TreeData.h:43
double pT
Definition: TreeData.h:40
double costh
Definition: TreeData.h:44
TVector3 pos
Definition: TreeData.h:35
double weight
Definition: TreeData.h:10
int trig_bits
Definition: TreeData.h:11
int proc_id
Definition: TreeData.h:7
int rec_stat
Definition: TreeData.h:12
TLorentzVector par_mom[4]
Definition: TreeData.h:9
bool nim1
Definition: TreeData.h:11
bool fpga1
Definition: TreeData.h:12
int n_dim_true
Definition: TreeData.h:13
int par_id[4]
Definition: TreeData.h:8
int n_dim_reco
Definition: TreeData.h:14