|
||||
File indexing completed on 2024-04-06 12:05:12
0001 #include "DataFormats/SiPixelDigi/interface/SiPixelCalibDigiError.h" 0002 0003 std::string SiPixelCalibDigiError::printError() const { 0004 std::string result = "unknown error"; 0005 switch (fErrorType) { 0006 case (1): { 0007 result = "arrived at unexpected pattern."; 0008 break; 0009 } 0010 case (2): { 0011 result = "pixel is not in pattern at all."; 0012 break; 0013 } 0014 } 0015 0016 return result; 0017 }
[ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
This page was automatically generated by the 2.2.1 LXR engine. The LXR team |