File indexing completed on 2024-09-07 04:34:26
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011 #ifndef _MEASUREMENTSENSOR2D_HH
0012 #define _MEASUREMENTSENSOR2D_HH
0013
0014 #include <vector>
0015 #include "Alignment/CocoaModel/interface/Measurement.h"
0016 #include "Alignment/CocoaUtilities/interface/CocoaGlobals.h"
0017
0018 class MeasurementSensor2D : public Measurement {
0019 public:
0020 MeasurementSensor2D(const ALIint measdim, ALIstring& type, ALIstring& name) : Measurement(measdim, type, name) {}
0021 MeasurementSensor2D() {}
0022 ~MeasurementSensor2D() override {}
0023
0024
0025 void calculateSimulatedValue(ALIbool firstTime) override;
0026
0027
0028 void correctValueAndSigma() override;
0029
0030
0031 void setConversionFactor(const std::vector<ALIstring>& wordlist) override;
0032
0033 private:
0034 ALIdouble theDisplaceX, theDisplaceY;
0035 ALIdouble theMultiplyX, theMultiplyY;
0036 };
0037
0038 #endif