14 #include <ktracker/SRecEvent.h>
30 , m_node_prefix(
"SQRecDimuonVector_")
46 if (m_label !=
"PP" && m_label !=
"MM") {
47 cout <<
"AnaDimuonLikeSign::Init(): ERROR Label is not 'PP' nor 'MM'. Abort." << endl;
50 m_file_name =
"output_" + m_label +
".root";
59 string node_name = m_node_prefix + m_label;
61 m_sq_evt = findNode::getClass<SQEvent >(topNode,
"SQEvent");
62 m_sq_hit_vec = findNode::getClass<SQHitVector >(topNode,
"SQHitVector");
63 m_sq_trk_vec = findNode::getClass<SQTrackVector >(topNode,
"SQRecTrackVector");
64 m_sq_dim_vec = findNode::getClass<SQDimuonVector>(topNode, node_name.c_str());
68 m_file =
new TFile(m_file_name.c_str(),
"RECREATE");
69 m_tree =
new TTree(
"tree",
"Created by AnaDimuonLikeSign");
70 m_tree->Branch(
"event" , &m_evt);
71 m_tree->Branch(
"dimuon_list", &m_dim_list);
73 SQRun* sq_run = findNode::getClass<SQRun>(topNode,
"SQRun");
79 cout <<
"!!WARNING!! OnlMonTrigEP::InitRunOnlMon(): roadset.LoadConfig returned " << ret <<
".\n";
81 cout <<
"Roadset " << m_rs.
str(1) << endl;
98 m_evt.
D1 = m_evt.
D2 = m_evt.
D3p = m_evt.
D3m = 0;
102 if ( 0 < det_id && det_id <= 6) m_evt.
D1++;
103 else if (12 < det_id && det_id <= 18) m_evt.
D2++;
104 else if (18 < det_id && det_id <= 24) m_evt.
D3p++;
105 else if (24 < det_id && det_id <= 30) m_evt.
D3m++;
126 for (
auto it = m_sq_dim_vec->
begin(); it != m_sq_dim_vec->
end(); it++) {
175 m_dim_list.push_back(dd);
192 string dir_out =
"result/" + label;
193 cout <<
"N of trees = " << tree->GetNtrees() << endl;
194 gSystem->mkdir(dir_out.c_str(),
true);
195 ofstream ofs(dir_out +
"/result.txt");
197 TFile* file_out =
new TFile((dir_out+
"/result.root").c_str(),
"RECREATE");
199 TH1* h1_D1 =
new TH1D(
"h1_D1" ,
";D1 occupancy;N of events", 500, -0.5, 499.5);
200 TH1* h1_D2 =
new TH1D(
"h1_D2" ,
";D2 occupancy;N of events", 300, -0.5, 299.5);
201 TH1* h1_D3p =
new TH1D(
"h1_D3p",
";D3p occupancy;N of events", 300, -0.5, 299.5);
202 TH1* h1_D3m =
new TH1D(
"h1_D3m",
";D3m occupancy;N of events", 300, -0.5, 299.5);
204 TH1* h1_nhit_pos =
new TH1D(
"h1_nhit_pos",
"#mu^{+};N of hits/track;", 6, 12.5, 18.5);
205 TH1* h1_chi2_pos =
new TH1D(
"h1_chi2_pos",
"#mu^{+};Track #chi^{2};", 100, 0, 2);
206 TH1* h1_z_pos =
new TH1D(
"h1_z_pos" ,
"#mu^{+};Track z (cm);" , 100, -700, 300);
207 TH1* h1_pz_pos =
new TH1D(
"h1_pz_pos" ,
"#mu^{+};Track p_{z} (GeV);", 100, 0, 100);
213 TH1* h1_chi2_tgt_pos =
new TH1D(
"h1_chi2_tgt_pos",
"#mu^{+};Track #chi^{2} at target;" , 100, 0, 10);
214 TH1* h1_chi2_dum_pos =
new TH1D(
"h1_chi2_dum_pos",
"#mu^{+};Track #chi^{2} at dump;" , 100, 0, 10);
215 TH1* h1_chi2_ups_pos =
new TH1D(
"h1_chi2_ups_pos",
"#mu^{+};Track #chi^{2} at upstream;", 100, 0, 10);
216 TH1* h1_chi2_tmd_pos =
new TH1D(
"h1_chi2_tmd_pos",
"#mu^{+};#chi^{2}_{Target} - #chi^{2}_{Dump};" , 100, -10, 10);
217 TH1* h1_chi2_tmu_pos =
new TH1D(
"h1_chi2_tmu_pos",
"#mu^{+};#chi^{2}_{Target} - #chi^{2}_{Upstream};", 100, -10, 10);
219 TH1* h1_nhit_neg =
new TH1D(
"h1_nhit_neg",
"#mu^{-};N of hits/track;", 6, 12.5, 18.5);
220 TH1* h1_chi2_neg =
new TH1D(
"h1_chi2_neg",
"#mu^{-};Track #chi^{2};", 100, 0, 2);
221 TH1* h1_z_neg =
new TH1D(
"h1_z_neg" ,
"#mu^{-};Track z (cm);", 100, -700, 300);
222 TH1* h1_pz_neg =
new TH1D(
"h1_pz_neg" ,
"#mu^{-};Track p_{z} (GeV);", 100, 0, 100);
228 TH1* h1_chi2_tgt_neg =
new TH1D(
"h1_chi2_tgt_neg",
"#mu^{-};Track #chi^{2} at target;" , 100, 0, 10);
229 TH1* h1_chi2_dum_neg =
new TH1D(
"h1_chi2_dum_neg",
"#mu^{-};Track #chi^{2} at dump;" , 100, 0, 10);
230 TH1* h1_chi2_ups_neg =
new TH1D(
"h1_chi2_ups_neg",
"#mu^{-};Track #chi^{2} at upstream;", 100, 0, 10);
231 TH1* h1_chi2_tmd_neg =
new TH1D(
"h1_chi2_tmd_neg",
"#mu^{-};#chi^{2}_{Target} - #chi^{2}_{Dump};" , 100, -10, 10);
232 TH1* h1_chi2_tmu_neg =
new TH1D(
"h1_chi2_tmu_neg",
"#mu^{-};#chi^{2}_{Target} - #chi^{2}_{Upstream};", 100, -10, 10);
234 TH1* h1_dx =
new TH1D(
"h1_dx" ,
";Dimuon x (cm);", 100, -1, 1);
235 TH1* h1_dy =
new TH1D(
"h1_dy" ,
";Dimuon y (cm);", 100, -1, 1);
236 TH1* h1_dz =
new TH1D(
"h1_dz" ,
";Dimuon z (cm);", 100, -700, 300);
237 TH1* h1_dpx =
new TH1D(
"h1_dpx",
";Dimuon p_{x} (GeV);", 100, -5, 5);
238 TH1* h1_dpy =
new TH1D(
"h1_dpy",
";Dimuon p_{y} (GeV);", 100, -5, 5);
239 TH1* h1_dpz =
new TH1D(
"h1_dpz",
";Dimuon p_{z} (GeV);", 100, 30, 130);
240 TH1* h1_m =
new TH1D(
"h1_m" ,
";Dimuon mass (GeV);", 100, 0, 10);
241 TH1* h1_trk_sep =
new TH1D(
"h1_trk_sep",
";Track separation: z_{#mu +} - z_{#mu -} (cm);", 100, -500, 500);
243 TH1* h1_dz_sel =
new TH1D(
"h1_dz_sel" ,
";Dimuon z (cm);", 100, -700, 300);
244 TH1* h1_dpz_sel =
new TH1D(
"h1_dpz_sel",
";Dimuon p_{z} (GeV);", 100, 30, 130);
245 TH1* h1_m_sel =
new TH1D(
"h1_m_sel" ,
";Dimuon mass (GeV);", 100, 0, 10);
247 TH1* h1_dz_tgt =
new TH1D(
"h1_dz_tgt" ,
";Dimuon z (cm);" , 100, -700, 300);
248 TH1* h1_dpz_tgt =
new TH1D(
"h1_dpz_tgt",
";Dimuon p_{z} (GeV);", 100, 30, 130);
249 TH1* h1_m_tgt =
new TH1D(
"h1_m_tgt" ,
";Dimuon mass (GeV);" , 100, 0, 10);
256 tree->SetBranchAddress(
"event" , &evt);
257 tree->SetBranchAddress(
"dimuon_list", &dim_list);
259 int n_ent = tree->GetEntries();
260 cout <<
"N of entries = " << n_ent << endl;
261 for (
int i_ent = 0; i_ent < n_ent; i_ent++) {
262 if ((i_ent+1) % (n_ent/10) == 0) cout <<
" " << 10*(i_ent+1)/(n_ent/10) <<
"%" << flush;
263 tree->GetEntry(i_ent);
271 h1_D1 ->Fill(evt->
D1 );
272 h1_D2 ->Fill(evt->
D2 );
273 h1_D3p->Fill(evt->
D3p);
274 h1_D3m->Fill(evt->
D3m);
277 for (
auto it = dim_list->begin(); it != dim_list->end(); it++) {
289 << evt->
D1 <<
" " << evt->
D2 <<
" " << evt->
D3p <<
" " << evt->
D3m <<
" "
290 << dd->
pos.Z() <<
" " << dd->
mom.M() << endl;
297 h1_z_pos ->Fill(dd->
pos_pos.Z());
298 h1_pz_pos ->Fill(dd->
mom_pos.Z());
302 h1_z_neg ->Fill(dd->
pos_neg.Z());
303 h1_pz_neg ->Fill(dd->
mom_neg.Z());
313 h1_chi2_tgt_pos->Fill(chi2_tgt_pos);
314 h1_chi2_dum_pos->Fill(chi2_dum_pos);
315 h1_chi2_ups_pos->Fill(chi2_ups_pos);
316 h1_chi2_tmd_pos->Fill(chi2_tgt_pos - chi2_dum_pos);
317 h1_chi2_tmu_pos->Fill(chi2_tgt_pos - chi2_ups_pos);
327 h1_chi2_tgt_neg->Fill(chi2_tgt_neg);
328 h1_chi2_dum_neg->Fill(chi2_dum_neg);
329 h1_chi2_ups_neg->Fill(chi2_ups_neg);
330 h1_chi2_tmd_neg->Fill(chi2_tgt_neg - chi2_dum_neg);
331 h1_chi2_tmu_neg->Fill(chi2_tgt_neg - chi2_ups_neg);
341 h1_dx ->Fill(dd->
pos.X());
342 h1_dy ->Fill(dd->
pos.Y());
343 h1_dz ->Fill(dd->
pos.Z());
344 h1_dpx ->Fill(dd->
mom.X());
345 h1_dpy ->Fill(dd->
mom.Y());
346 h1_dpz ->Fill(dd->
mom.Z());
347 h1_m ->Fill(dd->
mom.M());
348 h1_trk_sep->Fill(trk_sep);
350 if (chi2_tgt_pos < 0 || chi2_dum_pos < 0 || chi2_ups_pos < 0 ||
351 chi2_tgt_pos - chi2_dum_pos > 0 || chi2_tgt_pos - chi2_ups_pos > 0)
continue;
352 if (chi2_tgt_neg < 0 || chi2_dum_neg < 0 || chi2_ups_neg < 0 ||
353 chi2_tgt_neg - chi2_dum_neg > 0 || chi2_tgt_neg - chi2_ups_neg > 0)
continue;
361 h1_dz_sel ->Fill(dd->
pos.Z());
362 h1_dpz_sel->Fill(dd->
mom.Z());
363 h1_m_sel ->Fill(dd->
mom.M());
365 h1_dz_tgt ->Fill(dd->
pos.Z());
371 TCanvas* c1 =
new TCanvas(
"c1",
"");
375 h1_D1 ->Draw(); c1->SaveAs((dir_out+
"/h1_D1.png").c_str());
376 h1_D2 ->Draw(); c1->SaveAs((dir_out+
"/h1_D2.png").c_str());
377 h1_D3p->Draw(); c1->SaveAs((dir_out+
"/h1_D3p.png").c_str());
378 h1_D3m->Draw(); c1->SaveAs((dir_out+
"/h1_D3m.png").c_str());
380 h1_nhit_pos->Draw(); c1->SaveAs((dir_out+
"/h1_nhit_pos.png").c_str());
381 h1_chi2_pos->Draw(); c1->SaveAs((dir_out+
"/h1_chi2_pos.png").c_str());
382 h1_z_pos ->Draw(); c1->SaveAs((dir_out+
"/h1_z_pos.png").c_str());
383 h1_pz_pos ->Draw(); c1->SaveAs((dir_out+
"/h1_pz_pos.png").c_str());
389 h1_chi2_tgt_pos->Draw(); c1->SaveAs((dir_out+
"/h1_chi2_tgt_pos.png").c_str());
390 h1_chi2_dum_pos->Draw(); c1->SaveAs((dir_out+
"/h1_chi2_dum_pos.png").c_str());
391 h1_chi2_ups_pos->Draw(); c1->SaveAs((dir_out+
"/h1_chi2_ups_pos.png").c_str());
392 h1_chi2_tmd_pos->Draw(); c1->SaveAs((dir_out+
"/h1_chi2_tmd_pos.png").c_str());
393 h1_chi2_tmu_pos->Draw(); c1->SaveAs((dir_out+
"/h1_chi2_tmu_pos.png").c_str());
395 h1_nhit_neg->Draw(); c1->SaveAs((dir_out+
"/h1_nhit_neg.png").c_str());
396 h1_chi2_neg->Draw(); c1->SaveAs((dir_out+
"/h1_chi2_neg.png").c_str());
397 h1_z_neg ->Draw(); c1->SaveAs((dir_out+
"/h1_z_neg.png").c_str());
398 h1_pz_neg ->Draw(); c1->SaveAs((dir_out+
"/h1_pz_neg.png").c_str());
404 h1_chi2_tgt_neg->Draw(); c1->SaveAs((dir_out+
"/h1_chi2_tgt_neg.png").c_str());
405 h1_chi2_dum_neg->Draw(); c1->SaveAs((dir_out+
"/h1_chi2_dum_neg.png").c_str());
406 h1_chi2_ups_neg->Draw(); c1->SaveAs((dir_out+
"/h1_chi2_ups_neg.png").c_str());
407 h1_chi2_tmd_neg->Draw(); c1->SaveAs((dir_out+
"/h1_chi2_tmd_neg.png").c_str());
408 h1_chi2_tmu_neg->Draw(); c1->SaveAs((dir_out+
"/h1_chi2_tmu_neg.png").c_str());
410 h1_dx ->Draw(); c1->SaveAs((dir_out+
"/h1_dx.png" ).c_str());
411 h1_dy ->Draw(); c1->SaveAs((dir_out+
"/h1_dy.png" ).c_str());
412 h1_dz ->Draw(); c1->SaveAs((dir_out+
"/h1_dz.png" ).c_str());
413 h1_dpx ->Draw(); c1->SaveAs((dir_out+
"/h1_dpx.png" ).c_str());
414 h1_dpy ->Draw(); c1->SaveAs((dir_out+
"/h1_dpy.png" ).c_str());
415 h1_dpz ->Draw(); c1->SaveAs((dir_out+
"/h1_dpz.png" ).c_str());
416 h1_m ->Draw(); c1->SaveAs((dir_out+
"/h1_m.png" ).c_str());
417 h1_trk_sep->Draw(); c1->SaveAs((dir_out+
"/h1_trk_sep.png").c_str());
421 h1_dz_sel->SetLineColor(kRed);
422 h1_dz_sel->SetLineWidth(2);
424 c1->SaveAs((dir_out+
"/h1_dz_sel.png").c_str());
426 h1_dpz_sel->SetLineColor(kRed);
427 h1_dpz_sel->SetLineWidth(2);
429 c1->SaveAs((dir_out+
"/h1_dpz_sel.png").c_str());
431 h1_m_sel ->SetLineColor(kRed);
432 h1_m_sel ->SetLineWidth(2);
434 c1->SaveAs((dir_out+
"/h1_m_sel.png").c_str());
436 h1_dz_tgt->SetLineColor(kBlue);
437 h1_dz_tgt->SetLineWidth(2);
439 c1->SaveAs((dir_out+
"/h1_dz_tgt.png").c_str());
441 h1_dpz_tgt->SetLineColor(kBlue);
442 h1_dpz_tgt->SetLineWidth(2);
444 c1->SaveAs((dir_out+
"/h1_dpz_tgt.png").c_str());
446 h1_m_tgt ->SetLineColor(kBlue);
447 h1_m_tgt ->SetLineWidth(2);
449 c1->SaveAs((dir_out+
"/h1_m_tgt.png").c_str());
std::vector< DimuonData > DimuonList
static void AnalyzeTree(TChain *tree, const std::string label)
AnaDimuonLikeSign(const std::string &name="AnaDimuonLikeSign", const std::string &label="PP")
int InitRun(PHCompositeNode *topNode)
virtual ~AnaDimuonLikeSign()
int Init(PHCompositeNode *topNode)
int End(PHCompositeNode *topNode)
Called at the end of all processing.
int process_event(PHCompositeNode *topNode)
virtual ConstIter begin() const =0
virtual ConstIter end() const =0
virtual int get_run_id() const =0
Return the run ID.
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_spill_id() const =0
Return the spill ID.
virtual int get_event_id() const =0
Return the event ID, which is unique per run.
virtual ConstIter end() const =0
virtual ConstIter begin() const =0
std::vector< SQHit * >::iterator Iter
An SQ interface class to hold one detector hit.
virtual short get_detector_id() const
Return the detector ID of this hit.
An SQ interface class to hold the run-level info.
virtual int get_v1495_id(const int chan) const
Return the ID of the chan-th V1495 boards.
virtual const SQTrack * at(const size_t id) const =0
TLorentzVector p_neg_target
virtual TVector3 get_pos() const
Return the dimuon position at vertex.
TLorentzVector p_pos_target
Track momentum projections at different location.
virtual TLorentzVector get_mom() const
Return the dimuon momentum at vertex.
virtual int get_track_id_neg() const
Return the track ID of the negative track.
virtual int get_track_id_pos() const
Return the track ID of the positive track.
TLorentzVector p_pos_dump
TLorentzVector p_neg_dump
Double_t getChisqTarget()
virtual double get_chsiq_upstream() const
virtual TVector3 get_pos_dump() const
virtual int get_num_hits() const
Return the number of hits associated to this track.
virtual TVector3 get_pos_target() const
virtual double get_chisq_dump() const
virtual TLorentzVector get_mom_vtx() const
Return the track momentum at vertex.
virtual double get_chisq() const
virtual TVector3 get_pos_vtx() const
Return the track position at vertex.
TrigRoad * FindRoad(const int road_id)
int LoadConfig(const std::string dir)
std::string str(const int level=0) const
double chisq_upstream_neg
TLorentzVector mom_target
Dimuon momentum with choice = 1.
double chisq_upstream_pos
TLorentzVector mom_dump
Dimuon momentum with choice = 2.