1234567891011121314151617181920 |
- #pragma once
- namespace DiosCtrlBox
- {
- class ConfigurerCalibration
- {
- public:
- static float GetDetectorADToHeightSlope();
- static float GetDetectorADToHeightIntercept();
- static float GetTubeHeightADToHeightSlope();
- static float GetTubeHeightADToHeightIntercept();
- static float GetTubeAngleADToAngleSlope();
- static float GetTubeAngleADToAngleIntercept();
- static void UpdateTubeHeightADToHeightCurve(float slope, float intercept);
- static void UpdateTubeAngleADToAngleCurve(float slope, float intercept);
- static void UpdateDetectorHeightADToHeightCurve(float slope, float intercept);
- };
- }
|