Class Reference for E1039 Core & Analysis Software
Fun4AllSRawEventOutputManager.h
Go to the documentation of this file.
1 #ifndef __FUN4ALLSRAWEVENTOUTPUTMANAGER_H__
2 #define __FUN4ALLSRAWEVENTOUTPUTMANAGER_H__
4 #include <string>
5 #include <vector>
6 class TFile;
7 class TTree;
8 class PHCompositeNode;
9 class SRawEvent;
10 class SQEvent;
11 class SQSpillMap;
12 class SQHitVector;
13 
16 {
17  std::string m_file_name;
18  std::string m_tree_name;
19  std::string m_branch_name;
20  int m_run_id;
21  TFile* m_file;
22  TTree* m_tree;
23  SRawEvent* m_sraw;
24 
25  SQEvent* m_evt;
26  SQSpillMap* m_sp_map;
27  SQHitVector* m_hit_vec;
28  SQHitVector* m_trig_hit_vec;
29 
30  public:
31  Fun4AllSRawEventOutputManager(const std::string &myname="SRAWEVENTOUT");
33 
34  void SetFileName (const std::string name) { m_file_name = name; }
35  void SetTreeName (const std::string name) { m_tree_name = name; }
36  void SetBranchName(const std::string name) { m_branch_name = name; }
37 
38  virtual int Write(PHCompositeNode *startNode);
39 
40  protected:
41  void CloseFile();
42  void OpenFile();
43 };
44 
45 #endif /* __FUN4ALLSRAWEVENTOUTPUTMANAGER_H__ */
Fun4AllOutputManager to generate SRawEvent output file.
virtual int Write(PHCompositeNode *startNode)
write starting from given node
Fun4AllSRawEventOutputManager(const std::string &myname="SRAWEVENTOUT")
void SetFileName(const std::string name)
void SetTreeName(const std::string name)
void SetBranchName(const std::string name)
An SQ interface class to hold one event header.
Definition: SQEvent.h:17
An SQ interface class to hold a list of SQHit objects.
Definition: SQHitVector.h:32
An SQ interface class to hold a list of SQSpill objects.
Definition: SQSpillMap.h:19