Class Reference for E1039 Core & Analysis Software
Fun4AllVectEventOutputManager.h
Go to the documentation of this file.
1 #ifndef _FUN4ALL_UNIVERSAL_OUTPUT_MANAGER__H_
2 #define _FUN4ALL_UNIVERSAL_OUTPUT_MANAGER__H_
3 
5 #include <string>
6 #include <vector>
7 #include <map>
8 #include <TStopwatch.h>
9 
10 class TFile;
11 class TTree;
12 class PHCompositeNode;
13 class SQEvent;
14 class SQSpillMap;
15 class SQHitVector;
16 
17 
19 public:
20  Fun4AllVectEventOutputManager(const std::string &myname = "UNIVERSALOUT");
22 
23  void SetTreeName(const std::string& name) { m_tree_name = name; }
24  void SetFileName(const std::string& name) { m_file_name = name; }
25  virtual int Write(PHCompositeNode* startNode);
26  void ResetBranches();
27 protected:
28  int OpenFile(PHCompositeNode* startNode);
29  void CloseFile();
30 
31 private:
32  std::string m_tree_name;
33  std::string m_file_name;
34  std::string m_dir_base;
35  bool m_dimuon_mode;
36 
37  TFile* m_file;
38  TTree* m_tree;
39 
40  SQEvent* m_evt;
41  SQSpillMap* m_sp_map;
42  SQHitVector* m_hit_vec;
43  SQHitVector* m_trig_hit_vec;
44 
45 int runID;
46 int spillID;
47 int eventID;
48 int rfID;
49 int turnID;
50 int rfIntensities[33];
51 int fpgaTriggers[5] = {0};
52 int nimTriggers[5] = {0};
53 
54 std::vector<int> detectorIDs;
55 std::vector<int> elementIDs;
56 std::vector<double> tdcTimes;
57 std::vector<double> driftDistances;
58 std::vector<bool> hitsInTime;
59 
60 std::vector<int> triggerDetectorIDs;
61 std::vector<int> triggerElementIDs;
62 std::vector<double> triggerTdcTimes;
63 std::vector<double> triggerDriftDistances;
64 std::vector<bool> triggerHitsInTime;
65 
66 };
67 
68 #endif /* _FUN4ALL_VECT_EVENT_OUTPUT_MANAGER__H_ */
69 
virtual int Write(PHCompositeNode *startNode)
write starting from given node
void SetTreeName(const std::string &name)
Fun4AllVectEventOutputManager(const std::string &myname="UNIVERSALOUT")
void SetFileName(const std::string &name)
int OpenFile(PHCompositeNode *startNode)
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