00001 /* \class EtMinPhotonSelector 00002 * 00003 * selects photon above a minumum Et cut 00004 * 00005 * \author: Luca Lista, INFN 00006 * 00007 */ 00008 #include "FWCore/Framework/interface/MakerMacros.h" 00009 #include "PhysicsTools/UtilAlgos/interface/EtMinSelector.h" 00010 #include "PhysicsTools/UtilAlgos/interface/SingleObjectSelector.h" 00011 #include "DataFormats/EgammaCandidates/interface/Photon.h" 00012 #include "DataFormats/EgammaCandidates/interface/PhotonFwd.h" 00013 00014 typedef SingleObjectSelector< 00015 reco::PhotonCollection, 00016 EtMinSelector 00017 > EtMinPhotonSelector; 00018 00019 DEFINE_FWK_MODULE( EtMinPhotonSelector );