Class Reference for E1039 Core & Analysis Software
SubsysRecoSignal.cc
Go to the documentation of this file.
1 #include <iomanip>
2 #include <TFile.h>
3 #include <TTree.h>
9 #include <phool/getClass.h>
10 #include <UtilAna/UtilTrack.h>
11 #include <UtilAna/UtilDimuon.h>
12 #include <UtilAna/UtilTrigger.h>
13 #include <geom_svc/GeomSvc.h>
14 #include "SubsysRecoSignal.h"
15 using namespace std;
16 
17 SubsysRecoSignal::SubsysRecoSignal(const std::string &name)
18  : SubsysReco(name)
19 {
20  ;
21 }
22 
24 {
26 }
27 
29 {
30  mi_evt_true = findNode::getClass<SQMCEvent >(topNode, "SQMCEvent");
31  mi_vec_trk = findNode::getClass<SQTrackVector >(topNode, "SQTruthTrackVector");
32  mi_vec_dim = findNode::getClass<SQDimuonVector>(topNode, "SQTruthDimuonVector");
33  mi_vec_hit = findNode::getClass<SQHitVector >(topNode, "SQHitVector");
34  if (!mi_evt_true || !mi_vec_trk || !mi_vec_dim || !mi_vec_hit) return Fun4AllReturnCodes::ABORTEVENT;
35 
36  mo_file = new TFile("signal_tree.root", "RECREATE");
37  mo_tree = new TTree("signal_tree", "Created by SubsysRecoSignal");
38  mo_tree->Branch("signal_data", &mo_sig);
39 
41 }
42 
44 {
45  static unsigned int n_evt = 0;
46  if (++n_evt % 100000 == 0) cout << n_evt << endl;
47  else if (n_evt % 10000 == 0) cout << " . " << flush;
48 
49  mo_sig.weight = mi_evt_true->get_weight();
50 
51  for (unsigned int ii = 0; ii < mi_vec_dim->size(); ii++) {
52  SQDimuon* dim = mi_vec_dim->at(ii);
53  int id_trk_pos = dim->get_track_id_pos();
54  int id_trk_neg = dim->get_track_id_neg();
55  SQTrack* trk_pos = UtilTrack::FindTrackByID(mi_vec_trk, id_trk_pos, true);
56  SQTrack* trk_neg = UtilTrack::FindTrackByID(mi_vec_trk, id_trk_neg, true);
57  if (! trk_pos || ! trk_neg) {
58  cerr << "Invalid true tracks! Abort." << endl;
59  exit(1);
60  }
61 
62  shared_ptr<SQHitVector> hv_trk_pos(UtilTrack::FindHodoHitsOfTrack(mi_vec_hit, id_trk_pos));
63  shared_ptr<SQHitVector> hv_trk_neg(UtilTrack::FindHodoHitsOfTrack(mi_vec_hit, id_trk_neg));
64  int road_pos = UtilTrigger::ExtractRoadID(hv_trk_pos.get());
65  int road_neg = UtilTrigger::ExtractRoadID(hv_trk_neg.get());
66  //cout << " pos: " << id_trk_pos << " " << hv_trk_pos->size() << " " << road_pos << "\n"
67  // << " neg: " << id_trk_neg << " " << hv_trk_neg->size() << " " << road_neg << endl;
68  //if (road_pos * road_neg >= 0) continue // Keep only T+B/B+T pairs
69 
70  UtilDimuon::CalcVar(dim, mo_sig.mass, mo_sig.pT, mo_sig.x1, mo_sig.x2, mo_sig.xF);
71  mo_sig.dz = dim->get_pos().Z();
72  mo_sig.mom = dim->get_mom().P();
73  mo_sig.phi = dim->get_mom().Phi();
74  mo_sig.theta = dim->get_mom().Theta();
75  mo_sig.road_pos = road_pos;
76  mo_sig.road_neg = road_neg;
77  mo_tree->Fill();
78  }
79 
81 }
82 
84 {
85  mo_file->cd();
86  mo_file->Write();
87  mo_file->Close();
89 }
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 int get_track_id_neg() const =0
Return the track ID of the negative track.
virtual TLorentzVector get_mom() const =0
Return the dimuon momentum at vertex.
virtual int get_track_id_pos() const =0
Return the track ID of the positive track.
virtual TVector3 get_pos() const =0
Return the dimuon position at vertex.
virtual double get_weight() const =0
Return the event weight.
An SQ interface class to hold one true or reconstructed track.
Definition: SQTrack.h:8
int process_event(PHCompositeNode *topNode)
SubsysRecoSignal(const std::string &name="SubsysRecoSignal")
int InitRun(PHCompositeNode *topNode)
int Init(PHCompositeNode *topNode)
int End(PHCompositeNode *topNode)
Called at the end of all processing.
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
SQHitVector * FindHodoHitsOfTrack(const SQHitVector *vec_in, const int id_trk)
Find all hodoscope hits hits associated with the given track.
Definition: UtilTrack.cc:79
SQTrack * FindTrackByID(const SQTrackVector *vec, const int id_trk, const bool do_assert=false)
Find a track by track ID in the given track list.
Definition: UtilTrack.cc:13
int ExtractRoadID(const SQHitVector *vec)
Find a unique road in the given list of SQHits.
Definition: UtilTrigger.cc:40
double mom
Definition: TreeData.h:15
double phi
Definition: TreeData.h:16
double x1
Definition: TreeData.h:12
double pT
Definition: TreeData.h:10
double theta
Definition: TreeData.h:17
double weight
Definition: TreeData.h:8
double mass
Definition: TreeData.h:9
double dz
Definition: TreeData.h:14
int road_pos
Definition: TreeData.h:18
int road_neg
Definition: TreeData.h:19
double x2
Definition: TreeData.h:13
double xF
Definition: TreeData.h:11