File indexing completed on 2026-08-06 09:38:18
0001
0002
0003
0004
0005
0006
0007
0008
0009 #ifndef LWH_AIMeasurement_H
0010 #define LWH_AIMeasurement_H
0011
0012
0013
0014
0015
0016 namespace AIDA {
0017
0018 class IMeasurement {
0019
0020 public:
0021 virtual ~IMeasurement() {}
0022 virtual double value() const = 0;
0023 virtual double errorPlus() const = 0;
0024 virtual double errorMinus() const = 0;
0025 virtual bool setValue(double value) = 0;
0026 virtual bool setErrorPlus(double errorPlus) = 0;
0027 virtual bool setErrorMinus(double errorMinus) = 0;
0028 };
0029
0030 }
0031
0032
0033
0034
0035
0036
0037
0038 #endif