File indexing completed on 2023-03-17 11:14:14
0001 #ifndef L1GtConfigProducers_L1GtRsObjectKeysOnlineProd_h
0002 #define L1GtConfigProducers_L1GtRsObjectKeysOnlineProd_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 L1GtRsObjectKeysOnlineProd : public L1ObjectKeysOnlineProdBase {
0025 public:
0026
0027 L1GtRsObjectKeysOnlineProd(const edm::ParameterSet&);
0028
0029
0030 ~L1GtRsObjectKeysOnlineProd() override;
0031
0032
0033 void fillObjectKeys(FillType pL1TriggerKey) override;
0034
0035 private:
0036
0037 std::string keyL1GtPrescaleFactorsAlgoTrig(const std::string&);
0038 std::string keyL1GtPrescaleFactorsTechTrig(const std::string&);
0039 std::string keyL1GtTriggerMaskAlgoTrig(const std::string&);
0040 std::string keyL1GtTriggerMaskTechTrig(const std::string&);
0041 std::string keyL1GtTriggerMaskVetoTechTrig(const std::string&);
0042
0043 private:
0044
0045 int m_partitionNumber;
0046
0047
0048 bool m_enableL1GtPrescaleFactorsAlgoTrig;
0049 bool m_enableL1GtPrescaleFactorsTechTrig;
0050 bool m_enableL1GtTriggerMaskAlgoTrig;
0051 bool m_enableL1GtTriggerMaskTechTrig;
0052 bool m_enableL1GtTriggerMaskVetoTechTrig;
0053 };
0054
0055 #endif