Analysis Software
Documentation for sPHENIX simulation software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
PHPy6JetTrigger.h
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file PHPy6JetTrigger.h
1 #ifndef __PHPY6JETTRIGGER_H__
2 #define __PHPY6JETTRIGGER_H__
3 
4 #include "PHPy6GenTrigger.h"
5 #include <HepMC/GenEvent.h>
6 #include <string>
7 
8 namespace HepMC
9 {
10  class GenEvent;
11 };
12 
13 
15 
16  public:
17 
18  PHPy6JetTrigger(const std::string &name = "PHPy6JetTrigger");
19  virtual ~PHPy6JetTrigger();
20 
21  #ifndef __CINT__
22  bool Apply(const HepMC::GenEvent* evt);
23  #endif
24 
25  void SetEtaHighLow(double etaHigh, double etaLow);
26  void SetMinJetPt(double minPt);
27  void SetJetR(double R);
28 
29  void PrintConfig();
30 
31  private:
32 
33  double _theEtaHigh;
34  double _theEtaLow;
35  double _minPt;
36  double _R;
37 
38 };
39 
40 #endif