Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2026-08-06 09:38:18

0001 // -*- C++ -*-
0002 //
0003 // AIMeasurement.h is a part of ThePEG - Toolkit for HEP Event Generation
0004 // Copyright (C) 1999-2019 Leif Lonnblad
0005 //
0006 // ThePEG is licenced under version 3 of the GPL, see COPYING for details.
0007 // Please respect the MCnet academic guidelines, see GUIDELINES for details.
0008 //
0009 #ifndef LWH_AIMeasurement_H
0010 #define LWH_AIMeasurement_H
0011 
0012 
0013 
0014 /** @cond DONT_DOCUMENT_STRIPPED_DOWN_AIDA_INTERFACES */
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 /** @endcond */
0033 
0034 
0035 
0036 
0037 
0038 #endif /* LWH_AIMeasurement_H */