CCOSConfigurations.h 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. //---------------------------------------------------------------------------------------
  2. //
  3. // 文件名称:CCOSConfiguration.h
  4. //
  5. //---------------------------------------------------------------------------------------
  6. #pragma once
  7. //------------------------CCOS Configuration 相关-----------------------------------BEGIN
  8. //通用节点
  9. constexpr auto NODE_CONFIGURATION = "CONFIGURATION";
  10. constexpr auto NODE_connections = "connections";
  11. constexpr auto NODE_MajorID = "MajorID";
  12. constexpr auto NODE_MinorID = "MinorID";
  13. constexpr auto NODE_VendorID = "VendorID";
  14. constexpr auto NODE_ProductID = "ProductID";
  15. constexpr auto NODE_SerialID = "SerialID";
  16. constexpr auto NODE_Description = "Description";
  17. //webconfig功能节点
  18. constexpr auto NODE_ConfigToolInfo = "ConfigToolInfo";
  19. constexpr auto NODE_AttributeInfo = "AttributeInfo";
  20. constexpr auto NODE_AttributeKey = "AttributeKey";
  21. constexpr auto NODE_AttributeDescripition = "AttributeDescripition";
  22. constexpr auto NODE_ListInfo = "ListInfo";
  23. constexpr auto NODE_InnerKey = "InnerKey";
  24. constexpr auto NODE_PathID = "PathID";
  25. //探测器节点
  26. constexpr auto NODE_ModeTable = "ModeTable";
  27. constexpr auto NODE_DetectorMode = "DetectorMode";
  28. constexpr auto NODE_LogicMode = "LogicMode";
  29. constexpr auto NODE_RawImgWidth = "RawImgWidth";
  30. constexpr auto NODE_RawImgHeight = "RawImgHeight";
  31. constexpr auto NODE_WidthOffset = "WidthOffset";
  32. constexpr auto NODE_HeightOffset = "HeightOffset";
  33. constexpr auto NODE_ImageWidth = "ImageWidth";
  34. constexpr auto NODE_ImageHeight = "ImageHeight";
  35. constexpr auto NODE_PreviewEnable = "PreviewEnable";
  36. constexpr auto NODE_PreviewWidth = "PreviewWidth";
  37. constexpr auto NODE_PreviewHeight = "PreviewHeight";
  38. constexpr auto NODE_PhySizeInfoBit = "PhySizeInfoBit";
  39. constexpr auto NODE_PixelPitch = "PixelPitch";
  40. constexpr auto NODE_AmplificationFactor = "AmplificationFactor";
  41. constexpr auto NODE_IsSaveRaw = "IsSaveRaw";
  42. constexpr auto NODE_RotateAngle = "RotateAngle";
  43. constexpr auto NODE_Sensitivity = "Sensitivity";
  44. constexpr auto NODE_GainValue = "GainValue";
  45. constexpr auto NODE_Frequency = "Frequency";
  46. constexpr auto NODE_FrameCount = "FrameCount";
  47. constexpr auto NODE_SyncType = "SyncType";
  48. constexpr auto NODE_CalibConfig = "CalibConfig";
  49. constexpr auto NODE_NodeInfo = "NodeInfo";
  50. constexpr auto NODE_ImgCount = "ImgCount";
  51. constexpr auto NODE_Dose = "Dose";
  52. constexpr auto NODE_XwindowSize = "XwindowSize";
  53. constexpr auto NODE_BinningX = "BinningX";
  54. constexpr auto NODE_BinningY = "BinningY";
  55. constexpr auto NODE_WorkStation = "WorkStation";
  56. constexpr auto NODE_SID = "SID";
  57. constexpr auto NODE_SOD = "SOD";
  58. //------------------------CCOS Configuration 相关-------------------------------------END