00001 #ifndef JET_FINDER_H_ 00002 #define JET_FINDER_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 public: 00020 JetFinder(); 00021 virtual ~JetFinder(); 00022 00023 virtual int Init(double tr_max_eta, double tr_min_pt); 00024 00025 private: 00026 00027 }; 00028 00029 #endif // JET_FINDER_H_ 00030