File indexing completed on 2024-04-06 12:02:11
0001 #ifndef CondFormats_ESObjects_ESGain_H
0002 #define CondFormats_ESObjects_ESGain_H
0003 #include "CondFormats/Serialization/interface/Serializable.h"
0004
0005 #include <iostream>
0006
0007 class ESGain {
0008 public:
0009 ESGain();
0010 ESGain(const float& gain);
0011 ~ESGain();
0012 void setESGain(const float& value) { gain_ = value; }
0013 float getESGain() const { return gain_; }
0014 void print(std::ostream& s) const { s << "ESGain: " << gain_; }
0015
0016 private:
0017 float gain_;
0018
0019 COND_SERIALIZABLE;
0020 };
0021
0022 #endif