Back to home page

Project CMSSW displayed by LXR

 
 

    


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

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