Analysis Software
Documentation for sPHENIX simulation software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
ClusterJetInput.h
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file ClusterJetInput.h
1 #ifndef JETBASE_CLUSTERJETINPUT_H
2 #define JETBASE_CLUSTERJETINPUT_H
3 
4 // first my own include
5 #include "JetInput.h"
6 
7 // then other local incudes
8 #include "Jet.h"
9 
10 // finally system includes
11 #include <iostream> // for cout, ostream
12 #include <vector>
13 
14 // forward declarations
15 class PHCompositeNode;
16 
17 class ClusterJetInput : public JetInput
18 {
19  public:
21  ~ClusterJetInput() override {}
22 
23  void identify(std::ostream& os = std::cout) override;
24 
25  Jet::SRC get_src() override { return m_Input; }
26 
27  std::vector<Jet*> get_input(PHCompositeNode* topNode) override;
28 
29  private:
30  int m_Verbosity = 0;
32 };
33 
34 #endif