CMS 3D CMS Logo

/afs/cern.ch/work/a/aaltunda/public/www/CMSSW_5_3_13_patch3/src/L1Trigger/DTTrackFinder/plugins/DTTrackFinder.h

Go to the documentation of this file.
00001 //-------------------------------------------------
00002 //
00013 //
00014 //--------------------------------------------------
00015 #ifndef DTTrackFinder_h
00016 #define DTTrackFinder_h
00017 
00018 #include <FWCore/Framework/interface/EDProducer.h>
00019 #include <FWCore/ParameterSet/interface/ParameterSet.h>
00020 
00021 #include <string>
00022 
00023 class L1MuDTTFSetup;
00024 
00025 
00026 class DTTrackFinder: public edm::EDProducer {
00027  public:
00029   DTTrackFinder(const edm::ParameterSet & pset);
00030   
00032   virtual ~DTTrackFinder();
00033   
00035   void produce(edm::Event & e, const edm::EventSetup& c);
00036   
00037  private:
00038 
00039   L1MuDTTFSetup* setup1;
00040 
00041 };
00042 
00043 #endif