ECCE @ EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
FastJetAlgoSub.h
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file FastJetAlgoSub.h
1 #ifndef JETBACKGROUND_FASTJETALGOSUB_H
2 #define JETBACKGROUND_FASTJETALGOSUB_H
3 
4 #include <g4jets/JetAlgo.h>
5 
6 #include <g4jets/Jet.h>
7 
8 #include <iostream>
9 #include <vector>
10 
11 class FastJetAlgoSub : public JetAlgo
12 {
13  public:
14  FastJetAlgoSub(Jet::ALGO algo, float par, float verbosity = 0);
15  ~FastJetAlgoSub() override {}
16 
17  void identify(std::ostream& os = std::cout) override;
18  Jet::ALGO get_algo() override { return _algo; }
19  float get_par() override { return _par; }
20 
21  std::vector<Jet*> get_jets(std::vector<Jet*> particles) override;
22 
23  private:
26  float _par;
27 };
28 
29 #endif