Class Reference for E1039 Core & Analysis Software
PHPy8GenTrigger.h
Go to the documentation of this file.
1 #ifndef __PHPY8GENTRIGGER_H__
2 #define __PHPY8GENTRIGGER_H__
3 
4 #include <iostream>
5 #include <string>
6 #include <sstream>
7 #include <vector>
8 
9 namespace Pythia8 {
10  class Pythia;
11 };
12 
14 
15  protected:
17  PHPy8GenTrigger(const std::string &name = "PHPy8GenTrigger");
18 
19  public:
20  virtual ~PHPy8GenTrigger();
21 
22  #ifndef __CINT__
23  virtual bool Apply(Pythia8::Pythia *pythia) {
24  std::cout << "PHPy8GenTrigger::Apply - in virtual function" << std::endl;
25  return false;
26  }
27  #endif
28 
29  virtual std::string GetName() { return _name; }
30 
31  std::vector<int> convertToInts(std::string s);
32 
33  void Verbosity(int v) { _verbosity = v; }
34 
35 protected:
36  int _verbosity;
37 
38 private:
39  std::string _name;
40 };
41 
42 #endif
43 
void Verbosity(int v)
virtual std::string GetName()
virtual ~PHPy8GenTrigger()
PHPy8GenTrigger(const std::string &name="PHPy8GenTrigger")
constructor
std::vector< int > convertToInts(std::string s)
virtual bool Apply(Pythia8::Pythia *pythia)