Class Reference for E1039 Core & Analysis Software
Fun4AllEVIOInputManager.h
Go to the documentation of this file.
1 #ifndef Fun4AllEVIOInputManager_H_
2 #define Fun4AllEVIOInputManager_H_
3 
5 
6 #include <string>
7 #include <map>
8 
9 class PHCompositeNode;
10 class PHTimer2;
11 class SyncObject;
12 class MainDaqParser;
13 
15 {
16  static const std::vector<std::string> LIST_TIMERS;
17 
18  public:
19  Fun4AllEVIOInputManager(const std::string &name = "DUMMY", const std::string &topnodename = "TOP");
20  virtual ~Fun4AllEVIOInputManager();
21  int fileopen(const std::string &filenam);
22  int fileclose();
23  int run(const int nevents = 0);
24  int isOpen() {return isopen;}
25 
26  void Print(const std::string &what = "ALL") const;
27  int ResetEvent();
28  int PushBackEvents(const int i);
29  int GetSyncObject(SyncObject **mastersync);
30  int SyncIt(const SyncObject *mastersync);
31 
32  void SetOnline(const bool is_online);
33  void EventSamplingFactor(const int factor);
34  void DirParam(const std::string dir);
35  void PretendSpillInterval(const int sec);
36 
37  void UseLocalSpillID(const bool use);
38  bool UseLocalSpillID() const;
39  void ForceLocalSpillID(const bool force);
40  bool ForceLocalSpillID() const;
41 
42  protected:
43  int OpenNextFile();
44  int segment;
45  int isopen;
48  std::string topNodeName;
52  std::map<std::string, PHTimer2*> m_timers; // [timer name]
53 };
54 
55 #endif /* __Fun4AllEVIOInputManager_H_ */
std::map< std::string, PHTimer2 * > m_timers
void SetOnline(const bool is_online)
int fileopen(const std::string &filenam)
void Print(const std::string &what="ALL") const
int GetSyncObject(SyncObject **mastersync)
void PretendSpillInterval(const int sec)
void DirParam(const std::string dir)
void EventSamplingFactor(const int factor)
Fun4AllEVIOInputManager(const std::string &name="DUMMY", const std::string &topnodename="TOP")
int run(const int nevents=0)
int SyncIt(const SyncObject *mastersync)
Class to measure the time spent by a code block.
Definition: PHTimer2.h:17