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
|
#ifndef EcalPulseShapes_h
#define EcalPulseShapes_h
#include "CondFormats/Serialization/interface/Serializable.h"
#include "CondFormats/EcalObjects/interface/EcalCondObjectContainer.h"
struct EcalPulseShape {
public:
static const int TEMPLATESAMPLES = 12;
EcalPulseShape();
float pdfval[TEMPLATESAMPLES];
float val(int isample) const { return pdfval[isample]; }
COND_SERIALIZABLE;
};
typedef EcalCondObjectContainer<EcalPulseShape> EcalPulseShapesMap;
typedef EcalPulseShapesMap::const_iterator EcalPulseShapesMapIterator;
typedef EcalPulseShapesMap EcalPulseShapes;
#endif
|