Class Reference for E1039 Core & Analysis Software
Fun4AllSyncManager.h
Go to the documentation of this file.
1 // This Master manages the reading of the Input.
2 // In principle all of this could be done in the Fun4AllServer
3 // but this is simpler to develop and test while Fun4All is allready in use.
4 
5 #ifndef FUN4ALLSYNCMANAGER_H__
6 #define FUN4ALLSYNCMANAGER_H__
7 
8 #include "Fun4AllBase.h"
9 
10 #include <set>
11 #include <vector>
12 
14 class SyncObject;
15 
17 {
18  public:
19  Fun4AllSyncManager(const std::string &name="SYNCMANAGERNONAME");
20  virtual ~Fun4AllSyncManager();
22  Fun4AllInputManager *getInputManager(const std::string &name);
23 
25  int run(const int nevnts = 0);
26 
31  int skip(const int nevnts = 0);
32 
33  int fileopen(const std::string &managername = "NONE", const std::string &filename = "NONE");
34  int fileclose(const std::string &managername = "NONE");
35  int CurrentRun() {return currentrun;}
36  void CurrentRun(const int ival) {currentrun = ival;}
37  void CurrentEvent(const int evt);
38  void Print(const std::string &what = "ALL") const;
39  void SegmentNumber(const int iseg) {prdf_segment = iseg;}
40  int SegmentNumber() const {return prdf_segment;}
41  int BranchSelect(const std::string &managername, const std::string &branch, int iflag);
42  int BranchSelect(const std::string &branch, const int iflag);
43  int setBranches(const std::string &managername);
44  int setBranches();
45  void TotalEvents(const int i) {events_total = i;}
46  int TotalEvents() const {return events_total;}
47  void PrdfEvents(const int i) {prdf_events = i;}
48  int PrdfEvents() const {return prdf_events;}
49  void GetInputFullFileList(std::vector<std::string> &fnames) const;
50  void Repeat(const int i=-1) {repeat = i;}
51  void PushBackInputMgrsEvents(const int i);
52  int ResetEvent();
53  const std::vector<Fun4AllInputManager *> GetInputManagers() const {return InManager;}
54 
55  private:
56  int CheckSync(unsigned i);
57  int prdf_segment;
58  int prdf_events;
59  int events_total;
60  int currentrun;
61  int currentevent;
62  int repeat;
63  SyncObject *MasterSync;
64  std::vector<Fun4AllInputManager *> InManager;
65  std::vector<int> iretInManager;
66 };
67 
68 #endif /* FUN4ALLSYNCMANAGER_H__ */
void TotalEvents(const int i)
int registerInputManager(Fun4AllInputManager *InManager)
Fun4AllSyncManager(const std::string &name="SYNCMANAGERNONAME")
void Repeat(const int i=-1)
void CurrentEvent(const int evt)
void SegmentNumber(const int iseg)
int skip(const int nevnts=0)
skip n events (0 means up to the end of file). Skip means read, don't process.
void PrdfEvents(const int i)
Fun4AllInputManager * getInputManager(const std::string &name)
void CurrentRun(const int ival)
void Print(const std::string &what="ALL") const
void PushBackInputMgrsEvents(const int i)
int run(const int nevnts=0)
run n events (0 means up to end of file
void GetInputFullFileList(std::vector< std::string > &fnames) const
const std::vector< Fun4AllInputManager * > GetInputManagers() const
int fileopen(const std::string &managername="NONE", const std::string &filename="NONE")
int fileclose(const std::string &managername="NONE")
int BranchSelect(const std::string &managername, const std::string &branch, int iflag)