CMS 3D CMS Logo

/afs/cern.ch/work/a/aaltunda/public/www/CMSSW_6_2_5/src/RecoLocalMuon/CSCSegment/src/CSCSegmentProducer.h

Go to the documentation of this file.
00001 #ifndef CSCSegment_CSCSegmentProducer_h
00002 #define CSCSegment_CSCSegmentProducer_h
00003 
00012 #include "FWCore/Framework/interface/Frameworkfwd.h"
00013 #include "FWCore/Framework/interface/EDProducer.h"
00014 #include "FWCore/Framework/interface/Event.h"
00015 #include "FWCore/ParameterSet/interface/ParameterSet.h"
00016 #include "FWCore/Utilities/interface/InputTag.h"
00017 
00018 class CSCSegmentBuilder; 
00019 
00020 class CSCSegmentProducer : public edm::EDProducer {
00021 public:
00023     explicit CSCSegmentProducer(const edm::ParameterSet&);
00025     ~CSCSegmentProducer();
00027     virtual void produce(edm::Event&, const edm::EventSetup&);
00028 
00029 private:
00030     int iev; // events through
00031     edm::InputTag inputObjectsTag; // input tag labelling rechits for input
00032     CSCSegmentBuilder* segmentBuilder_;
00033 };
00034 
00035 #endif