/* * ScanPositioner.hh * * Class to keep track of the content of the positioners from the sscan data. * * * Created on: Dec 23, 2014 * Author: Hovanes Egiyan */ #ifndef SCANPOSITIONER_HH_ #define SCANPOSITIONER_HH_ #include "ScanDetector.hh" class ScanPositioner: public ScanDetector { protected: std::string posStepMode; std::string posReadbackName; std::string posReadbackDescription; std::string posReadbackUnit; public: ScanPositioner(); // Default constructor ScanPositioner( std::istream& inStream ); // Actual constructor virtual ~ScanPositioner(); ClassDef(ScanPositioner, 0) }; #endif /* SCANPOSITIONER_HH_ */