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