CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_2_7_hltpatch2/src/L1Trigger/DTTrackFinder/interface/L1MuDTTFSetup.h

Go to the documentation of this file.
00001 //-------------------------------------------------
00002 //
00013 //
00014 //--------------------------------------------------
00015 #ifndef L1MUDT_TF_SETUP_H 
00016 #define L1MUDT_TF_SETUP_H
00017 
00018 //---------------
00019 // C++ Headers --
00020 //---------------
00021 
00022 //----------------------
00023 // Base Class Headers --
00024 //----------------------
00025 
00026 
00027 //------------------------------------
00028 // Collaborating Class Declarations --
00029 //------------------------------------
00030 
00031 #include <FWCore/ParameterSet/interface/ParameterSet.h>
00032 class L1MuDTTrackFinder;
00033 
00034 //              ---------------------
00035 //              -- Class Interface --
00036 //              ---------------------
00037  
00038 class L1MuDTTFSetup {
00039 
00040   public:
00041 
00043     L1MuDTTFSetup(const edm::ParameterSet & ps);
00044 
00046     virtual ~L1MuDTTFSetup();
00047 
00049 
00051     L1MuDTTrackFinder* TrackFinder() { return m_tf; }
00052 
00053   private:
00054 
00055     L1MuDTTrackFinder* m_tf;
00056 
00057 };
00058 
00059 #endif