File indexing completed on 2024-04-06 12:22:17
0001 #ifndef L1GtConfigProducers_L1GtTriggerMaskVetoTechTrigConfigOnlineProd_h
0002 #define L1GtConfigProducers_L1GtTriggerMaskVetoTechTrigConfigOnlineProd_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/L1GtTriggerMask.h"
0027 #include "CondFormats/DataRecord/interface/L1GtTriggerMaskVetoTechTrigRcd.h"
0028
0029
0030
0031
0032 class L1GtTriggerMaskVetoTechTrigConfigOnlineProd
0033 : public L1ConfigOnlineProdBase<L1GtTriggerMaskVetoTechTrigRcd, L1GtTriggerMask> {
0034 public:
0035
0036 L1GtTriggerMaskVetoTechTrigConfigOnlineProd(const edm::ParameterSet&);
0037
0038
0039 ~L1GtTriggerMaskVetoTechTrigConfigOnlineProd() override;
0040
0041
0042 std::unique_ptr<L1GtTriggerMask> newObject(const std::string& objectKey) override;
0043
0044 private:
0045
0046 int m_partitionNumber;
0047 };
0048
0049 #endif