Class Reference for E1039 Core & Analysis Software
Fun4AllVectEventInputManager.h
Go to the documentation of this file.
1 #ifndef Fun4AllVectEventInputManager_H_
2 #define Fun4AllVectEventInputManager_H_
4 #include <string>
5 #include <vector>
6 #include <map>
7 
8 class PHCompositeNode;
9 class SyncObject;
10 
11 class TFile;
12 class TTree;
13 class SQRun;
14 class SQSpillMap;
15 class SQEvent;
16 class SQHitVector;
17 
19 public:
20  Fun4AllVectEventInputManager(const std::string &name = "DUMMY", const std::string &topnodename = "TOP");
22 
23  int fileopen(const std::string &filename);
24  int fileclose();
25  int run(const int nevents = 0);
26  int isOpen() { return isopen; }
27 
28  void Print(const std::string &what = "ALL") const;
29  int ResetEvent();
30  int PushBackEvents(const int i);
31  int GetSyncObject(SyncObject **mastersync);
32  int SyncIt(const SyncObject *mastersync);
33 
34  const std::string& get_branch_name() const { return _branch_name; }
35  void set_branch_name(const std::string& branchName) { _branch_name = branchName; }
36 
37  const std::string& get_tree_name() const { return _tree_name; }
38  void set_tree_name(const std::string& treeName) { _tree_name = treeName; }
39 
40 protected:
41  int OpenNextFile();
42  void VectToE1039();
43  int segment;
44  int isopen;
47  std::string topNodeName;
50 
51  std::string _tree_name;
52  std::string _branch_name;
53 
54  TFile* _fin;
55  TTree* _tin;
56 int eventID;
57 int spillID;
58 int runID;
59 
60 std::vector<int>* detectorIDs = nullptr;
61 std::vector<int>* elementIDs = nullptr;
62 std::vector<double>* driftDistances = nullptr;
63 std::vector<double>* tdcTimes = nullptr;
64 std::vector<bool>* hitsInTime = nullptr;
65 
66 std::vector<int>* triggerDetectorIDs = nullptr;
67 std::vector<int>* triggerElementIDs = nullptr;
68 std::vector<double>* triggerTdcTimes = nullptr;
69 std::vector<int>* triggerDriftDistances = nullptr;
70 std::vector<bool>* triggerHitsInTime = nullptr;
71 
72 int fpgaTriggers[5] = {0};
73 int nimTriggers[5] = {0};
74 int rfIntensities[33] = {0};
75 
76 
82 };
83 
84 #endif /* __Fun4AllVectEventInputManager_H_ */
int fileopen(const std::string &filename)
void Print(const std::string &what="ALL") const
Fun4AllVectEventInputManager(const std::string &name="DUMMY", const std::string &topnodename="TOP")
int GetSyncObject(SyncObject **mastersync)
const std::string & get_branch_name() const
void set_branch_name(const std::string &branchName)
void set_tree_name(const std::string &treeName)
const std::string & get_tree_name() const
int SyncIt(const SyncObject *mastersync)
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