Class Reference for E1039 Core & Analysis Software
Fun4AllInputManager.h
Go to the documentation of this file.
1 #ifndef FUN4ALLINPUTMANAGER_H__
2 #define FUN4ALLINPUTMANAGER_H__
3 
4 #include "Fun4AllBase.h"
5 #include "Fun4AllReturnCodes.h"
6 
7 #include <list>
8 #include <string>
9 #include <vector>
10 
11 class PHCompositeNode;
12 class SubsysReco;
13 class SyncObject;
14 class Fun4AllSyncManager;
15 
17 {
18  public:
19  virtual ~Fun4AllInputManager();
20  virtual int fileopen(const std::string & /*filename*/) { return -1; }
21  virtual int fileclose() { return -1; }
22  virtual int isOpen() { return 0; }
23  virtual int run(const int /*nevents=0*/) { return -1; }
24  virtual int ReadInRunNode(PHCompositeNode * /*RunNode*/) { return -1; }
25  virtual std::string Filename() { return filename; }
26  virtual int GetSyncObject(SyncObject ** /*mastersync*/) { return 0; }
27  virtual int SyncIt(const SyncObject * /*mastersync*/) { return Fun4AllReturnCodes::SYNC_FAIL; }
28  virtual int BranchSelect(const std::string & /*branch*/, const int /*iflag*/) { return -1; }
29  virtual int setBranches() { return -1; }
30  virtual void Print(const std::string &what = "ALL") const;
31  virtual int PushBackEvents(const int /*nevt*/) { return -1; }
32  // so people can use the skip they are used to instead of PushBackEvents
33  // with negative arg
34  virtual int skip(const int nevt) { return PushBackEvents(-nevt); }
35  virtual int NoSyncPushBackEvents(const int /*nevt*/) { return -1; }
36  int AddFile(const std::string &filename);
37  int AddListFile(const std::string &filename, const int do_it = 0);
38  int registerSubsystem(SubsysReco *subsystem);
39  virtual int RejectEvent();
40  void Repeat(const int i = -1) { repeat = i; }
41  virtual void setSyncManager(Fun4AllSyncManager *master) { mySyncManager = master; }
42  int ResetFileList();
43  virtual int ResetEvent() { return 0; }
44  virtual void SetRunNumber(const int runno) { myrunnumber = runno; }
45  virtual int RunNumber() const { return myrunnumber; }
46  void AddToFileOpened(const std::string &filename) { filelist_opened.push_back(filename); }
47  const std::list<std::string> GetFileList() const { return filelist_copy; }
48  const std::list<std::string> GetFileOpenedList() const { return filelist_opened; }
49  protected:
50  Fun4AllInputManager(const std::string &name = "DUMMY", const std::string &nodename = "DST", const std::string &topnodename = "TOP");
51  std::vector<SubsysReco *> Subsystems;
52  std::string InputNode;
53  std::string filename;
54  std::string topNodeName;
55  std::list<std::string> filelist;
56  std::list<std::string> filelist_copy;
57  std::list<std::string> filelist_opened; // all files which were opened during running
59  int repeat;
61  int initrun;
62 };
63 
64 #endif /* __FUN4ALLINPUTMANAGER_H__ */
virtual int SyncIt(const SyncObject *)
void Repeat(const int i=-1)
virtual int run(const int)
virtual void Print(const std::string &what="ALL") const
virtual int GetSyncObject(SyncObject **)
Fun4AllSyncManager * mySyncManager
virtual std::string Filename()
std::list< std::string > filelist
virtual void setSyncManager(Fun4AllSyncManager *master)
virtual int BranchSelect(const std::string &, const int)
std::list< std::string > filelist_copy
Fun4AllInputManager(const std::string &name="DUMMY", const std::string &nodename="DST", const std::string &topnodename="TOP")
int AddFile(const std::string &filename)
const std::list< std::string > GetFileList() const
virtual int RunNumber() const
virtual int fileopen(const std::string &)
const std::list< std::string > GetFileOpenedList() const
void AddToFileOpened(const std::string &filename)
std::list< std::string > filelist_opened
virtual int PushBackEvents(const int)
virtual int skip(const int nevt)
int AddListFile(const std::string &filename, const int do_it=0)
int registerSubsystem(SubsysReco *subsystem)
virtual int NoSyncPushBackEvents(const int)
virtual int ReadInRunNode(PHCompositeNode *)
std::vector< SubsysReco * > Subsystems
virtual void SetRunNumber(const int runno)