ECCE @ EIC 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 // finally system includes
11 #include <iostream> // for cout, ostream
12 
13 #include <g4jets/Jet.h>
14 #include <g4jets/JetInput.h>
15 
16 // forward declarations
17 class PHCompositeNode;
18 
20 {
21  public:
23  ~ParticleFlowJetInput() override {}
24 
25  std::vector<Jet*> get_input(PHCompositeNode* topNode) override;
26  void identify(std::ostream& os = std::cout) override;
27 
28  private:
30 
31 };
32 
33 #endif