1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
#ifndef CastorGains_h
#define CastorGains_h
/**
\class CastorGains
\author Radek Ofierzynski
Modified by L.Mundim (Mar/2009)
POOL container to store Gain values 4xCapId
*/
#include "CondFormats/Serialization/interface/Serializable.h"
#include "CondFormats/CastorObjects/interface/CastorCondObjectContainer.h"
#include "CondFormats/CastorObjects/interface/CastorGain.h"
//typedef CastorCondObjectContainer<CastorGain> CastorGains;
class CastorGains : public CastorCondObjectContainer<CastorGain> {
public:
CastorGains() : CastorCondObjectContainer<CastorGain>() {}
std::string myname() const { return (std::string) "CastorGains"; }
private:
COND_SERIALIZABLE;
};
#endif
|