CMS 3D CMS Logo

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

Go to the documentation of this file.
00001 #ifndef RecoParticleFlow_PFTracking_PFDisplacedVertexProducer_h_
00002 #define RecoParticleFlow_PFTracking_PFDisplacedVertexProducer_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/PFDisplacedVertexFinder.h"
00013 
00025 class PFDisplacedVertexProducer : public edm::EDProducer {
00026  public:
00027 
00028   explicit PFDisplacedVertexProducer(const edm::ParameterSet&);
00029 
00030   ~PFDisplacedVertexProducer();
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 
00042   edm::InputTag   inputTagVertexCandidates_;
00043 
00045   edm::InputTag   inputTagMainVertex_; 
00046   edm::InputTag   inputTagBeamSpot_;
00047   
00049   bool   verbose_;
00050 
00052   PFDisplacedVertexFinder            pfDisplacedVertexFinder_;
00053 
00054 };
00055 
00056 #endif