CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_3_0/src/RecoPixelVertexing/PixelLowPtUtilities/plugins/TrackListCombiner.h

Go to the documentation of this file.
00001 #ifndef TrackListCombiner_H
00002 #define TrackListCombiner_H
00003 
00004 #include "FWCore/Framework/interface/EDProducer.h"
00005 #include "FWCore/ParameterSet/interface/ParameterSet.h"
00006 
00007 #include <vector>
00008 
00009 namespace edm { class Event; class EventSetup; }
00010 
00011 class TrackListCombiner : public edm::EDProducer
00012 {
00013 public:
00014   explicit TrackListCombiner(const edm::ParameterSet& ps);
00015   ~TrackListCombiner();
00016   virtual void produce(edm::Event& ev, const edm::EventSetup& es);
00017 
00018 private:
00019   std::vector<std::string> trackProducers;
00020 };
00021 #endif
00022