Class Reference for E1039 Core & Analysis Software
Fun4AllSRawEventInputManager.h
Go to the documentation of this file.
1 #ifndef Fun4AllSRawEventInputManager_H_
2 #define Fun4AllSRawEventInputManager_H_
3 
5 
6 #include <string>
7 #include <map>
8 
9 class PHCompositeNode;
10 class SyncObject;
11 
12 class TFile;
13 class TTree;
14 class SRawEvent;
15 
16 class SQRun;
17 class SQSpillMap;
18 class SQEvent;
19 class SQHitVector;
20 
22 {
23 public:
24  Fun4AllSRawEventInputManager(const std::string &name = "DUMMY", const std::string &topnodename = "TOP");
26  int fileopen(const std::string &filenam);
27  int fileclose();
28  int run(const int nevents = 0);
29  int isOpen() {return isopen;}
30 
31  void Print(const std::string &what = "ALL") const;
32  int ResetEvent();
33  int PushBackEvents(const int i);
34  int GetSyncObject(SyncObject **mastersync);
35  int SyncIt(const SyncObject *mastersync);
36 
38 
39  const std::string& get_branch_name() const {
40  return _branch_name;
41  }
42 
43  void set_branch_name(const std::string& branchName) {
44  _branch_name = branchName;
45  }
46 
47  const std::string& get_tree_name() const {
48  return _tree_name;
49  }
50 
51  void set_tree_name(const std::string& treeName) {
52  _tree_name = treeName;
53  }
54 
55 protected:
56  int OpenNextFile();
57  void E906ToE1039();
58 
59  int segment;
60  int isopen;
63  std::string topNodeName;
66 
67  std::string _tree_name;
68  std::string _branch_name;
69 
70  TFile* _fin;
71  TTree* _tin;
73 
74  //optionally translate the data to E1039 convention
81 };
82 
83 #endif /* __Fun4AllSRawEventInputManager_H_ */
void Print(const std::string &what="ALL") const
void set_tree_name(const std::string &treeName)
const std::string & get_branch_name() const
Fun4AllSRawEventInputManager(const std::string &name="DUMMY", const std::string &topnodename="TOP")
int GetSyncObject(SyncObject **mastersync)
void set_branch_name(const std::string &branchName)
bool _enable_e1039_translation
sraw event pointer on the DST node as well as the TTree, is this gonna be faster?
int fileopen(const std::string &filenam)
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