File indexing completed on 2024-04-06 12:02:20
0001 #ifndef CondFormats_L1TObjects_L1GtMuonTemplate_h
0002 #define CondFormats_L1TObjects_L1GtMuonTemplate_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 L1GtMuonTemplate : public L1GtCondition {
0035 public:
0036
0037 L1GtMuonTemplate();
0038
0039
0040 L1GtMuonTemplate(const std::string&);
0041
0042
0043 L1GtMuonTemplate(const std::string&, const L1GtConditionType&);
0044
0045
0046 L1GtMuonTemplate(const L1GtMuonTemplate&);
0047
0048
0049 ~L1GtMuonTemplate() override;
0050
0051
0052 L1GtMuonTemplate& operator=(const L1GtMuonTemplate&);
0053
0054 public:
0055
0056 struct ObjectParameter {
0057 unsigned int ptHighThreshold;
0058 unsigned int ptLowThreshold;
0059 bool enableMip;
0060 bool enableIso;
0061 bool requestIso;
0062 unsigned int qualityRange;
0063 unsigned long long etaRange;
0064 unsigned int phiHigh;
0065 unsigned int phiLow;
0066
0067 COND_SERIALIZABLE;
0068 };
0069
0070
0071
0072
0073 struct CorrelationParameter {
0074 unsigned int chargeCorrelation;
0075 unsigned long long deltaEtaRange;
0076
0077 unsigned long long deltaPhiRange0Word;
0078 unsigned long long deltaPhiRange1Word;
0079 unsigned int deltaPhiMaxbits;
0080
0081 COND_SERIALIZABLE;
0082 };
0083
0084 public:
0085 inline const std::vector<ObjectParameter>* objectParameter() const { return &m_objectParameter; }
0086
0087 inline const CorrelationParameter* correlationParameter() const { return &m_correlationParameter; }
0088
0089
0090 void setConditionParameter(const std::vector<ObjectParameter>& objParameter,
0091 const CorrelationParameter& corrParameter);
0092
0093
0094 void print(std::ostream& myCout) const override;
0095
0096
0097 friend std::ostream& operator<<(std::ostream&, const L1GtMuonTemplate&);
0098
0099 private:
0100
0101 void copy(const L1GtMuonTemplate& cp);
0102
0103 private:
0104
0105 std::vector<ObjectParameter> m_objectParameter;
0106 CorrelationParameter m_correlationParameter;
0107
0108 COND_SERIALIZABLE;
0109 };
0110
0111 #endif