00001
00002
00003
00004 #ifndef STJFORMDIJET_H
00005 #define STJFORMDIJET_H
00006
00007 #include <StjDijetList.h>
00008 #include <StjJetList.h>
00009
00010 #include <TObject.h>
00011
00012 class StjFormDijet : public TObject {
00013
00014 public:
00015 StjFormDijet() { }
00016 virtual ~StjFormDijet() { }
00017
00018 StjDijetList operator()(StjJetList jetList);
00019
00020 private:
00021
00022 class pt_more {
00023 public:
00024 bool operator()(const StjJet& jet1, const StjJet& jet2) const
00025 {
00026 return jet1.pt > jet2.pt;
00027 }
00028 };
00029
00030
00031 ClassDef(StjFormDijet, 1)
00032
00033 };
00034
00035 #endif // STJFORMDIJET_H