14 #include <ktracker/SRecEvent.h>
28 m_file_name(
"output.root"),
32 m_compression_level(5),
45 std::cout <<
"Fun4AllRUSOutputManager::OpenFile(): Attempting to open file: " << m_file_name <<
" with tree: " << m_tree_name << std::endl;
46 m_file =
new TFile(m_file_name.c_str(),
"RECREATE");
47 m_file->SetCompressionAlgorithm(ROOT::kLZMA);
48 m_file->SetCompressionLevel(m_compression_level);
50 if (!m_file || m_file->IsZombie()) {
51 std::cerr <<
"Error: Could not create file " << m_file_name << std::endl;
54 std::cout <<
"File " << m_file->GetName() <<
" opened successfully." << std::endl;
57 m_tree =
new TTree(m_tree_name.c_str(),
"Tree for storing events");
59 std::cerr <<
"Error: Could not create tree " << m_tree_name << std::endl;
62 std::cout <<
"Tree " << m_tree->GetName() <<
" created successfully." << std::endl;
65 m_tree->Branch(
"runID", &runID,
"runID/I");
66 m_tree->Branch(
"spillID", &spillID,
"spillID/I");
67 m_tree->Branch(
"eventID", &eventID,
"eventID/I");
68 m_tree->Branch(
"rfID", &rfID,
"rfID/I");
69 m_tree->Branch(
"turnID", &rfID,
"turnID/I");
70 m_tree->Branch(
"rfIntensity", rfIntensity,
"rfIntensity[33]/I");
71 m_tree->Branch(
"fpgaTrigger", fpgaTrigger,
"fpgaTrigger[5]/I");
72 m_tree->Branch(
"nimTrigger", nimTrigger,
"nimTrigger[5]/I");
73 m_tree->Branch(
"hitID", &hitID);
74 m_tree->Branch(
"detectorID", &detectorID);
75 m_tree->Branch(
"elementID", &elementID);
76 m_tree->Branch(
"tdcTime", &tdcTime);
77 m_tree->Branch(
"driftDistance", &driftDistance);
79 m_tree->SetAutoFlush(m_auto_flush);
80 m_tree->SetBasketSize(
"*", m_basket_size);
82 m_evt = findNode::getClass<SQEvent>(startNode,
"SQEvent");
83 m_hit_vec = findNode::getClass<SQHitVector>(startNode,
"SQHitVector");
85 if (!m_evt || !m_hit_vec) {
92 if (!m_file || !m_tree) {
115 for (
int i = -16; i <= 16; ++i) {
120 for (
int ihit = 0; ihit < m_hit_vec->
size(); ++ihit) {
121 SQHit* hit = m_hit_vec->
at(ihit);
135 std::cout <<
"Fun4AllRUSOutputManager::CloseFile(): Closing file: " << m_file_name << std::endl;
147 driftDistance.clear();
Fun4AllRUSOutputManager(const std::string &myname="UNIVERSALOUT")
virtual ~Fun4AllRUSOutputManager()
int OpenFile(PHCompositeNode *startNode)
virtual int Write(PHCompositeNode *startNode)
write starting from given node
virtual int get_run_id() const =0
Return the run ID.
virtual int get_qie_rf_intensity(const short i) const =0
Return the i-th QIE RF intensity, where i=-16...+16.
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_qie_turn_id() const =0
Return the QIE turn ID.
virtual int get_qie_rf_id() const =0
Return the QIE RF ID.
virtual int get_spill_id() const =0
Return the spill ID.
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_drift_distance() const
Return the drift distance of this hit. Probably the value is not properly set at present....
virtual short get_element_id() const
Return the element ID of this hit.
virtual int get_hit_id() const
Return the ID of this hit.
virtual float get_tdc_time() const
Return the TDC time (nsec) of this hit.
virtual short get_detector_id() const
Return the detector ID of this hit.