RAIDA  1.9.0
IBaseHistogram.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_IBASEHISTOGRAM_H
8 #define AIDA_IBASEHISTOGRAM_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 #include <string>
16 
17 namespace AIDA {
18 
20 
30 
31 public:
33  virtual ~IBaseHistogram() { /* nop */; }
34 
40  virtual std::string title() const = 0;
41 
48  virtual bool setTitle(const std::string & title) = 0;
49 
55 
58 
64  virtual int dimension() const = 0;
65 
71  virtual bool reset() = 0;
72 
78  virtual int entries() const = 0;
79 
85 }; // class
87 } // namespace AIDA
88 #endif /* ifndef AIDA_IBASEHISTOGRAM_H */
virtual bool reset()=0
Reset the Histogram; as if just created.
virtual std::string title() const =0
Get the Histogram&#39;s title.
class IAnnotation;
Definition: IBaseHistogram.h:29
virtual int entries() const =0
Get the number of in-range entries in the Histogram.
virtual ~IBaseHistogram()
Destructor.
Definition: IBaseHistogram.h:33
virtual int dimension() const =0
Get the IAnnotation associated with the Histogram.
virtual bool setTitle(const std::string &title)=0
Set the histogram title.