File indexing completed on 2024-04-06 11:58:12
0001 #ifndef PixelConfigurationVerifier_h
0002 #define PixelConfigurationVerifier_h
0003
0004
0005
0006
0007
0008 #include <iostream>
0009 #include <vector>
0010 #include <string>
0011 #include <cassert>
0012 #include "CalibFormats/SiPixelObjects/interface/PixelFEDCard.h"
0013 #include "CalibFormats/SiPixelObjects/interface/PixelNameTranslation.h"
0014 #include "CalibFormats/SiPixelObjects/interface/PixelDetectorConfig.h"
0015
0016 namespace pos {
0017
0018
0019
0020
0021
0022
0023 class PixelConfigurationVerifier {
0024 public:
0025 PixelConfigurationVerifier() {}
0026 virtual ~PixelConfigurationVerifier() {}
0027
0028
0029
0030
0031
0032 void checkChannelEnable(PixelFEDCard *theFEDCard,
0033 PixelNameTranslation *theNameTranslation,
0034 PixelDetectorConfig *theDetConfig);
0035
0036 private:
0037 };
0038 }
0039 #endif