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
|
#ifndef CondFormats_Alignment_SurveyErrors_H
#define CondFormats_Alignment_SurveyErrors_H
/** \class SurveyErrors
*
* Container of SurveyError to be stored in DB.
*
* For more info, see CondFormats/Alignment/interface/SurveyError.h
*
* $Date: 2007/03/22 $
* $Revision: 1.1 $
* \author Chung Khim Lae
*/
#include "CondFormats/Serialization/interface/Serializable.h"
#include "CondFormats/Alignment/interface/SurveyError.h"
struct SurveyErrors {
SurveyErrors() {}
std::vector<SurveyError> m_surveyErrors;
COND_SERIALIZABLE;
};
#endif
|