CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_4_1_8_patch13/src/RecoParticleFlow/PFTracking/plugins/PFDisplacedVertexCandidateProducer.h

Go to the documentation of this file.
00001 #ifndef RecoParticleFlow_PFTracking_PFDisplacedVertexCandidateProducer_h_
00002 #define RecoParticleFlow_PFTracking_PFDisplacedVertexCandidateProducer_h_
00003 
00004 // user include files
00005 #include "FWCore/Framework/interface/Frameworkfwd.h"
00006 #include "FWCore/Framework/interface/EDProducer.h"
00007 #include "FWCore/ParameterSet/interface/ParameterSet.h"
00008 
00009 #include "FWCore/Framework/interface/Event.h"
00010 #include "FWCore/Framework/interface/MakerMacros.h"
00011 
00012 #include "RecoParticleFlow/PFTracking/interface/PFDisplacedVertexCandidateFinder.h"
00013 
00025 class PFDisplacedVertexCandidateProducer : public edm::EDProducer {
00026  public:
00027 
00028   explicit PFDisplacedVertexCandidateProducer(const edm::ParameterSet&);
00029 
00030   ~PFDisplacedVertexCandidateProducer();
00031   
00032   virtual void produce(edm::Event&, const edm::EventSetup&);
00033 
00034   virtual void beginJob();
00035 
00036   virtual void beginRun(edm::Run & r, const edm::EventSetup & c);
00037 
00038  private:
00039 
00041   edm::InputTag   inputTagTracks_;
00042  
00044   bool   verbose_;
00045 
00047   PFDisplacedVertexCandidateFinder            pfDisplacedVertexCandidateFinder_;
00048 
00049 };
00050 
00051 #endif