Class Reference for E1039 Core & Analysis Software
CalibMergeH4.h
Go to the documentation of this file.
1 #ifndef __CALIB_MERGE_H4_H__
2 #define __CALIB_MERGE_H4_H__
3 #include <fun4all/SubsysReco.h>
4 class SQHitVector;
5 
6 class CalibMergeH4: public SubsysReco {
7  public:
8  CalibMergeH4(const std::string &name = "CalibMergeH4");
9  virtual ~CalibMergeH4();
10  int Init(PHCompositeNode *topNode);
11  int InitRun(PHCompositeNode *topNode);
12  int process_event(PHCompositeNode *topNode);
13  int End(PHCompositeNode *topNode);
14 
15  CalibMergeH4* SetAndMode (const bool mode=true) { m_and_mode = mode; return this; }
16  CalibMergeH4* SetRemoveMode(const bool mode=true) { m_remove_mode = mode; return this; }
17 
18  private:
19  bool m_and_mode;
20  bool m_remove_mode;
21 
22  short FindMergedId(const short id);
23  int MergeHits (SQHitVector* vec_in);
24  int MergeHitsOr (SQHitVector* vec_in);
25  int MergeHitsAnd(SQHitVector* vec_in);
26 };
27 
28 #endif /* __CALIB_MERGE_H4_H__ */
int Init(PHCompositeNode *topNode)
Definition: CalibMergeH4.cc:26
int process_event(PHCompositeNode *topNode)
Definition: CalibMergeH4.cc:36
virtual ~CalibMergeH4()
Definition: CalibMergeH4.cc:21
CalibMergeH4 * SetAndMode(const bool mode=true)
Definition: CalibMergeH4.h:15
CalibMergeH4 * SetRemoveMode(const bool mode=true)
Definition: CalibMergeH4.h:16
CalibMergeH4(const std::string &name="CalibMergeH4")
Definition: CalibMergeH4.cc:13
int End(PHCompositeNode *topNode)
Called at the end of all processing.
int InitRun(PHCompositeNode *topNode)
Definition: CalibMergeH4.cc:31
An SQ interface class to hold a list of SQHit objects.
Definition: SQHitVector.h:32