CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_3_1/src/RecoParticleFlow/PFTracking/plugins/PFV0Producer.h

Go to the documentation of this file.
00001 #ifndef PFV0Producer_H
00002 #define PFV0Producer_H
00003 
00004 #include "FWCore/Framework/interface/EDProducer.h"
00005 #include "FWCore/Framework/interface/Event.h"
00006 #include "FWCore/ParameterSet/interface/ParameterSet.h"
00007 #include "FWCore/Framework/interface/MakerMacros.h"
00008 #include "FWCore/Framework/interface/Frameworkfwd.h"
00009 
00010 
00011 class PFTrackTransformer;
00012 class PFV0Producer : public edm::EDProducer {
00013 public:
00014   
00016   explicit PFV0Producer(const edm::ParameterSet&);
00017   
00019   ~PFV0Producer();
00020   
00021 private:
00022   virtual void beginRun(edm::Run&,const edm::EventSetup&) ;
00023   virtual void endRun() ;
00024   
00026   virtual void produce(edm::Event&, const edm::EventSetup&);
00027 
00029   PFTrackTransformer *pfTransformer_; 
00030   std::vector < edm::InputTag > V0list_;
00031 
00032 };
00033 #endif