00001 #ifndef JetFinder_H 00002 #define JetFinder_H 00003 00004 /** 00005 00006 @class JetFinder.h 00007 @brief This class is used for finding jets in hepmc based validation 00008 00009 Init() is used to initialise some values 00010 00011 @author Sebastian Johnert, March 2009 00012 00013 */ 00014 00015 #include "baseAnalysis.h" 00016 00017 class JetFinder: public baseAnalysis 00018 { 00019 00020 public: 00021 00022 JetFinder(); 00023 virtual ~JetFinder(); 00024 00025 virtual int Init(double tr_max_eta, double tr_min_pt); 00026 00027 private: 00028 00029 }; 00030 00031 #endif