1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#ifndef EcalTPGWeightGroup_h
#define EcalTPGWeightGroup_h
#include "CondFormats/Serialization/interface/Serializable.h"
#include "CondFormats/EcalObjects/interface/EcalTPGGroups.h"
class EcalTPGWeightGroup : public EcalTPGGroups {
public:
EcalTPGWeightGroup();
~EcalTPGWeightGroup();
COND_SERIALIZABLE;
};
#endif
|