Class Reference for E1039 Core & Analysis Software
Fun4AllRUSOutputManager.h
Go to the documentation of this file.
1 #ifndef _FUN4ALL_UNIVERSAL_OUTPUT_MANAGER__H_
2 #define _FUN4ALL_UNIVERSAL_OUTPUT_MANAGER__H_
4 #include <string>
5 #include <vector>
6 #include <map>
7 #include <TStopwatch.h>
8 
9 class TFile;
10 class TTree;
11 class PHCompositeNode;
12 class SQEvent;
13 class SQSpillMap;
14 class SQHitVector;
15 class SQRun;
16 
18 public:
19  Fun4AllRUSOutputManager(const std::string &myname = "UNIVERSALOUT");
20  virtual ~Fun4AllRUSOutputManager();
21 
22  void SetTreeName(const std::string& name) { m_tree_name = name; }
23  void SetFileName(const std::string& name) { m_file_name = name; }
24  virtual int Write(PHCompositeNode* startNode);
25  void ResetBranches();
26  void SetBasketSize(int size) { m_basket_size = size; }
27  void SetAutoFlush(int flush) { m_auto_flush = flush; }
28  void SetCompressionLevel(int level) { m_compression_level = level; }
29 
30 protected:
31  int OpenFile(PHCompositeNode* startNode);
32  void CloseFile();
33 
34 private:
35  std::string m_tree_name;
36  std::string m_file_name;
37  std::string m_dir_base;
38  bool m_dimuon_mode;
39 
40  TFile* m_file;
41  TTree* m_tree;
42 
43  SQEvent* m_evt;
44  SQSpillMap* m_sp_map;
45  SQHitVector* m_hit_vec;
46  SQRun* sq_run;
47 
48  int m_basket_size;
49  int m_auto_flush;
50  int m_compression_level;
51 
52  int runID;
53  int spillID;
54  int eventID;
55  int turnID;
56  int rfID;
57  int rfIntensity[33];
58  int fpgaTrigger[5] = {0};
59  int nimTrigger[5] = {0};
60 
61  std::vector<int> hitID;
62  std::vector<int> detectorID;
63  std::vector<int> elementID;
64  std::vector<double> tdcTime;
65  std::vector<double> driftDistance;
66 };
67 
68 #endif
void SetFileName(const std::string &name)
Fun4AllRUSOutputManager(const std::string &myname="UNIVERSALOUT")
int OpenFile(PHCompositeNode *startNode)
void SetTreeName(const std::string &name)
virtual int Write(PHCompositeNode *startNode)
write starting from given node
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 the run-level info.
Definition: SQRun.h:18
An SQ interface class to hold a list of SQSpill objects.
Definition: SQSpillMap.h:19