1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- //---------------------------------------------------------------------------------------
- //
- // 文件名称:DIOSConfiguration.h
- // 摘 要:定义 Dios设备 配置文件的key值
- // 完成日期:2022-01-30
- //
- //---------------------------------------------------------------------------------------
- #pragma once
- //------------------------Dios Configuration 相关-----------------------------------BEGIN
- //通用节点
- constexpr auto NODE_CONFIGURATION = "CONFIGURATION";
- constexpr auto NODE_connections = "connections";
- constexpr auto NODE_MajorID = "MajorID";
- constexpr auto NODE_MinorID = "MinorID";
- constexpr auto NODE_VendorID = "VendorID";
- constexpr auto NODE_ProductID = "ProductID";
- constexpr auto NODE_SerialID = "SerialID";
- constexpr auto NODE_Description = "Description";
- //webconfig功能节点
- constexpr auto NODE_ConfigToolInfo = "ConfigToolInfo";
- constexpr auto NODE_AttributeInfo = "AttributeInfo";
- constexpr auto NODE_AttributeKey = "AttributeKey";
- constexpr auto NODE_AttributeDescripition = "AttributeDescripition";
- constexpr auto NODE_ListInfo = "ListInfo";
- constexpr auto NODE_InnerKey = "InnerKey";
- constexpr auto NODE_PathID = "PathID";
- //探测器节点
- constexpr auto NODE_ModeTable = "ModeTable";
- constexpr auto NODE_DetectorMode = "DetectorMode";
- constexpr auto NODE_LogicMode = "LogicMode";
- constexpr auto NODE_RawImgWidth = "RawImgWidth";
- constexpr auto NODE_RawImgHeight = "RawImgHeight";
- constexpr auto NODE_WidthOffset = "WidthOffset";
- constexpr auto NODE_HeightOffset = "HeightOffset";
- constexpr auto NODE_ImageWidth = "ImageWidth";
- constexpr auto NODE_ImageHeight = "ImageHeight";
- constexpr auto NODE_PreviewEnable = "PreviewEnable";
- constexpr auto NODE_PreviewWidth = "PreviewWidth";
- constexpr auto NODE_PreviewHeight = "PreviewHeight";
- constexpr auto NODE_PhySizeInfoBit = "PhySizeInfoBit";
- constexpr auto NODE_PixelPitch = "PixelPitch";
- constexpr auto NODE_AmplificationFactor = "AmplificationFactor";
- constexpr auto NODE_IsSaveRaw = "IsSaveRaw";
- constexpr auto NODE_RotateAngle = "RotateAngle";
- constexpr auto NODE_Sensitivity = "Sensitivity";
- constexpr auto NODE_GainValue = "GainValue";
- constexpr auto NODE_Frequency = "Frequency";
- constexpr auto NODE_FrameCount = "FrameCount";
- constexpr auto NODE_SyncType = "SyncType";
- constexpr auto NODE_CalibConfig = "CalibConfig";
- constexpr auto NODE_NodeInfo = "NodeInfo";
- constexpr auto NODE_ImgCount = "ImgCount";
- constexpr auto NODE_Dose = "Dose";
- constexpr auto NODE_XwindowSize = "XwindowSize";
- constexpr auto NODE_BinningX = "BinningX";
- constexpr auto NODE_BinningY = "BinningY";
- constexpr auto NODE_WorkStation = "WorkStation";
- constexpr auto NODE_SID = "SID";
- constexpr auto NODE_SOD = "SOD";
- //------------------------Dios Configuration 相关-------------------------------------END
|