Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:01:55

0001 #ifndef CondFormats_Alignment_SurveyErrors_H
0002 #define CondFormats_Alignment_SurveyErrors_H
0003 
0004 /** \class SurveyErrors
0005  *
0006  *  Container of SurveyError to be stored in DB.
0007  *
0008  *  For more info, see CondFormats/Alignment/interface/SurveyError.h
0009  *
0010  *  $Date: 2007/03/22 $
0011  *  $Revision: 1.1 $
0012  *  \author Chung Khim Lae
0013  */
0014 
0015 #include "CondFormats/Serialization/interface/Serializable.h"
0016 
0017 #include "CondFormats/Alignment/interface/SurveyError.h"
0018 
0019 struct SurveyErrors {
0020   SurveyErrors() {}
0021 
0022   std::vector<SurveyError> m_surveyErrors;
0023 
0024   COND_SERIALIZABLE;
0025 };
0026 
0027 #endif