Class Reference for E1039 Core & Analysis Software
Fun4AllSRawEventOutputManager.cxx
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 <phool/PHNodeIterator.h>
13 #include <interface_main/SQEvent.h>
16 #include <ktracker/SRawEvent.h>
17 //#include <ktracker/UtilSRawEvent.h>
18 #include "UtilSRawEvent.h"
20 using namespace std;
21 
23  : Fun4AllOutputManager(myname)
24  , m_file_name("sraw.root")
25  , m_tree_name("save")
26  , m_branch_name("rawEvent")
27  , m_run_id(0)
28  , m_file(0)
29  , m_tree(0)
30  , m_sraw(0)
31  , m_evt(0)
32  , m_sp_map(0)
33  , m_hit_vec(0)
34  , m_trig_hit_vec(0)
35 {
36  ;
37 }
38 
40 {
41  CloseFile();
42  if (m_sraw) delete m_sraw;
43 }
44 
46 {
47  if (! m_evt) {
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;
54  exit(1);
55  }
56  }
57  if (! m_file) OpenFile();
58 
59  //int run_id = m_evt->get_run_id();
60  int sp_id = m_evt->get_spill_id();
61  SQSpill* sp = m_sp_map ? m_sp_map->get(sp_id) : 0;
62  UtilSRawEvent::SetEvent (m_sraw, m_evt);
63  UtilSRawEvent::SetSpill (m_sraw, sp);
64  UtilSRawEvent::SetHit (m_sraw, m_hit_vec);
65  UtilSRawEvent::SetTriggerHit(m_sraw, m_trig_hit_vec);
66  m_tree->Fill();
67  return 0;
68 }
69 
71 {
72  if (Verbosity() > 0) cout << "Fun4AllSRawEventOutputManager::CloseFile(): run " << m_run_id << endl;
73  if (! m_file) return;
74  m_file->Write();
75  m_file->Close();
76  delete m_file;
77  m_file = 0;
78 }
79 
81 {
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;
86  exit(1);
87  }
88  if (!m_sraw) m_sraw = new SRawEvent();
89  m_tree = new TTree(m_tree_name.c_str(), "");
90  m_tree->Branch(m_branch_name.c_str(), &m_sraw);
91 }
virtual int Verbosity() const
Gets the verbosity of this module.
Definition: Fun4AllBase.h:64
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.
Definition: SQSpillMap.h:41
An SQ interface class to hold the data of one spill.
Definition: SQSpill.h:19
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)
#define PHWHERE
Definition: phool.h:23