CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_4_1_8_patch13/src/RecoVZero/VZeroFinding/plugins/VZeroProducer.h

Go to the documentation of this file.
00001 #ifndef _VZeroProducer_h_
00002 #define _VZeroProducer_h_
00003 
00004 #include "FWCore/Framework/interface/EDProducer.h"
00005 #include "FWCore/Framework/interface/Event.h"
00006 #include "FWCore/Framework/interface/EventSetup.h"
00007 #include "FWCore/ParameterSet/interface/ParameterSet.h"
00008 
00009 class VZeroProducer :  public edm::EDProducer {
00010 
00011 public:
00012   explicit VZeroProducer(const edm::ParameterSet& pset);
00013 
00014   ~VZeroProducer();
00015 
00016   virtual void produce(edm::Event& ev, const edm::EventSetup& es);
00017 
00018 private:
00019 
00020   edm::ParameterSet pset_;
00021 
00022   float minImpactPositiveDaughter,
00023         minImpactNegativeDaughter;
00024 };
00025 #endif
00026