19 #include <ktracker/SRecEvent.h>
31 #include <TClonesArray.h>
34 #define LogError(exp) std::cout<<"ERROR: " <<__FILE__<<": "<<__LINE__<<": "<< exp << std::endl
35 #define LogWarning(exp) std::cout<<"WARNING: "<<__FILE__<<": "<<__LINE__<<": "<< exp << std::endl
42 _event_header(nullptr),
44 _out_name(
"eval.root"),
77 pos1 =
new TVector3();
78 pos2 =
new TVector3();
79 pos3 =
new TVector3();
80 posvtx =
new TVector3();
81 mom1 =
new TVector3();
82 mom2 =
new TVector3();
83 mom3 =
new TVector3();
84 momvtx =
new TVector3();
85 rec_mom1 =
new TVector3();
86 rec_momvtx =
new TVector3();
87 rec_posvtx =
new TVector3();
88 rec_momtgt =
new TVector3();
89 rec_postgt =
new TVector3();
91 rec_pmom =
new TVector3();
92 rec_nmom =
new TVector3();
93 rec_ppos =
new TVector3();
94 rec_npos =
new TVector3();
95 rec_vtx =
new TVector3();
107 int ret = GetNodes(topNode);
128 Eval_trkdim(topNode);
141 std::cout <<
"AnaPileup::End" << std::endl;
144 _sqhits_tree->Write();
164 for(
int ihit=0; ihit<_hit_vector->
size(); ++ihit) {
165 SQHit *sqhit = _hit_vector->
at(ihit);
208 _sqhits_tree->Fill();
229 int nTracks = trackVector->
size();
230 int nRecTracks = legacyContainer ? _recEvent->
getNTracks() : recTrackVector->
size();
231 for(
int i = 0; i < nTracks; ++i)
242 if(recid >= 0 && recid < nRecTracks)
253 rec_mom1->SetXYZ(-999., -999., -999.);
254 rec_momvtx->SetXYZ(-999., -999., -999.);
255 rec_posvtx->SetXYZ(-999., -999., -999.);
263 int nDimuons = dimuonVector->
size();
264 int nRecDimuons = legacyContainer ? _recEvent->
getNDimuons() : (recDimuonVector ? recDimuonVector->
size() : -1);
265 for(
int i = 0; i < nRecDimuons; ++i)
268 rec_mass = recDimuon->
mass;
269 *rec_pmom = recDimuon->
p_pos.Vect();
270 *rec_nmom = recDimuon->
p_neg.Vect();
271 *rec_ppos = recDimuon->
vtx_pos;
272 *rec_npos = recDimuon->
vtx_neg;
273 *rec_vtx = recDimuon->
vtx;
285 mom_H1T =
new TClonesArray(
"TVector3");
286 pos_H1T =
new TClonesArray(
"TVector3");
287 mom_H1B =
new TClonesArray(
"TVector3");
288 pos_H1B =
new TClonesArray(
"TVector3");
290 mom_H1L =
new TClonesArray(
"TVector3");
291 pos_H1L =
new TClonesArray(
"TVector3");
292 mom_H1R =
new TClonesArray(
"TVector3");
293 pos_H1R =
new TClonesArray(
"TVector3");
295 mom_D0X =
new TClonesArray(
"TVector3");
296 pos_D0X =
new TClonesArray(
"TVector3");
299 evt_tree =
new TTree(
"pileup_evt",
"Event level info from piling up bkg interactions");
301 evt_tree->Branch(
"n_bucketsize", &n_bucketsize,
"n_bucketsize/I");
302 evt_tree->Branch(
"eventID", &eventID,
"eventID/I");
304 evt_tree->Branch(
"fpga1", &fpga1,
"fpga1/I");
305 evt_tree->Branch(
"fpga2", &fpga2,
"fpga2/I");
306 evt_tree->Branch(
"fpga3", &fpga3,
"fpga3/I");
307 evt_tree->Branch(
"fpga4", &fpga4,
"fpga4/I");
308 evt_tree->Branch(
"fpga5", &fpga5,
"fpga5/I");
310 evt_tree->Branch(
"nim1", &nim1,
"nim1/I");
311 evt_tree->Branch(
"nim2", &nim2,
"nim2/I");
314 _sqhits_tree =
new TTree(
"pileup_sqhits",
"Analsysis of sqhits from piling up bkg interactions");
316 _sqhits_tree->Branch(
"n_bucketsize", &n_bucketsize,
"n_bucketsize/I");
319 _sqhits_tree->Branch(
"fpga1", &fpga1,
"fpga1/I");
320 _sqhits_tree->Branch(
"fpga2", &fpga2,
"fpga2/I");
321 _sqhits_tree->Branch(
"fpga3", &fpga3,
"fpga3/I");
322 _sqhits_tree->Branch(
"fpga4", &fpga4,
"fpga4/I");
323 _sqhits_tree->Branch(
"fpga5", &fpga5,
"fpga5/I");
325 _sqhits_tree->Branch(
"nim1", &nim1,
"nim1/I");
326 _sqhits_tree->Branch(
"nim2", &nim2,
"nim2/I");
329 _sqhits_tree->Branch(
"h1Bhit", &h1Bhit,
"h1Bhit/I");
330 _sqhits_tree->Branch(
"h1Thit", &h1Thit,
"h1Thit/I");
331 _sqhits_tree->Branch(
"eID_H1T", eID_H1T,
"eID_H1T[h1Thit]/I");
332 _sqhits_tree->Branch(
"eID_H1B", eID_H1B,
"eID_H1B[h1Bhit]/I");
334 _sqhits_tree->Branch(
"h1Lhit", &h1Lhit,
"h1Lhit/I");
335 _sqhits_tree->Branch(
"h1Rhit", &h1Rhit,
"h1Rhit/I");
336 _sqhits_tree->Branch(
"eID_H1L", eID_H1L,
"eID_H1L[h1Lhit]/I");
337 _sqhits_tree->Branch(
"eID_H1R", eID_H1R,
"eID_H1R[h1Rhit]/I");
339 _sqhits_tree->Branch(
"mom_H1T", &mom_H1T, 256000, 99);
340 _sqhits_tree->Branch(
"pos_H1T", &pos_H1T, 256000, 99);
341 _sqhits_tree->Branch(
"mom_H1B", &mom_H1B, 256000, 99);
342 _sqhits_tree->Branch(
"pos_H1B", &pos_H1B, 256000, 99);
344 _sqhits_tree->Branch(
"mom_H1L", &mom_H1L, 256000, 99);
345 _sqhits_tree->Branch(
"pos_H1L", &pos_H1L, 256000, 99);
346 _sqhits_tree->Branch(
"mom_H1R", &mom_H1R, 256000, 99);
347 _sqhits_tree->Branch(
"pos_H1R", &pos_H1R, 256000, 99);
350 _sqhits_tree->Branch(
"D0Xhit", &D0Xhit,
"D0Xhit/I");
351 _sqhits_tree->Branch(
"eID_D0X", eID_D0X,
"eID_D0X[D0Xhit]/I");
352 _sqhits_tree->Branch(
"mom_D0X", &mom_D0X, 256000, 99);
353 _sqhits_tree->Branch(
"pos_D0X", &pos_D0X, 256000, 99);
355 mom_H1T->BypassStreamer();
356 pos_H1T->BypassStreamer();
357 mom_H1B->BypassStreamer();
358 pos_H1B->BypassStreamer();
360 mom_H1L->BypassStreamer();
361 pos_H1L->BypassStreamer();
362 mom_H1R->BypassStreamer();
363 pos_H1R->BypassStreamer();
365 mom_D0X->BypassStreamer();
366 pos_D0X->BypassStreamer();
368 trkTree =
new TTree(
"pileup_trk",
"Track Tree Created by AnaPileup Module");
369 trkTree->Branch(
"pos1", &pos1, 256000, 99);
370 trkTree->Branch(
"pos2", &pos2, 256000, 99);
371 trkTree->Branch(
"pos3", &pos3, 256000, 99);
372 trkTree->Branch(
"posvtx", &posvtx, 256000, 99);
373 trkTree->Branch(
"mom1", &mom1, 256000, 99);
374 trkTree->Branch(
"mom2", &mom2, 256000, 99);
375 trkTree->Branch(
"mom3", &mom3, 256000, 99);
376 trkTree->Branch(
"momvtx", &momvtx, 256000, 99);
377 trkTree->Branch(
"rec_mom1", &rec_mom1, 256000, 99);
378 trkTree->Branch(
"rec_momvtx", &rec_momvtx, 256000, 99);
379 trkTree->Branch(
"rec_posvtx", &rec_posvtx, 256000, 99);
380 trkTree->Branch(
"rec_momtgt", &rec_momtgt, 256000, 99);
381 trkTree->Branch(
"rec_postgt", &rec_postgt, 256000, 99);
383 dimTree =
new TTree(
"pileup_dim",
"Dimuon Tree Created by AnaPileup Module");
384 dimTree->Branch(
"rec_mass", &rec_mass,
"rec_mass/D");
385 dimTree->Branch(
"rec_pmom", &rec_pmom, 256000, 99);
386 dimTree->Branch(
"rec_nmom", &rec_nmom, 256000, 99);
387 dimTree->Branch(
"rec_ppos", &rec_ppos, 256000, 99);
388 dimTree->Branch(
"rec_npos", &rec_npos, 256000, 99);
389 dimTree->Branch(
"rec_vtx", &rec_vtx, 256000, 99);
396 run_id = std::numeric_limits<int>::max();
397 spill_id = std::numeric_limits<int>::max();
398 event_id = std::numeric_limits<int>::max();
408 _event_header = findNode::getClass<SQEvent>(topNode,
"SQEvent");
409 if (!_event_header) {
414 mi_evt_true = findNode::getClass<SQMCEvent >(topNode,
"SQMCEvent");
417 _hit_vector = findNode::getClass<SQHitVector>(topNode,
"SQHitVector");
424 trackVector = findNode::getClass<SQTrackVector>(topNode,
"SQTruthTrackVector");
425 dimuonVector = findNode::getClass<SQDimuonVector>(topNode,
"SQTruthDimuonVector");
426 if(!trackVector || !dimuonVector)
433 _recEvent = findNode::getClass<SRecEvent>(topNode,
"SRecEvent");
442 recTrackVector = findNode::getClass<SQTrackVector>(topNode,
"SQRecTrackVector");
443 recDimuonVector = findNode::getClass<SQDimuonVector>(topNode,
"SQRecDimuonVector");
AnaPileup(const std::string &name="AnaPileup.root")
int InitRun(PHCompositeNode *topNode)
int End(PHCompositeNode *topNode)
===========================
int process_event(PHCompositeNode *topNode)
int Init(PHCompositeNode *topNode)
@ VERBOSITY_A_LOT
Output a lot of messages.
virtual int Verbosity() const
Gets the verbosity of this module.
User interface class about the geometry of detector planes.
int getDetectorID(const std::string &detectorName) const
Get the plane position.
static GeomSvc * instance()
singlton instance
static PHTFileServer & get(void)
return reference to class singleton
void open(const std::string &filename, const std::string &type="RECREATE")
open a SafeTFile. If filename is not found in the map, create a new TFile and append to the map; incr...
bool cd(const std::string &filename)
change to directory of TFile matching filename
virtual size_t size() const =0
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 const SQHit * at(const size_t idkey) const =0
virtual size_t size() const =0
An SQ interface class to hold one detector hit.
virtual float get_truth_z() const
Return the true z-position of this hit. Meaningful only if this hit is of MC.
virtual float get_truth_pz() const
Return the true z-momentum of this hit. Meaningful only if this hit is of MC.
virtual float get_truth_y() const
Return the true y-position of this hit. Meaningful only if this hit is of MC.
virtual float get_truth_px() const
Return the true x-momentum of this hit. Meaningful only if this hit is of MC.
virtual short get_element_id() const
Return the element ID of this hit.
virtual float get_truth_py() const
Return the true y-momentum of this hit. Meaningful only if this hit is of MC.
virtual float get_truth_x() const
Return the true x-position of this hit. Meaningful only if this hit is of MC.
virtual short get_detector_id() const
Return the detector ID of this hit.
virtual double get_cross_section() const =0
Return the cross section.
virtual const SQTrack * at(const size_t id) const =0
virtual size_t size() const =0
An SQ interface class to hold one true or reconstructed track.
virtual TVector3 get_pos_vtx() const =0
Return the track position at vertex.
virtual int get_rec_track_id() const =0
Return the track ID of associated reconstructed track. Valid only if this object holds truth track in...
virtual TLorentzVector get_mom_vtx() const =0
Return the track momentum at vertex.
virtual TLorentzVector get_mom_st1() const =0
Return the track momentum at Station 1.
virtual TVector3 get_pos_st3() const =0
Return the track position at Station 3.
virtual TVector3 get_pos_st1() const =0
Return the track position at Station 1.
virtual TLorentzVector get_mom_st3() const =0
Return the track momentum at Station 3.
TVector3 vtx
3-vector vertex position
TLorentzVector p_pos
4-momentum of the muon tracks after vertex fit
Double_t mass
Kinematic variables.
SRecDimuon & getDimuon(Int_t i)
Int_t getNTracks()
Get tracks.
SRecTrack & getTrack(Int_t i)
Int_t getNDimuons()
Get dimuons.
TVector3 getMomentumVecSt1() const