File indexing completed on 2024-09-12 04:16:15
0001 #ifndef CondFormats_L1TObjects_L1GtEnergySumTemplate_h
0002 #define CondFormats_L1TObjects_L1GtEnergySumTemplate_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 L1GtEnergySumTemplate : public L1GtCondition {
0035 public:
0036
0037 L1GtEnergySumTemplate();
0038
0039
0040 L1GtEnergySumTemplate(const std::string&);
0041
0042
0043 L1GtEnergySumTemplate(const std::string&, const L1GtConditionType&);
0044
0045
0046 L1GtEnergySumTemplate(const L1GtEnergySumTemplate&);
0047
0048
0049 ~L1GtEnergySumTemplate() override;
0050
0051
0052 L1GtEnergySumTemplate& operator=(const L1GtEnergySumTemplate&);
0053
0054 public:
0055
0056 struct ObjectParameter {
0057 unsigned int etThreshold;
0058 bool energyOverflow;
0059
0060
0061
0062 unsigned long long phiRange0Word;
0063 unsigned long long phiRange1Word;
0064
0065
0066 ObjectParameter() : etThreshold(0), energyOverflow(false), phiRange0Word(0), phiRange1Word(0) { ; }
0067
0068 COND_SERIALIZABLE;
0069 };
0070
0071 public:
0072 inline const std::vector<ObjectParameter>* objectParameter() const { return &m_objectParameter; }
0073
0074
0075 void setConditionParameter(const std::vector<ObjectParameter>&);
0076
0077
0078 void print(std::ostream& myCout) const override;
0079
0080
0081 friend std::ostream& operator<<(std::ostream&, const L1GtEnergySumTemplate&);
0082
0083 private:
0084
0085 void copy(const L1GtEnergySumTemplate& cp);
0086
0087 private:
0088
0089 std::vector<ObjectParameter> m_objectParameter;
0090
0091 COND_SERIALIZABLE;
0092 };
0093
0094 #endif