16 #include <ktracker/SRecEvent.h>
31 , m_file_name (
"output_track.root")
52 m_sq_evt = findNode::getClass<SQEvent >(topNode,
"SQEvent");
53 m_sq_hit_vec = findNode::getClass<SQHitVector >(topNode,
"SQHitVector");
54 m_sq_trk_vec = findNode::getClass<SQTrackVector >(topNode,
"SQRecTrackVector");
57 m_file =
new TFile(m_file_name.c_str(),
"RECREATE");
58 m_tree =
new TTree(
"tree",
"Created by AnaTrack");
59 m_tree->Branch(
"event" , &m_evt);
60 m_tree->Branch(
"track_list", &m_trk_list);
62 SQRun* sq_run = findNode::getClass<SQRun>(topNode,
"SQRun");
76 m_evt.D1 = m_evt.D2 = m_evt.D3p = m_evt.D3m = 0;
80 if ( 0 < det_id && det_id <= 6) m_evt.D1++;
81 else if (12 < det_id && det_id <= 18) m_evt.D2++;
82 else if (18 < det_id && det_id <= 24) m_evt.D3p++;
83 else if (24 < det_id && det_id <= 30) m_evt.D3m++;
87 for (
auto it = m_sq_trk_vec->
begin(); it != m_sq_trk_vec->
end(); it++) {
103 m_trk_list.push_back(td);
120 string dir_out =
"result/track";
121 cout <<
"N of trees = " << tree->GetNtrees() << endl;
122 gSystem->mkdir(dir_out.c_str(),
true);
123 ofstream ofs(dir_out +
"/result.txt");
125 TFile* file_out =
new TFile((dir_out+
"/result.root").c_str(),
"RECREATE");
127 TH2* h2_nhit =
new TH2D(
"h2_nhit",
";N of hits/track;", 6, 12.5, 18.5, 2, -2, 2);
128 TH2* h2_chi2 =
new TH2D(
"h2_chi2",
";Track #chi^{2};", 100, 0, 10 , 2, -2, 2);
129 TH2* h2_chi2_tgt =
new TH2D(
"h2_chi2_tgt",
";Track #chi^{2} at target;" , 100, 0, 10, 2, -2, 2);
130 TH2* h2_chi2_dum =
new TH2D(
"h2_chi2_dum",
";Track #chi^{2} at dump;" , 100, 0, 10, 2, -2, 2);
131 TH2* h2_chi2_ups =
new TH2D(
"h2_chi2_ups",
";Track #chi^{2} at upstream;", 100, 0, 10, 2, -2, 2);
133 TH2* h2_x_vtx =
new TH2D(
"h2_x_vtx" ,
";Track x (cm) @ Vertex;Charge;", 100, -1, 1, 2, -2, 2);
134 TH2* h2_y_vtx =
new TH2D(
"h2_y_vtx" ,
";Track y (cm) @ Vertex;Charge;", 100, -1, 1, 2, -2, 2);
135 TH2* h2_z_vtx =
new TH2D(
"h2_z_vtx" ,
";Track z (cm) @ Vertex;Charge;", 120, -700, 500, 2, -2, 2);
136 TH2* h2_px_vtx =
new TH2D(
"h2_px_vtx",
";Track p_{x} (GeV) @ Vertex;Charge;", 100, -5, 5, 2, -2, 2);
137 TH2* h2_py_vtx =
new TH2D(
"h2_py_vtx",
";Track p_{y} (GeV) @ Vertex;Charge;", 100, -5, 5, 2, -2, 2);
138 TH2* h2_pz_vtx =
new TH2D(
"h2_pz_vtx",
";Track p_{z} (GeV) @ Vertex;Charge;", 100, 0, 100, 2, -2, 2);
140 TH2* h2_x_st1 =
new TH2D(
"h2_x_st1" ,
";Track x (cm) @ St 1;Charge;", 100, -50, 50, 2, -2, 2);
141 TH2* h2_y_st1 =
new TH2D(
"h2_y_st1" ,
";Track y (cm) @ St 1;Charge;", 100, -50, 50, 2, -2, 2);
142 TH2* h2_z_st1 =
new TH2D(
"h2_z_st1" ,
";Track z (cm) @ St 1;Charge;", 100, 550, 650, 2, -2, 2);
143 TH2* h2_px_st1 =
new TH2D(
"h2_px_st1",
";Track p_{x} (GeV) @ St 1;Charge;", 100, -5, 5, 2, -2, 2);
144 TH2* h2_py_st1 =
new TH2D(
"h2_py_st1",
";Track p_{y} (GeV) @ St 1;Charge;", 100, -5, 5, 2, -2, 2);
145 TH2* h2_pz_st1 =
new TH2D(
"h2_pz_st1",
";Track p_{z} (GeV) @ St 1;Charge;", 100, 0, 100, 2, -2, 2);
147 TH2* h2_x_st3 =
new TH2D(
"h2_x_st3" ,
";Track x (cm) @ St 3;Charge;", 100, -150, 150, 2, -2, 2);
148 TH2* h2_y_st3 =
new TH2D(
"h2_y_st3" ,
";Track y (cm) @ St 3;Charge;", 100, -150, 150, 2, -2, 2);
149 TH2* h2_z_st3 =
new TH2D(
"h2_z_st3" ,
";Track z (cm) @ St 3;Charge;", 100, 1900, 2000, 2, -2, 2);
150 TH2* h2_px_st3 =
new TH2D(
"h2_px_st3",
";Track p_{x} (GeV) @ St 3;Charge;", 100, -5, 5, 2, -2, 2);
151 TH2* h2_py_st3 =
new TH2D(
"h2_py_st3",
";Track p_{y} (GeV) @ St 3;Charge;", 100, -5, 5, 2, -2, 2);
152 TH2* h2_pz_st3 =
new TH2D(
"h2_pz_st3",
";Track p_{z} (GeV) @ St 3;Charge;", 100, 0, 100, 2, -2, 2);
159 tree->SetBranchAddress(
"event" , &evt);
160 tree->SetBranchAddress(
"track_list", &trk_list);
162 int n_ent = tree->GetEntries();
163 cout <<
"N of entries = " << n_ent << endl;
164 for (
int i_ent = 0; i_ent < n_ent; i_ent++) {
165 if ((i_ent+1) % (n_ent/10) == 0) cout <<
" " << 10*(i_ent+1)/(n_ent/10) <<
"%" << flush;
166 tree->GetEntry(i_ent);
173 for (
auto it = trk_list->begin(); it != trk_list->end(); it++) {
176 if (abs(charge) != 1)
continue;
179 double chi2 = td->
chisq;
183 TVector3* pos_vtx = &td->
pos_vtx;
184 TLorentzVector* mom_vtx = &td->
mom_vtx;
185 TVector3* pos_st1 = &td->
pos_st1;
186 TLorentzVector* mom_st1 = &td->
mom_st1;
187 TVector3* pos_st3 = &td->
pos_st3;
188 TLorentzVector* mom_st3 = &td->
mom_st3;
190 h2_nhit ->Fill(nhit, charge);
191 h2_chi2 ->Fill(chi2, charge);
192 h2_chi2_tgt->Fill(chi2_tgt, charge);
193 h2_chi2_dum->Fill(chi2_dum, charge);
194 h2_chi2_ups->Fill(chi2_ups, charge);
196 h2_x_vtx ->Fill(pos_vtx->X(), charge);
197 h2_y_vtx ->Fill(pos_vtx->Y(), charge);
198 h2_z_vtx ->Fill(pos_vtx->Z(), charge);
199 h2_px_vtx ->Fill(mom_vtx->X(), charge);
200 h2_py_vtx ->Fill(mom_vtx->Y(), charge);
201 h2_pz_vtx ->Fill(mom_vtx->Z(), charge);
203 h2_x_st1 ->Fill(pos_st1->X(), charge);
204 h2_y_st1 ->Fill(pos_st1->Y(), charge);
205 h2_z_st1 ->Fill(pos_st1->Z(), charge);
206 h2_px_st1 ->Fill(mom_st1->X(), charge);
207 h2_py_st1 ->Fill(mom_st1->Y(), charge);
208 h2_pz_st1 ->Fill(mom_st1->Z(), charge);
210 h2_x_st3 ->Fill(pos_st3->X(), charge);
211 h2_y_st3 ->Fill(pos_st3->Y(), charge);
212 h2_z_st3 ->Fill(pos_st3->Z(), charge);
213 h2_px_st3 ->Fill(mom_st3->X(), charge);
214 h2_py_st3 ->Fill(mom_st3->Y(), charge);
215 h2_pz_st3 ->Fill(mom_st3->Z(), charge);
253 TCanvas* c1 =
new TCanvas(
"c1",
"");
257 TH1* h1_neg = h2->ProjectionX(
"h1_neg", 1, 1);
258 TH1* h1_pos = h2->ProjectionX(
"h1_pos", 2, 2);
259 h1_pos->SetLineColor(kRed);
260 h1_neg->SetLineColor(kBlue);
263 oss <<
";" << h2->GetXaxis()->GetTitle() <<
";" << h2->GetZaxis()->GetTitle();
264 THStack hs(
"hs", oss.str().c_str());
271 tex.SetTextColor(kRed);
272 tex.DrawLatex(0.25, 0.94,
"Red: #mu^{+}");
273 tex.SetTextColor(kBlue);
274 tex.DrawLatex(0.75, 0.94,
"Blue: #mu^{-}");
277 oss << dir_out <<
"/h1_" << label <<
".png";
278 c1->SaveAs(oss.str().c_str());
std::vector< TrackData > TrackList
AnaTrack(const std::string &name="AnaTrack")
int InitRun(PHCompositeNode *topNode)
int Init(PHCompositeNode *topNode)
static void AnalyzeTree(TChain *tree)
static void DrawHistIn1D(TH2 *h2, const std::string label, const std::string dir_out)
int End(PHCompositeNode *topNode)
Called at the end of all processing.
int process_event(PHCompositeNode *topNode)
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 ConstIter begin() const =0
virtual ConstIter end() const =0
virtual TVector3 get_pos_st3() const
Return the track position at Station 3.
virtual TLorentzVector get_mom_st3() const
Return the track momentum at Station 3.
virtual int get_charge() const
Return the charge, i.e. +1 or -1.
virtual double get_chisq_target() const
virtual TVector3 get_pos_st1() const
Return the track position at Station 1.
virtual double get_chisq_upstream() const
virtual TLorentzVector get_mom_st1() const
Return the track momentum at Station 1.
virtual int get_num_hits() const
Return the number of hits associated to this track.
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.