File indexing completed on 2024-04-06 12:22:18
0001 #ifndef L1GtConfigProducers_L1GtTscObjectKeysOnlineProd_h
0002 #define L1GtConfigProducers_L1GtTscObjectKeysOnlineProd_h
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017
0018
0019
0020
0021
0022 #include "CondTools/L1Trigger/interface/L1ObjectKeysOnlineProdBase.h"
0023
0024 class L1GtTscObjectKeysOnlineProd : public L1ObjectKeysOnlineProdBase {
0025 public:
0026
0027 L1GtTscObjectKeysOnlineProd(const edm::ParameterSet&);
0028
0029
0030 ~L1GtTscObjectKeysOnlineProd() override;
0031
0032
0033 void fillObjectKeys(FillType pL1TriggerKey) override;
0034
0035 private:
0036
0037 std::string keyL1GtParameters(const std::string& subsystemKey, const std::string& gtSchema);
0038 std::string keyL1GtTriggerMenu(const std::string& subsystemKey, const std::string& gtSchema);
0039 std::string keyL1GtPsbSetup(const std::string& subsystemKey, const std::string& gtSchema);
0040
0041 private:
0042
0043 bool m_enableL1GtParameters;
0044 bool m_enableL1GtTriggerMenu;
0045 bool m_enableL1GtPsbSetup;
0046 };
0047
0048 #endif