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