00001 #ifndef JetAlgorithms_ProtoJetComparisons_h 00002 #define JetAlgorithms_ProtoJetComparisons_h 00003 #include "RecoParticleFlow/PFRootEvent/interface/ProtoJet.h" 00004 00005 class ProtoJetPtGreater 00006 { 00007 public: 00008 int operator()(const ProtoJet& pj1, const ProtoJet& pj2) const 00009 { 00010 return pj1.pt() > pj2.pt(); 00011 } 00012 }; 00013 00014 #endif 00015