ECCE @ EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
JetInput.h
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file JetInput.h
1 #ifndef G4JET_JETINPUT_H
2 #define G4JET_JETINPUT_H
3 
4 #include "Jet.h"
5 
6 #include <iostream>
7 #include <vector>
8 
9 class PHCompositeNode;
10 
11 class JetInput
12 {
13  public:
14  virtual ~JetInput() {}
15 
16  virtual void identify(std::ostream& os = std::cout)
17  {
18  os << "JetInput base class" << std::endl;
19  }
20 
21  virtual Jet::SRC get_src() { return Jet::VOID; }
22 
23  virtual std::vector<Jet*> get_input(PHCompositeNode* /*topNode*/)
24  {
25  return std::vector<Jet*>();
26  }
27  virtual int Verbosity() const {return m_Verbosity;}
28  virtual void Verbosity(int i) {m_Verbosity = i;}
29 
30  protected:
32 
33  private:
35 };
36 
37 #endif