Class Reference for E1039 Core & Analysis Software
FilterE906Nim3.h
Go to the documentation of this file.
1 #ifndef _FILTER_E906_NIM3__H_
2 #define _FILTER_E906_NIM3__H_
3 #include <vector>
4 #include <fun4all/SubsysReco.h>
5 class SQEvent;
6 
8 
12 class FilterE906Nim3: public SubsysReco {
13  std::string m_list_name;
14  std::vector<int> m_list_spill_ok;
15  SQEvent* mi_evt;
16 
17  int m_n_evt_all;
18  int m_n_evt_spill;
19  int m_n_evt_nim3;
20 
21  public:
22  FilterE906Nim3(const std::string name="FilterE906Nim3");
23  virtual ~FilterE906Nim3() {;}
24  int Init(PHCompositeNode *topNode);
25  int InitRun(PHCompositeNode *topNode);
26  int process_event(PHCompositeNode *topNode);
27  int End(PHCompositeNode *topNode);
28 
29  void SetSpillListName(const std::string name) { m_list_name = name; }
30  std::string GetSpillListName() const { return m_list_name; }
31 };
32 
33 #endif // _FILTER_E906_NIM3__H_
A SubsysReco module to filter E906 NIM3 events.
std::string GetSpillListName() const
int Init(PHCompositeNode *topNode)
int End(PHCompositeNode *topNode)
Called at the end of all processing.
int process_event(PHCompositeNode *topNode)
int InitRun(PHCompositeNode *topNode)
virtual ~FilterE906Nim3()
FilterE906Nim3(const std::string name="FilterE906Nim3")
void SetSpillListName(const std::string name)
An SQ interface class to hold one event header.
Definition: SQEvent.h:17