Class Reference for E1039 Core & Analysis Software
PHG4InputFilter.h
Go to the documentation of this file.
1 #ifndef PHG4INPUTFILTER_H__
2 #define PHG4INPUTFILTER_H__
3 
4 #include <fun4all/SubsysReco.h>
5 
6 #include <string>
7 
8 class PHCompositeNode;
9 
11 {
12  public:
13  PHG4InputFilter(const std::string &name = "G4INPUTFILTER");
14  virtual ~PHG4InputFilter() {}
15 
16  int process_event(PHCompositeNode *topNode);
17 
18  void set_eta_range(const double min, const double max) {etamin = min; etamax = max;}
19  void set_etamin(const double min) {etamin = min;}
20  void set_etamax(const double max) {etamax = max;}
21  void set_ptmin(const double min) {ptmin = min;}
22  void set_ptmax(const double max) {ptmax = max;}
23 
24  protected:
25  double get_eta(const double x, const double y, const double z);
26  double etamin;
27  double etamax;
28  double ptmin;
29  double ptmax;
30 
31 };
32 
33 #endif
34 
virtual ~PHG4InputFilter()
void set_ptmax(const double max)
void set_etamax(const double max)
int process_event(PHCompositeNode *topNode)
PHG4InputFilter(const std::string &name="G4INPUTFILTER")
void set_ptmin(const double min)
double get_eta(const double x, const double y, const double z)
void set_eta_range(const double min, const double max)
void set_etamin(const double min)