CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_3_4/src/RecoParticleFlow/PFRootEvent/interface/ProtoJetComparisons.h

Go to the documentation of this file.
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