Class Reference for E1039 Core & Analysis Software
Fun4AllNoSyncDstInputManager.h
Go to the documentation of this file.
1 #ifndef __FUN4ALLNOSYNCDSTINPUTMANAGER_H__
2 #define __FUN4ALLNOSYNCDSTINPUTMANAGER_H__
3 
5 #include "Fun4AllReturnCodes.h"
6 
7 class PHCompositeNode;
8 class PHNodeIOManager;
9 class SyncObject;
10 
12 {
13  public:
14 
15  Fun4AllNoSyncDstInputManager(const std::string &name = "DUMMY", const std::string &nodename = "DST", const std::string &topnodename = "TOP");
16 
18 
19  // Effectivly turn off the synchronization checking
20  //
21  int SyncIt(const SyncObject* /*mastersync*/) {return Fun4AllReturnCodes::SYNC_OK;}
23  int NoSyncPushBackEvents(const int nevt) {return PushBackEvents(nevt);}
24  // no sync object we don't need to enable the sync variables
25  int setSyncBranches(PHNodeIOManager* /*IManager*/) {return 0;}
26 
27  // turn off reading of the runwise TTree to make run mixing for embedding possible
28  int NoRunTTree();
29 
30 };
31 
32 #endif /* __FUN4ALLNOSYNCDSTINPUTMANAGER_H__ */
Fun4AllNoSyncDstInputManager(const std::string &name="DUMMY", const std::string &nodename="DST", const std::string &topnodename="TOP")