CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_3_0/src/RecoEgamma/EgammaHLTProducers/interface/EgammaHLTPhotonTrackIsolationProducersRegional.h

Go to the documentation of this file.
00001 // -*- C++ -*-
00002 //
00003 // Package:    EgammaHLTProducers
00004 // Class:      EgammaHLTPhotonTrackIsolationProducersRegional
00005 // 
00008 //
00009 // Original Author:  Monica Vazquez Acosta (CERN)
00010 //         Created:  Tue Jun 13 14:48:33 CEST 2006
00011 // $Id: EgammaHLTPhotonTrackIsolationProducersRegional.h,v 1.2 2009/01/20 11:32:38 covarell Exp $
00012 //
00013 //
00014 
00015 
00016 // system include files
00017 #include <memory>
00018 
00019 // user include files
00020 #include "FWCore/Framework/interface/Frameworkfwd.h"
00021 #include "FWCore/Framework/interface/EDProducer.h"
00022 
00023 #include "FWCore/Framework/interface/Event.h"
00024 #include "FWCore/Framework/interface/MakerMacros.h"
00025 
00026 #include "FWCore/ParameterSet/interface/ParameterSet.h"
00027 
00028 #include "RecoEgamma/EgammaHLTAlgos/interface/EgammaHLTTrackIsolation.h"
00029 
00030 //
00031 // class declaration
00032 //
00033 
00034 class EgammaHLTPhotonTrackIsolationProducersRegional : public edm::EDProducer {
00035    public:
00036       explicit EgammaHLTPhotonTrackIsolationProducersRegional(const edm::ParameterSet&);
00037       ~EgammaHLTPhotonTrackIsolationProducersRegional();
00038 
00039 
00040       virtual void produce(edm::Event&, const edm::EventSetup&);
00041    private:
00042       // ----------member data ---------------------------
00043 
00044   edm::InputTag recoEcalCandidateProducer_;
00045   edm::InputTag trackProducer_;
00046 
00047   edm::ParameterSet conf_;
00048 
00049   bool countTracks_;
00050 
00051   double egTrkIsoPtMin_; 
00052   double egTrkIsoConeSize_;
00053   double egTrkIsoZSpan_;   
00054   double egTrkIsoRSpan_;  
00055   double egTrkIsoVetoConeSize_;
00056 
00057   EgammaHLTTrackIsolation* test_;
00058 
00059 };
00060