Class Reference for E1039 Core & Analysis Software
MakeMyTree.cc
Go to the documentation of this file.
1 #include <iomanip>
2 #include <TFile.h>
3 #include <TTree.h>
10 #include <ktracker/SRecEvent.h>
12 #include <phool/getClass.h>
13 #include <ktracker/UtilSRawEvent.h>
14 #include <UtilAna/UtilDimuon.h>
15 #include "MakeMyTree.h"
16 using namespace std;
17 
19  : SubsysReco("MakeMyTree")
20  , m_file_name("my_tree.root")
21  , m_tree_name("tree")
22  , m_evt (0)
23  , m_sp_map (0)
24  , m_hit_vec (0)
25  , m_trig_hit_vec(0)
26  , m_srec (0)
27  , m_evt_true(0)
28  , m_vec_trk (0)
29  , m_vec_dim (0)
30  , m_file (0)
31  , m_tree (0)
32  , m_sraw (0)
33 {
34  ;
35 }
36 
38 {
40 }
41 
43 {
44  m_evt = findNode::getClass<SQEvent >(topNode, "SQEvent");
45  if (!m_evt) return Fun4AllReturnCodes::ABORTEVENT;
46 
47  m_sp_map = findNode::getClass<SQSpillMap >(topNode, "SQSpillMap");
48  m_hit_vec = findNode::getClass<SQHitVector>(topNode, "SQHitVector");
49  m_trig_hit_vec = findNode::getClass<SQHitVector>(topNode, "SQTriggerHitVector");
50 
51  m_evt_true = findNode::getClass<SQMCEvent >(topNode, "SQMCEvent");
52  m_vec_trk = findNode::getClass<SQTrackVector >(topNode, "SQTruthTrackVector");
53  m_vec_dim = findNode::getClass<SQDimuonVector>(topNode, "SQTruthDimuonVector");
54  m_srec = findNode::getClass<SRecEvent >(topNode, "SRecEvent");
55 
56  m_file = new TFile(m_file_name.c_str(), "RECREATE");
57  m_tree = new TTree(m_tree_name.c_str(), "Created by MakeMyTree");
58  m_sraw = new SRawEvent();
59 
60  m_tree->Branch("SQEvent" , &m_evt);
61  m_tree->Branch("SRawEvent" , &m_sraw);
62  if (m_evt_true) m_tree->Branch("SQMCEvent" , &m_evt_true);
63  if (m_vec_trk ) m_tree->Branch("SQTruthTrackVector" , &m_vec_trk_true);
64  if (m_vec_dim ) m_tree->Branch("SQTruthDimuonVector", &m_vec_dim_true);
65  if (m_srec ) m_tree->Branch("SRecEvent" , &m_srec);
66 
68 }
69 
71 {
72  static unsigned int n_evt = 0;
73  if (++n_evt % 100000 == 0) cout << n_evt << endl;
74  else if (n_evt % 10000 == 0) cout << " . " << flush;
75 
76  //int run_id = m_evt->get_run_id();
77  int sp_id = m_evt->get_spill_id();
78  //int evt_id = m_evt->get_event_id();
79 
80  SQSpill* sp = m_sp_map ? m_sp_map->get(sp_id) : 0;
81 
82  UtilSRawEvent::SetEvent (m_sraw, m_evt);
83  UtilSRawEvent::SetSpill (m_sraw, sp);
84  UtilSRawEvent::SetHit (m_sraw, m_hit_vec);
85  UtilSRawEvent::SetTriggerHit(m_sraw, m_trig_hit_vec);
86 
87  m_vec_trk_true.clear();
88  if (m_vec_trk) {
89  for (unsigned int ii = 0; ii < m_vec_trk->size(); ii++) {
90  SQTrack_v1* trk = dynamic_cast<SQTrack_v1*>(m_vec_trk->at(ii));
91  m_vec_trk_true.push_back(*trk);
92  }
93  }
94 
95  m_vec_dim_true.clear();
96  if (m_vec_dim) {
97  for (unsigned int ii = 0; ii < m_vec_dim->size(); ii++) {
98  SQDimuon_v1* dim = dynamic_cast<SQDimuon_v1*>(m_vec_dim->at(ii));
99  m_vec_dim_true.push_back(*dim);
100  }
101  }
102 
103  m_tree->Fill();
105 }
106 
108 {
109  m_file->cd();
110  m_file->Write();
111  m_file->Close();
113 }
int InitRun(PHCompositeNode *topNode)
Definition: MakeMyTree.cc:42
int End(PHCompositeNode *topNode)
Called at the end of all processing.
Definition: MakeMyTree.cc:107
int process_event(PHCompositeNode *topNode)
Definition: MakeMyTree.cc:70
int Init(PHCompositeNode *topNode)
Definition: MakeMyTree.cc:37
virtual const SQDimuon * at(const size_t id) const =0
virtual size_t size() const =0
virtual int get_spill_id() const =0
Return the spill ID.
virtual const SQSpill * get(unsigned int idkey) const
Return the SQSpill entry having spill ID = 'idkey'. Return '0' if no entry exists.
Definition: SQSpillMap.h:41
An SQ interface class to hold the data of one spill.
Definition: SQSpill.h:19
virtual const SQTrack * at(const size_t id) const =0
virtual size_t size() const =0
bool SetTriggerHit(SRawEvent *sraw, const SQHitVector *hit_vec, std::map< int, size_t > *hitID_idx=0, const bool do_assert=false)
bool SetEvent(SRawEvent *sraw, const SQEvent *evt, const bool do_assert=false)
bool SetHit(SRawEvent *sraw, const SQHitVector *hit_vec, std::map< int, size_t > *hitID_idx=0, const bool do_assert=false)
bool SetSpill(SRawEvent *sraw, const SQSpill *sp, const bool do_assert=false)