Analysis Software
Documentation for sPHENIX simulation software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
JetProbeInput.h
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file JetProbeInput.h
1 #ifndef G4JET_JETPROBEINPUT__H
2 #define G4JET_JETPROBEINPUT__H
3 
4 #include "JetInput.h"
5 #include "Jet.h"
6 
7 #include <iostream> // for cout, ostream
8 #include <vector>
9 
10 #include <iostream>
11 
12 class PHCompositeNode;
13 
14 class JetProbeInput : public JetInput
15 {
16  public:
18  ~JetProbeInput() override {}
19 
22  void identify(std::ostream& os = std::cout) override;
23 
24  Jet::SRC get_src() override { return Jet::SRC::JET_PROBE; }
25 
26  std::vector<Jet*> get_input(PHCompositeNode* topNode) override;
27 
28  // filled upon initialization if instantiated with topNode
29  float phi { -100. };
30  float eta { -100. };
31  float pt { -100. };
32 
33 };
34 
35 #endif