Class Reference for E1039 Core & Analysis Software
Fun4AllRUSOutputManager.cc
Go to the documentation of this file.
1 #include <cstdlib>
2 #include <string>
3 #include <iostream>
4 #include <iomanip>
5 #include <TSystem.h>
6 #include <TFile.h>
7 #include <TTree.h>
8 #include <phool/phool.h>
9 #include <phool/getClass.h>
10 #include <phool/PHNode.h>
11 #include <phool/PHNodeIOManager.h>
12 #include <interface_main/SQEvent.h>
13 #include <interface_main/SQRun.h>
14 #include <ktracker/SRecEvent.h>
20 
21 using namespace std;
22 
24  : Fun4AllOutputManager(myname),
25  m_file(0),
26  m_tree(0),
27  m_tree_name("tree"),
28  m_file_name("output.root"),
29  m_evt(0),
30  m_sp_map(0),
31  sq_run(0),
32  m_compression_level(5),
33  m_basket_size(64000),
34  m_auto_flush(2500),
35  m_hit_vec(0)
36 {
37  ;
38 }
39 
41  CloseFile();
42 }
43 
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);
49 
50  if (!m_file || m_file->IsZombie()) {
51  std::cerr << "Error: Could not create file " << m_file_name << std::endl;
52  exit(1);
53  } else {
54  std::cout << "File " << m_file->GetName() << " opened successfully." << std::endl;
55  }
56 
57  m_tree = new TTree(m_tree_name.c_str(), "Tree for storing events");
58  if (!m_tree) {
59  std::cerr << "Error: Could not create tree " << m_tree_name << std::endl;
60  exit(1);
61  } else {
62  std::cout << "Tree " << m_tree->GetName() << " created successfully." << std::endl;
63  }
64 
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);
78 
79  m_tree->SetAutoFlush(m_auto_flush);
80  m_tree->SetBasketSize("*", m_basket_size);
81 
82  m_evt = findNode::getClass<SQEvent>(startNode, "SQEvent");
83  m_hit_vec = findNode::getClass<SQHitVector>(startNode, "SQHitVector");
84 
85  if (!m_evt || !m_hit_vec) {
87  }
88 
90 }
92  if (!m_file || !m_tree) {
93  OpenFile(startNode);
94  }
95 
96  ResetBranches();
97 
98  runID = m_evt->get_run_id();
99  spillID = m_evt->get_spill_id();
100  eventID = m_evt->get_event_id();
101  turnID = m_evt->get_qie_turn_id();
102  rfID = m_evt->get_qie_rf_id ();
103 
104  fpgaTrigger[0] = m_evt->get_trigger(SQEvent::MATRIX1);
105  fpgaTrigger[1] = m_evt->get_trigger(SQEvent::MATRIX2);
106  fpgaTrigger[2] = m_evt->get_trigger(SQEvent::MATRIX3);
107  fpgaTrigger[3] = m_evt->get_trigger(SQEvent::MATRIX4);
108  fpgaTrigger[4] = m_evt->get_trigger(SQEvent::MATRIX5);
109 
110  nimTrigger[0] = m_evt->get_trigger(SQEvent::NIM1);
111  nimTrigger[1] = m_evt->get_trigger(SQEvent::NIM2);
112  nimTrigger[2] = m_evt->get_trigger(SQEvent::NIM3);
113  nimTrigger[3] = m_evt->get_trigger(SQEvent::NIM4);
114  nimTrigger[4] = m_evt->get_trigger(SQEvent::NIM5);
115  for (int i = -16; i <= 16; ++i) {
116  rfIntensity[i+ 16] = m_evt->get_qie_rf_intensity(i);
117 }
118 
119 if (m_hit_vec) {
120  for (int ihit = 0; ihit < m_hit_vec->size(); ++ihit) {
121  SQHit* hit = m_hit_vec->at(ihit);
122  hitID.push_back(hit->get_hit_id());
123  detectorID.push_back(hit->get_detector_id());
124  elementID.push_back(hit->get_element_id());
125  tdcTime.push_back(hit->get_tdc_time());
126  driftDistance.push_back(hit->get_drift_distance());
127  }
128 }
129  m_tree->Fill();
130  return 0;
131 }
132 
134  if (!m_file) return;
135  std::cout << "Fun4AllRUSOutputManager::CloseFile(): Closing file: " << m_file_name << std::endl;
136  m_file->Write();
137  m_file->Close();
138  delete m_file;
139  m_file = nullptr;
140 }
141 
143  hitID.clear();
144  detectorID.clear();
145  elementID.clear();
146  tdcTime.clear();
147  driftDistance.clear();
148 }
Fun4AllRUSOutputManager(const std::string &myname="UNIVERSALOUT")
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.
@ MATRIX2
Definition: SQEvent.h:28
@ NIM5
Definition: SQEvent.h:26
@ MATRIX1
Definition: SQEvent.h:27
@ NIM4
Definition: SQEvent.h:25
@ NIM2
Definition: SQEvent.h:23
@ NIM1
Definition: SQEvent.h:22
@ MATRIX3
Definition: SQEvent.h:29
@ NIM3
Definition: SQEvent.h:24
@ MATRIX4
Definition: SQEvent.h:30
@ MATRIX5
Definition: SQEvent.h:31
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.
Definition: SQHit.h:20
virtual float get_drift_distance() const
Return the drift distance of this hit. Probably the value is not properly set at present....
Definition: SQHit.h:57
virtual short get_element_id() const
Return the element ID of this hit.
Definition: SQHit.h:45
virtual int get_hit_id() const
Return the ID of this hit.
Definition: SQHit.h:39
virtual float get_tdc_time() const
Return the TDC time (nsec) of this hit.
Definition: SQHit.h:54
virtual short get_detector_id() const
Return the detector ID of this hit.
Definition: SQHit.h:42