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