Back to home page

EIC code displayed by LXR

 
 

    


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

0001 // -*- C++ -*-
0002 //
0003 // AIDataPoint.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_AIDataPoint_H
0010 #define LWH_AIDataPoint_H
0011 
0012 
0013 
0014 /** @cond DONT_DOCUMENT_STRIPPED_DOWN_AIDA_INTERFACES */
0015 
0016 namespace AIDA {
0017 
0018 class IMeasurement;
0019 
0020 /**
0021  * Basic user-level interface class for holding and managing
0022  * a single set of "measurements".
0023  * 
0024  * @author The AIDA team (http://aida.freehep.org/)
0025  *
0026  */
0027 
0028 class IDataPoint {
0029 
0030 public: 
0031     virtual ~IDataPoint() {}
0032     virtual int dimension() const = 0;
0033     virtual IMeasurement * coordinate(int coord) = 0;
0034     virtual const IMeasurement * coordinate(int coord) const = 0;
0035 };
0036 
0037 }
0038 
0039 /** @endcond */
0040 
0041 
0042 
0043 
0044 
0045 #endif /* LWH_AIDataPoint_H */