16 #include <ktracker/SRawEvent.h>
24 , m_file_name(
"sraw.root")
26 , m_branch_name(
"rawEvent")
42 if (m_sraw)
delete m_sraw;
48 m_evt = findNode::getClass<SQEvent >(startNode,
"SQEvent");
49 m_sp_map = findNode::getClass<SQSpillMap >(startNode,
"SQSpillMap");
50 m_hit_vec = findNode::getClass<SQHitVector>(startNode,
"SQHitVector");
51 m_trig_hit_vec = findNode::getClass<SQHitVector>(startNode,
"SQTriggerHitVector");
52 if (!m_evt || !m_hit_vec || !m_trig_hit_vec) {
53 cout <<
PHWHERE <<
"Cannot find the SQ data nodes. Abort." << endl;
61 SQSpill* sp = m_sp_map ? m_sp_map->
get(sp_id) : 0;
72 if (
Verbosity() > 0) cout <<
"Fun4AllSRawEventOutputManager::CloseFile(): run " << m_run_id << endl;
82 if (
Verbosity() > 0) cout <<
"Fun4AllSRawEventOutputManager::OpenFile(): run " << m_run_id <<
", file " << m_file_name << endl;
83 m_file =
new TFile(m_file_name.c_str(),
"RECREATE");
84 if (!m_file->IsOpen()) {
85 cout <<
PHWHERE <<
"Could not open " << m_file_name <<
". Abort." << endl;
89 m_tree =
new TTree(m_tree_name.c_str(),
"");
90 m_tree->Branch(m_branch_name.c_str(), &m_sraw);
virtual int Verbosity() const
Gets the verbosity of this module.
virtual ~Fun4AllSRawEventOutputManager()
virtual int Write(PHCompositeNode *startNode)
write starting from given node
Fun4AllSRawEventOutputManager(const std::string &myname="SRAWEVENTOUT")
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.
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)