123456789101112131415161718192021222324252627282930313233343536 |
- #include "stdafx.h"
- #include "OTSSemSim.h"
- namespace OTSController {
- COTSSemSim::COTSSemSim()
- {
- m_bConnected = TRUE;
- m_bBeamOn = TRUE;
- m_nBeamBlank = 2;
- m_dBrightness = 50.5;
- m_dContrast = 40.6;
- m_dSpotSize = 40;
- m_dWorkingDistance = 9.8;
- m_dMagnification = 100;
-
- m_dKV = 15;
- m_dCurrentPositionX = 0;
- m_dCurrentPositionY = 0;
- m_dCurrentPositionR = 0;
- m_dScanFieldSizeX = 1142;
- m_dScanFieldSizeY = 857;
- m_nScanMode = 0;
- }
- COTSSemSim::~COTSSemSim()
- {
- }
-
- }
|