1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef BLOBPEDESTALS_H
#define BLOBPEDESTALS_H
#include "CondFormats/Serialization/interface/Serializable.h"
#include <vector>
class BlobPedestals {
public:
BlobPedestals();
virtual ~BlobPedestals();
std::vector<unsigned int> m_pedestals;
COND_SERIALIZABLE;
};
#endif
|