File indexing completed on 2024-04-06 12:22:17
0001 #ifndef L1GtConfigProducers_L1GtPrescaleFactorsAlgoTrigConfigOnlineProd_h
0002 #define L1GtConfigProducers_L1GtPrescaleFactorsAlgoTrigConfigOnlineProd_h
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017
0018
0019 #include <memory>
0020 #include <string>
0021
0022
0023
0024 #include "CondTools/L1Trigger/interface/L1ConfigOnlineProdBase.h"
0025
0026 #include "CondFormats/L1TObjects/interface/L1GtPrescaleFactors.h"
0027 #include "CondFormats/DataRecord/interface/L1GtPrescaleFactorsAlgoTrigRcd.h"
0028
0029
0030
0031
0032 class L1GtPrescaleFactorsAlgoTrigConfigOnlineProd
0033 : public L1ConfigOnlineProdBase<L1GtPrescaleFactorsAlgoTrigRcd, L1GtPrescaleFactors> {
0034 public:
0035
0036 L1GtPrescaleFactorsAlgoTrigConfigOnlineProd(const edm::ParameterSet&);
0037
0038
0039 ~L1GtPrescaleFactorsAlgoTrigConfigOnlineProd() override;
0040
0041
0042 std::unique_ptr<L1GtPrescaleFactors> newObject(const std::string& objectKey) override;
0043
0044 private:
0045 bool m_isDebugEnabled;
0046 };
0047
0048 #endif