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