Class Reference for E1039 Core & Analysis Software
PHPy8JetTrigger.h
Go to the documentation of this file.
1 #ifndef __PHPY8JETTRIGGER_H__
2 #define __PHPY8JETTRIGGER_H__
3 
4 #include "PHPy8GenTrigger.h"
5 #include <string>
6 
7 namespace Pythia8 {
8  class Pythia;
9 };
10 
12 
13  public:
14 
15  PHPy8JetTrigger(const std::string &name = "PHPy8JetTrigger");
16  virtual ~PHPy8JetTrigger();
17 
18  #ifndef __CINT__
19  bool Apply(Pythia8::Pythia *pythia);
20  #endif
21 
22  void SetEtaHighLow(double etaHigh, double etaLow);
23  void SetMinJetPt(double minPt);
24  void SetJetR(double R);
25  void SetMinLeadingZ(double minZ);
26 
27  void PrintConfig();
28 
29  private:
30 
31  double _theEtaHigh;
32  double _theEtaLow;
33  double _minPt;
34  double _minZ;
35  double _R;
36 
37 };
38 
39 #endif
void SetMinJetPt(double minPt)
void SetMinLeadingZ(double minZ)
void SetJetR(double R)
PHPy8JetTrigger(const std::string &name="PHPy8JetTrigger")
void SetEtaHighLow(double etaHigh, double etaLow)
bool Apply(Pythia8::Pythia *pythia)
virtual ~PHPy8JetTrigger()