File indexing completed on 2025-02-05 23:51:42
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/ParameterSet/interface/ParameterSetDescription.h"
0011 #include "FWCore/Framework/interface/ESHandle.h"
0012 #include "DataFormats/EcalRecHit/interface/EcalRecHitCollections.h"
0013 #include "DataFormats/EgammaReco/interface/BasicClusterFwd.h"
0014 #include "DataFormats/EgammaCandidates/interface/GsfElectron.h"
0015
0016 class ElectronIDAlgo {
0017 public:
0018 ElectronIDAlgo() {}
0019
0020 virtual ~ElectronIDAlgo() {}
0021
0022
0023 virtual void setup(const edm::ParameterSet& conf) {}
0024 virtual double result(const reco::GsfElectron*, const edm::Event&, const edm::EventSetup&) { return 0.; };
0025
0026 protected:
0027 edm::InputTag reducedBarrelRecHitCollection_;
0028 edm::InputTag reducedEndcapRecHitCollection_;
0029 };
0030
0031 #endif