CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_3_8_patch3/src/RecoParticleFlow/PFClusterProducer/plugins/PFClusterProducer.h

Go to the documentation of this file.
00001 #ifndef RecoParticleFlow_PFClusterProducer_PFClusterProducer_h_
00002 #define RecoParticleFlow_PFClusterProducer_PFClusterProducer_h_
00003 
00004 // system include files
00005 #include <memory>
00006 #include <vector>
00007 
00008 // user include files
00009 #include "FWCore/Framework/interface/Frameworkfwd.h"
00010 #include "FWCore/Framework/interface/EDProducer.h"
00011 
00012 #include "FWCore/Framework/interface/Event.h"
00013 #include "FWCore/Framework/interface/MakerMacros.h"
00014 
00015 #include "FWCore/ParameterSet/interface/ParameterSet.h"
00016 
00017 #include "DataFormats/ParticleFlowReco/interface/PFRecHitFwd.h"
00018 #include "DataFormats/ParticleFlowReco/interface/PFClusterFwd.h"
00019 
00020 #include "RecoParticleFlow/PFClusterProducer/interface/PFClusterAlgo.h"
00021 
00032 class CaloSubdetectorTopology;
00033 class CaloSubdetectorGeometry;
00034 class DetId;
00035 
00036 namespace reco {
00037   class PFRecHit;
00038 }
00039 
00040 
00041 class PFClusterProducer : public edm::EDProducer {
00042  public:
00043   explicit PFClusterProducer(const edm::ParameterSet&);
00044   ~PFClusterProducer();
00045 
00046   
00047   virtual void produce(edm::Event&, const edm::EventSetup&);
00048   
00049 
00050  private:
00051 
00052   // ----------member data ---------------------------
00053 
00055   PFClusterAlgo    clusterAlgo_;
00056 
00057 
00059   bool   verbose_;
00060   
00061   // ----------access to event data
00062   edm::InputTag    inputTagPFRecHits_;
00063   //---ab
00064   //std::string    inputTagClusterCollectionName_;
00065   //---ab
00066 };
00067 
00068 #endif