EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
PHSartreGenTrigger.h
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file PHSartreGenTrigger.h
1 #ifndef PHSARTRE_PHSARTREGENTRIGGER_H
2 #define PHSARTRE_PHSARTREGENTRIGGER_H
3 
4 #include <iostream>
5 #include <string>
6 #include <vector>
7 
8 class Event;
9 
11 {
12  protected:
14  PHSartreGenTrigger(const std::string &name = "PHSartreGenTrigger");
15 
16  public:
17  virtual ~PHSartreGenTrigger();
18 
19  virtual bool Apply(Event */*event*/)
20  {
21  std::cout << "PHSartreGenTrigger::Apply - in virtual function" << std::endl;
22  return false;
23  }
24 
25  virtual std::string GetName() { return m_Name; }
26 
27  std::vector<int> convertToInts(std::string s);
28  int Verbosity() const { return m_Verbosity; }
29  void Verbosity(int v) { m_Verbosity = v; }
30 
31  protected:
32  private:
34  std::string m_Name;
35 };
36 
37 #endif