Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 #ifndef CSCTFConfigProducers_L1MuCSCTFParametersTester_h
0002 #define CSCTFConfigProducers_L1MuCSCTFParametersTester_h
0003 
0004 /**
0005  * \class L1MuCSCTFParametersTester
0006  * 
0007  * 
0008  * Description: test analyzer for L1 CSCTF parameters.  
0009  *
0010  * Implementation:
0011  *    <TODO: enter implementation details>
0012  *   
0013  * \author: G.P. Di Giovanni - University of Florida
0014  * 
0015  *
0016  */
0017 
0018 // this class header
0019 #include "L1TriggerConfig/CSCTFConfigProducers/interface/L1MuCSCTFParametersTester.h"
0020 
0021 // system include files
0022 
0023 // user include files
0024 //   base class
0025 #include "FWCore/Framework/interface/one/EDAnalyzer.h"
0026 
0027 #include "FWCore/Framework/interface/Event.h"
0028 #include "FWCore/ParameterSet/interface/ParameterSet.h"
0029 
0030 // forward declarations
0031 class L1MuCSCTFConfiguration;
0032 class L1MuCSCTFConfigurationRcd;
0033 
0034 // class declaration
0035 class L1MuCSCTFParametersTester : public edm::one::EDAnalyzer<> {
0036 public:
0037   // constructor
0038   explicit L1MuCSCTFParametersTester(const edm::ParameterSet&);
0039 
0040   void analyze(const edm::Event&, const edm::EventSetup&) override;
0041 
0042 private:
0043   edm::ESGetToken<L1MuCSCTFConfiguration, L1MuCSCTFConfigurationRcd> token_;
0044 };
0045 
0046 #endif /*CSCTFConfigProducers_L1MuCSCTFParametersTester_h*/