00001 #ifndef JetAlgorithms_ExtKtJetAlgorithmWrapper_h 00002 #define JetAlgorithms_ExtKtJetAlgorithmWrapper_h 00003 00022 #include "RecoJets/JetAlgorithms/interface/JetRecoTypes.h" 00023 #include "FWCore/ParameterSet/interface/ParameterSetfwd.h" 00024 00025 class ExtKtJetAlgorithmWrapper 00026 { 00027 public: 00028 ExtKtJetAlgorithmWrapper(); 00029 ExtKtJetAlgorithmWrapper(const edm::ParameterSet& ps); 00030 ~ExtKtJetAlgorithmWrapper(){}; 00031 void run (const JetReco::InputCollection& fInput, JetReco::OutputCollection* fOutput) const; 00032 private: 00033 int theMode; 00034 double thePtMin; 00035 double theDcut; 00036 int theNjets; 00037 int theAngle; 00038 int theRecom; 00039 double theRparam; 00040 // theColType: 4 is pp 00041 int theColType; 00042 }; 00043 00044 #endif