File indexing completed on 2023-10-25 09:37:27
0001 #ifndef CondFormats_SiPixelObjects_PixelDCSObject_h
0002 #define CondFormats_SiPixelObjects_PixelDCSObject_h
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016 #include "CondFormats/Serialization/interface/Serializable.h"
0017
0018 #include <string>
0019 #include <vector>
0020
0021 template <class T>
0022 struct PixelDCSObject {
0023 typedef T Type;
0024
0025 struct Item {
0026 std::string name;
0027
0028 Type value;
0029
0030 COND_SERIALIZABLE;
0031 };
0032
0033 std::vector<Item> items;
0034
0035 COND_SERIALIZABLE;
0036 };
0037
0038 struct CaenChannel {
0039 bool isOn;
0040 float iMon;
0041 float vMon;
0042
0043 COND_SERIALIZABLE;
0044 };
0045
0046 #endif