00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021 #ifndef STJ_FAST_JET_H
00022 #define STJ_FAST_JET_H
00023
00024 #include "StFastJetPars.h"
00025 #include "StJetFinder.h"
00026
00027 class StjFastJet : public StJetFinder {
00028 public:
00029 StjFastJet(const StFastJetPars& pars) : mPars(pars) {}
00030
00031 void Init() {}
00032
00033 void findJets(JetList& protoJetList, const FourVecList& particleList);
00034
00035 private:
00036 fastjet::JetDefinition jetDefinition() const;
00037 StFastJetPars mPars;
00038 };
00039
00040 #endif // STJ_FAST_JET_H