1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#ifndef CondFormats_ESObjects_ESGain_H
#define CondFormats_ESObjects_ESGain_H
#include "CondFormats/Serialization/interface/Serializable.h"
#include <iostream>
class ESGain {
public:
ESGain();
ESGain(const float& gain);
~ESGain();
void setESGain(const float& value) { gain_ = value; }
float getESGain() const { return gain_; }
void print(std::ostream& s) const { s << "ESGain: " << gain_; }
private:
float gain_;
COND_SERIALIZABLE;
};
#endif
|