File indexing completed on 2024-09-07 04:37:30
0001 #ifndef ElectronIDAlgo_H
0002 #define ElectronIDAlgo_H
0003
0004 #include <memory>
0005
0006 #include "FWCore/Framework/interface/Frameworkfwd.h"
0007 #include "FWCore/Framework/interface/Event.h"
0008 #include "FWCore/Framework/interface/MakerMacros.h"
0009 #include "FWCore/ParameterSet/interface/ParameterSet.h"
0010 #include "FWCore/Framework/interface/ESHandle.h"
0011 #include "DataFormats/EcalRecHit/interface/EcalRecHitCollections.h"
0012 #include "DataFormats/EgammaReco/interface/BasicClusterFwd.h"
0013 #include "DataFormats/EgammaCandidates/interface/GsfElectron.h"
0014
0015 class ElectronIDAlgo {
0016 public:
0017 ElectronIDAlgo() {}
0018
0019 virtual ~ElectronIDAlgo() {}
0020
0021
0022 virtual void setup(const edm::ParameterSet& conf) {}
0023 virtual double result(const reco::GsfElectron*, const edm::Event&, const edm::EventSetup&) { return 0.; };
0024
0025 protected:
0026 edm::InputTag reducedBarrelRecHitCollection_;
0027 edm::InputTag reducedEndcapRecHitCollection_;
0028 };
0029
0030 #endif