00001
00002
00003
00004
00005
00006
00007
00008
00009 #ifndef LWH_AIMeasurement_H
00010 #define LWH_AIMeasurement_H
00011
00012 #ifndef LWH_USING_AIDA
00013
00016 namespace AIDA {
00017
00018 class IMeasurement {
00019
00020 public:
00021 virtual ~IMeasurement() {}
00022 virtual double value() const = 0;
00023 virtual double errorPlus() const = 0;
00024 virtual double errorMinus() const = 0;
00025 virtual bool setValue(double value) = 0;
00026 virtual bool setErrorPlus(double errorPlus) = 0;
00027 virtual bool setErrorMinus(double errorMinus) = 0;
00028 };
00029
00030 }
00031
00034 #else
00035 #include "AIDA/IMeasurement.h"
00036 #endif
00037
00038 #endif