thepeg is hosted by Hepforge, IPPP Durham
ThePEG  2.2.1
AIDataPoint.h
1 // -*- C++ -*-
2 //
3 // AIDataPoint.h is a part of ThePEG - Toolkit for HEP Event Generation
4 // Copyright (C) 1999-2019 Leif Lonnblad
5 //
6 // ThePEG is licenced under version 3 of the GPL, see COPYING for details.
7 // Please respect the MCnet academic guidelines, see GUIDELINES for details.
8 //
9 #ifndef LWH_AIDataPoint_H
10 #define LWH_AIDataPoint_H
11 
12 
13 
16 namespace AIDA {
17 
18 class IMeasurement;
19 
28 class IDataPoint {
29 
30 public:
31  virtual ~IDataPoint() {}
32  virtual int dimension() const = 0;
33  virtual IMeasurement * coordinate(int coord) = 0;
34  virtual const IMeasurement * coordinate(int coord) const = 0;
35 };
36 
37 }
38 
45 #endif /* LWH_AIDataPoint_H */