Analysis Software
Documentation for sPHENIX simulation software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
TrackJetInput.h
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file TrackJetInput.h
1 #ifndef JETBASE_TRACKJETINPUT_H
2 #define JETBASE_TRACKJETINPUT_H
3 
4 #include "JetInput.h"
5 #include "Jet.h"
6 
7 #include <iostream> // for cout, ostream
8 #include <string> // for string
9 #include <vector>
10 
11 class PHCompositeNode;
12 
13 class TrackJetInput : public JetInput
14 {
15  public:
16  TrackJetInput(Jet::SRC input, const std::string& name = "SvtxTrackMap");
17  ~TrackJetInput() override {}
18 
19  void identify(std::ostream& os = std::cout) override;
20 
21  Jet::SRC get_src() override { return _input; }
22 
23  std::vector<Jet*> get_input(PHCompositeNode* topNode) override;
24 
25  private:
28 };
29 
30 #endif