File indexing completed on 2024-04-06 12:20:29
0001 #ifndef L1Trigger_L1TGlobal_EnergySumZdcTemplate_h
0002 #define L1Trigger_L1TGlobal_EnergySumZdcTemplate_h
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017
0018
0019
0020
0021 #include <string>
0022 #include <iosfwd>
0023
0024
0025
0026
0027 #include "L1Trigger/L1TGlobal/interface/GlobalCondition.h"
0028
0029
0030
0031
0032 class EnergySumZdcTemplate : public GlobalCondition {
0033 public:
0034
0035 EnergySumZdcTemplate();
0036
0037
0038 EnergySumZdcTemplate(const std::string&);
0039
0040
0041 EnergySumZdcTemplate(const std::string&, const l1t::GtConditionType&);
0042
0043
0044 EnergySumZdcTemplate(const EnergySumZdcTemplate&);
0045
0046
0047 ~EnergySumZdcTemplate() override;
0048
0049
0050 EnergySumZdcTemplate& operator=(const EnergySumZdcTemplate&);
0051
0052 public:
0053 struct ObjectParameter {
0054 unsigned int etLowThreshold;
0055 unsigned int etHighThreshold;
0056 };
0057
0058 public:
0059 inline const std::vector<ObjectParameter>* objectParameter() const { return &m_objectParameter; }
0060
0061
0062 void setConditionParameter(const std::vector<ObjectParameter>&);
0063
0064
0065 void print(std::ostream& myCout) const override;
0066
0067
0068 friend std::ostream& operator<<(std::ostream&, const EnergySumZdcTemplate&);
0069
0070 private:
0071
0072 void copy(const EnergySumZdcTemplate& cp);
0073
0074 private:
0075
0076 std::vector<ObjectParameter> m_objectParameter;
0077 };
0078
0079 #endif