Class Reference for E1039 Core & Analysis Software
Fun4AllHitMatrixInputManager.h
Go to the documentation of this file.
1 #ifndef _FUN4ALL_HIT_MATRIX_INPUT_MANAGER__H_
2 #define _FUN4ALL_HIT_MATRIX_INPUT_MANAGER__H_
3 #include <string>
4 #include <map>
6 class PHCompositeNode;
7 class SyncObject;
8 class TFile;
9 class TTree;
10 class SQRun;
11 class SQEvent;
12 class SQHitVector;
13 
15 {
16 public:
17  Fun4AllHitMatrixInputManager(const std::string &name="DUMMY", const std::string &topnodename="TOP");
19  int fileopen(const std::string &filenam);
20  int fileclose();
21  int run(const int nevents=0);
22  int isOpen() {return isopen;}
23 
24  void Print(const std::string &what = "ALL") const;
25  int ResetEvent();
26  int PushBackEvents(const int i);
27  int GetSyncObject(SyncObject **mastersync);
28  int SyncIt(const SyncObject *mastersync);
29 
30  const std::string& GetTreeName() const { return _tree_name; }
31  void SetTreeName(const std::string& treeName) { _tree_name = treeName; }
32  const std::string& GetBranchName() const { return _branch_name; }
33  void SetBranchName(const std::string& branchName) { _branch_name = branchName; }
34 
35 protected:
36  int OpenNextFile();
37 
38  int segment;
39  int isopen;
42  std::string topNodeName;
45 
47  std::string _tree_name;
48  std::string _branch_name;
49  TFile* _fin;
50  TTree* _tin;
51  bool hit_matrix[30][201];
52 
57 };
58 
59 #endif // _FUN4ALL_HIT_MATRIX_INPUT_MANAGER__H_
void SetTreeName(const std::string &treeName)
void SetBranchName(const std::string &branchName)
int GetSyncObject(SyncObject **mastersync)
const std::string & GetTreeName() const
const std::string & GetBranchName() const
void Print(const std::string &what="ALL") const
int fileopen(const std::string &filenam)
Fun4AllHitMatrixInputManager(const std::string &name="DUMMY", const std::string &topnodename="TOP")
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