Class Reference for E1039 Core & Analysis Software
Fun4AllRUSInputManager.h
Go to the documentation of this file.
1 #ifndef Fun4AllRUSInputManager_H_
2 #define Fun4AllRUSInputManager_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  Fun4AllRUSInputManager(const std::string &name = "DUMMY", const std::string &topnodename = "TOP");
21  virtual ~Fun4AllRUSInputManager();
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 protected:
40  int OpenNextFile();
41  void VectToE1039();
42  int segment;
43  int isopen;
46  std::string topNodeName;
49 
50  std::string _tree_name;
51  std::string _branch_name;
52 
53  TFile* _fin;
54  TTree* _tin;
55  int runID;
56  int spillID;
57  int eventID;
58  int turnID;
59  int rfID;
60  int rfIntensity[33] = {0};
61  int fpgaTrigger[5] = {0};
62  int nimTrigger[5] = {0};
63 
64  std::vector<int>* hitID = nullptr;
65  std::vector<int>* detectorID = nullptr;
66  std::vector<int>* elementID = nullptr;
67  std::vector<double>* driftDistance = nullptr;
68  std::vector<double>* tdcTime = nullptr;
69 
74 };
75 
76 #endif /* __Fun4AllRUSInputManager_H_ */
std::vector< int > * hitID
std::vector< int > * elementID
void set_branch_name(const std::string &branchName)
std::vector< int > * detectorID
int SyncIt(const SyncObject *mastersync)
std::vector< double > * driftDistance
const std::string & get_branch_name() const
int fileopen(const std::string &filename)
void set_tree_name(const std::string &treeName)
const std::string & get_tree_name() const
std::vector< double > * tdcTime
int run(const int nevents=0)
int GetSyncObject(SyncObject **mastersync)
void Print(const std::string &what="ALL") const
Fun4AllRUSInputManager(const std::string &name="DUMMY", const std::string &topnodename="TOP")
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