OTSSemSim.cpp 502 B

123456789101112131415161718192021222324252627282930313233343536
  1. #include "stdafx.h"
  2. #include "OTSSemSim.h"
  3. namespace OTSController {
  4. COTSSemSim::COTSSemSim()
  5. {
  6. m_bConnected = TRUE;
  7. m_bBeamOn = TRUE;
  8. m_nBeamBlank = 2;
  9. m_dBrightness = 50.5;
  10. m_dContrast = 40.6;
  11. m_dSpotSize = 40;
  12. m_dWorkingDistance = 9.8;
  13. m_dMagnification = 100;
  14. m_dKV = 15;
  15. m_dCurrentPositionX = 0;
  16. m_dCurrentPositionY = 0;
  17. m_dCurrentPositionR = 0;
  18. m_dScanFieldSizeX = 1142;
  19. m_dScanFieldSizeY = 857;
  20. m_nScanMode = 0;
  21. }
  22. COTSSemSim::~COTSSemSim()
  23. {
  24. }
  25. }