Class Reference for E1039 Core & Analysis Software
Fun4AllSRawEventOutputManagerV2.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 <phool/PHNodeIterator.h>
13 #include <interface_main/SQEvent.h>
16 #include <ktracker/SRawEvent.h>
17 #include <ktracker/UtilSRawEvent.h>
19 using namespace std;
20 
21 Fun4AllSRawEventOutputManagerV2::Fun4AllSRawEventOutputManagerV2(const string &myname, const std::string &file_name)
22  : Fun4AllOutputManager(myname)
23  , m_file_name(file_name)
24  , m_tree_name("save")
25  , m_branch_name("rawEvent")
26  , m_file(0)
27  , m_tree(0)
28  , m_sraw(0)
29  , m_evt(0)
30  , m_sp_map(0)
31  , m_hit_vec(0)
32  , m_trig_hit_vec(0)
33 {
34  ;
35 }
36 
38 {
39  CloseFile();
40  if (m_sraw) delete m_sraw;
41 }
42 
44 {
45  if (! m_evt) {
46  m_evt = findNode::getClass<SQEvent >(startNode, "SQEvent");
47  m_sp_map = findNode::getClass<SQSpillMap >(startNode, "SQSpillMap");
48  m_hit_vec = findNode::getClass<SQHitVector>(startNode, "SQHitVector");
49  m_trig_hit_vec = findNode::getClass<SQHitVector>(startNode, "SQTriggerHitVector");
50  if (!m_evt) {
51  cout << PHWHERE << "Cannot find the SQEvent data nodes. Abort." << endl;
52  exit(1);
53  }
54  }
55  if (! m_file) OpenFile();
56 
57  UtilSRawEvent::SetEvent(m_sraw, m_evt);
58  if (m_sp_map ) UtilSRawEvent::SetSpill (m_sraw, m_sp_map->get(m_evt->get_spill_id()));
59  if (m_hit_vec ) UtilSRawEvent::SetHit (m_sraw, m_hit_vec);
60  if (m_trig_hit_vec) UtilSRawEvent::SetTriggerHit(m_sraw, m_trig_hit_vec);
61  m_tree->Fill();
62  return 0;
63 }
64 
66 {
67  if (Verbosity() > 0) cout << "Fun4AllSRawEventOutputManagerV2::OpenFile(): " << m_file_name << endl;
68  m_file = new TFile(m_file_name.c_str(), "RECREATE");
69  if (!m_file->IsOpen()) {
70  cout << PHWHERE << "Could not open " << m_file_name << ". Abort." << endl;
71  exit(1);
72  }
73  if (!m_sraw) m_sraw = new SRawEvent();
74  m_tree = new TTree(m_tree_name.c_str(), "");
75  m_tree->Branch(m_branch_name.c_str(), &m_sraw);
76 }
77 
79 {
80  if (Verbosity() > 0) cout << "Fun4AllSRawEventOutputManagerV2::CloseFile(): " << m_file_name << endl;
81  if (! m_file) return;
82  m_file->Write();
83  m_file->Close();
84  delete m_file;
85  m_file = 0;
86 }
virtual int Verbosity() const
Gets the verbosity of this module.
Definition: Fun4AllBase.h:64
virtual int Write(PHCompositeNode *startNode)
write starting from given node
Fun4AllSRawEventOutputManagerV2(const std::string &myname="SRAWEVENTOUT", const std::string &file_name="srawevent.root")
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
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