Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:22:16

0001 //-------------------------------------------------
0002 //
0003 /**  \class DTEtaPatternLutTester
0004  *
0005  *   L1 DT Track Finder Eta Pattern Lut Tester
0006  *
0007  *
0008  *
0009  *   J. Troconiz              UAM Madrid
0010  */
0011 //
0012 //--------------------------------------------------
0013 #ifndef DTEtaPatternLutTester_h
0014 #define DTEtaPatternLutTester_h
0015 
0016 #include "FWCore/Framework/interface/one/EDAnalyzer.h"
0017 
0018 #include "FWCore/Framework/interface/ESHandle.h"
0019 
0020 #include "CondFormats/L1TObjects/interface/L1MuDTEtaPatternLut.h"
0021 #include "CondFormats/DataRecord/interface/L1MuDTEtaPatternLutRcd.h"
0022 
0023 class DTEtaPatternLutTester : public edm::one::EDAnalyzer<> {
0024 public:
0025   explicit DTEtaPatternLutTester(const edm::ParameterSet& ps);
0026 
0027   void analyze(const edm::Event& e, const edm::EventSetup& c) override;
0028 
0029 private:
0030   edm::ESGetToken<L1MuDTEtaPatternLut, L1MuDTEtaPatternLutRcd> token_;
0031 };
0032 
0033 #endif