10 #include <ktracker/SRecEvent.h>
20 , m_file_name(
"my_tree.root")
44 m_evt = findNode::getClass<SQEvent >(topNode,
"SQEvent");
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");
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");
56 m_file =
new TFile(m_file_name.c_str(),
"RECREATE");
57 m_tree =
new TTree(m_tree_name.c_str(),
"Created by MakeMyTree");
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);
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;
80 SQSpill* sp = m_sp_map ? m_sp_map->
get(sp_id) : 0;
87 m_vec_trk_true.clear();
89 for (
unsigned int ii = 0; ii < m_vec_trk->
size(); ii++) {
91 m_vec_trk_true.push_back(*trk);
95 m_vec_dim_true.clear();
97 for (
unsigned int ii = 0; ii < m_vec_dim->
size(); ii++) {
99 m_vec_dim_true.push_back(*dim);
int InitRun(PHCompositeNode *topNode)
int End(PHCompositeNode *topNode)
Called at the end of all processing.
int process_event(PHCompositeNode *topNode)
int Init(PHCompositeNode *topNode)
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.
An SQ interface class to hold the data of one spill.
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)