CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_4_4_5_patch3/src/RecoEgamma/ElectronIdentification/interface/ElectronNeuralNet.h

Go to the documentation of this file.
00001 #ifndef ElectronNeuralNet_H
00002 #define ElectronNeuralNet_H
00003 
00004 #include "FWCore/Framework/interface/Event.h"
00005 #include "FWCore/ParameterSet/interface/ParameterSet.h"
00006 #include "DataFormats/EgammaCandidates/interface/GsfElectron.h"
00007 #include "RecoEgamma/ElectronIdentification/interface/ElectronIDAlgo.h"
00008 
00009 class ElectronNeuralNet : public ElectronIDAlgo{
00010 
00011 public:
00012 
00013   ElectronNeuralNet(){};
00014 
00015   virtual ~ElectronNeuralNet(){};
00016 
00017   void setup(const edm::ParameterSet& conf){};
00018   double result(const reco::GsfElectron* electron, const edm::Event&);
00019 
00020  private:
00021 
00022 };
00023 
00024 #endif // ElectronNeuralNet_H