CMS 3D CMS Logo

/data/doxygen/doxygen-1.7.3/gen/CMSSW_4_2_8/src/Validation/RecoJets/plugins/PhotonQualifier.h

Go to the documentation of this file.
00001 #ifndef PhotonQualifier_h
00002 #define PhotonQualifier_h
00003 
00004 #include <memory>
00005 #include <string>
00006 #include <vector>
00007 
00008 #include "FWCore/Utilities/interface/InputTag.h"
00009 #include "FWCore/ParameterSet/interface/ParameterSet.h"
00010 #include "DataFormats/EgammaCandidates/interface/Photon.h"
00011 #include "DataFormats/EgammaCandidates/interface/PhotonFwd.h"
00012 
00013 
00014 class PhotonQualifier {
00015   
00016  public:
00017   PhotonQualifier(const edm::ParameterSet&);
00018   ~PhotonQualifier(){};
00019   bool operator()(const reco::Photon&);
00020 
00021  private:
00022 
00023 };
00024 
00025 inline 
00026 PhotonQualifier::PhotonQualifier(const edm::ParameterSet& cfg)
00027 {
00028 }
00029 
00030 inline bool
00031 PhotonQualifier::operator()(const reco::Photon& phot)
00032 {
00033   return true;
00034 }
00035 
00036 #endif