File indexing completed on 2024-04-06 12:22:17
0001 #ifndef L1GtConfigProducers_L1GtBoardMapsTrivialProducer_h
0002 #define L1GtConfigProducers_L1GtBoardMapsTrivialProducer_h
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017
0018
0019 #include <memory>
0020
0021 #include <vector>
0022
0023
0024
0025 #include "FWCore/Framework/interface/ESProducer.h"
0026
0027 #include "CondFormats/L1TObjects/interface/L1GtBoard.h"
0028 #include "CondFormats/L1TObjects/interface/L1GtBoardMaps.h"
0029 #include "CondFormats/DataRecord/interface/L1GtBoardMapsRcd.h"
0030
0031
0032
0033
0034 class L1GtBoardMapsTrivialProducer : public edm::ESProducer {
0035 public:
0036
0037 L1GtBoardMapsTrivialProducer(const edm::ParameterSet&);
0038
0039
0040 ~L1GtBoardMapsTrivialProducer() override;
0041
0042
0043
0044
0045 std::unique_ptr<L1GtBoardMaps> produceBoardMaps(const L1GtBoardMapsRcd&);
0046
0047 private:
0048
0049 std::vector<L1GtBoard> m_gtBoardMaps;
0050 };
0051
0052 #endif