RAIDA  1.9.0
IDataPoint.h
1 // -*- C++ -*-
2 // AID-GENERATED
3 // =========================================================================
4 // This class was generated by AID - Abstract Interface Definition
5 // DO NOT MODIFY, but use the org.freehep.aid.Aid utility to regenerate it.
6 // =========================================================================
7 #ifndef AIDA_IDATAPOINT_H
8 #define AIDA_IDATAPOINT_H 1
9 
10 // This file is part of the AIDA library
11 // Copyright (C) 2002 by the AIDA team. All rights reserved.
12 // This library is free software and under the terms of the
13 // GNU Library General Public License described in the LGPL.txt
14 
15 namespace AIDA {
16 
17 class IMeasurement;
18 
27 class IDataPoint {
28 
29 public:
31  virtual ~IDataPoint() { /* nop */; }
32 
39  virtual int dimension() const = 0;
40 
47  virtual IMeasurement * coordinate(int coord) = 0;
48 
49  virtual const IMeasurement * coordinate(int coord) const = 0;
50 }; // class
51 } // namespace AIDA
52 #endif /* ifndef AIDA_IDATAPOINT_H */
virtual ~IDataPoint()
Destructor.
Definition: IDataPoint.h:31
virtual IMeasurement * coordinate(int coord)=0
Get the IMeasurement for a given coordinate.
Basic user-level interface class for holding and managing a single set of "measurements".
Definition: IDataPoint.h:27
virtual int dimension() const =0
Get the dimension of the IDataPoint, i.e.
Basic user-level interface class for holding a single "measurement" with positive and negative errors...
Definition: IMeasurement.h:26