File indexing completed on 2023-03-17 10:47:09
0001 #ifndef CondFormats_L1TObjects_L1GtBptxTemplate_h
0002 #define CondFormats_L1TObjects_L1GtBptxTemplate_h
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017
0018
0019
0020
0021
0022
0023
0024
0025
0026 #include "CondFormats/Serialization/interface/Serializable.h"
0027
0028 #include <string>
0029 #include <iosfwd>
0030
0031
0032
0033
0034 #include "CondFormats/L1TObjects/interface/L1GtCondition.h"
0035
0036
0037
0038
0039 class L1GtBptxTemplate : public L1GtCondition {
0040 public:
0041
0042 L1GtBptxTemplate();
0043
0044
0045 L1GtBptxTemplate(const std::string&);
0046
0047
0048 L1GtBptxTemplate(const std::string&, const L1GtConditionType&);
0049
0050
0051 L1GtBptxTemplate(const L1GtBptxTemplate&);
0052
0053
0054 ~L1GtBptxTemplate() override;
0055
0056
0057 L1GtBptxTemplate& operator=(const L1GtBptxTemplate&);
0058
0059 public:
0060
0061 void print(std::ostream& myCout) const override;
0062
0063
0064 friend std::ostream& operator<<(std::ostream&, const L1GtBptxTemplate&);
0065
0066 private:
0067
0068 void copy(const L1GtBptxTemplate& cp);
0069
0070 COND_SERIALIZABLE;
0071 };
0072
0073 #endif