CMS 3D CMS Logo

CMSSW_4_4_3_patch1/src/L1TriggerConfig/DTTrackFinder/interface/DTTrackFinderConfig.h

Go to the documentation of this file.
00001 //-------------------------------------------------
00002 //
00013 //
00014 //--------------------------------------------------
00015 #ifndef DTTrackFinderConfig_h
00016 #define DTTrackFinderConfig_h
00017 
00018 #include "FWCore/Framework/interface/ModuleFactory.h"
00019 #include "FWCore/Framework/interface/ESProducer.h"
00020 
00021 #include "FWCore/Framework/interface/ESHandle.h"
00022 
00023 #include "CondFormats/L1TObjects/interface/L1MuDTExtLut.h"
00024 #include "CondFormats/DataRecord/interface/L1MuDTExtLutRcd.h"
00025 #include "CondFormats/L1TObjects/interface/L1MuDTPhiLut.h"
00026 #include "CondFormats/DataRecord/interface/L1MuDTPhiLutRcd.h"
00027 #include "CondFormats/L1TObjects/interface/L1MuDTPtaLut.h"
00028 #include "CondFormats/DataRecord/interface/L1MuDTPtaLutRcd.h"
00029 #include "CondFormats/L1TObjects/interface/L1MuDTEtaPatternLut.h"
00030 #include "CondFormats/DataRecord/interface/L1MuDTEtaPatternLutRcd.h"
00031 #include "CondFormats/L1TObjects/interface/L1MuDTQualPatternLut.h"
00032 #include "CondFormats/DataRecord/interface/L1MuDTQualPatternLutRcd.h"
00033 #include "CondFormats/L1TObjects/interface/L1MuDTTFParameters.h"
00034 #include "CondFormats/DataRecord/interface/L1MuDTTFParametersRcd.h"
00035 #include "CondFormats/L1TObjects/interface/L1MuDTTFMasks.h"
00036 #include "CondFormats/DataRecord/interface/L1MuDTTFMasksRcd.h"
00037 
00038 #include <memory>
00039 #include <boost/shared_ptr.hpp>
00040 #include <vector>
00041 
00042 
00043 class DTTrackFinderConfig : public edm::ESProducer {
00044  public:
00045 
00046   DTTrackFinderConfig(const edm::ParameterSet&);
00047 
00048   ~DTTrackFinderConfig();
00049   
00050   std::auto_ptr<L1MuDTExtLut> produceL1MuDTExtLut(const L1MuDTExtLutRcd&);
00051 
00052   std::auto_ptr<L1MuDTPhiLut> produceL1MuDTPhiLut(const L1MuDTPhiLutRcd&);
00053 
00054   std::auto_ptr<L1MuDTPtaLut> produceL1MuDTPtaLut(const L1MuDTPtaLutRcd&);
00055 
00056   std::auto_ptr<L1MuDTEtaPatternLut> produceL1MuDTEtaPatternLut(const L1MuDTEtaPatternLutRcd&);
00057 
00058   std::auto_ptr<L1MuDTQualPatternLut> produceL1MuDTQualPatternLut(const L1MuDTQualPatternLutRcd&);
00059 
00060   std::auto_ptr<L1MuDTTFParameters> produceL1MuDTTFParameters(const L1MuDTTFParametersRcd&);
00061 
00062   std::auto_ptr<L1MuDTTFMasks> produceL1MuDTTFMasks(const L1MuDTTFMasksRcd&);
00063 
00064  private:
00065 
00066 };
00067 
00068 #endif