RAIDA  1.9.0
IProfile.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_IPROFILE_H
8 #define AIDA_IPROFILE_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 "AIDA/IBaseHistogram.h"
16 
17 namespace AIDA {
18 
26 class IProfile : virtual public IBaseHistogram {
27 
28 public:
30  virtual ~IProfile() { /* nop */; }
31 
38  virtual int allEntries() const = 0;
39 
45  virtual int extraEntries() const = 0;
46 
52  virtual double sumBinHeights() const = 0;
53 
59  virtual double sumAllBinHeights() const = 0;
60 
66  virtual double sumExtraBinHeights() const = 0;
67 
73  virtual double minBinHeight() const = 0;
74 
80  virtual double maxBinHeight() const = 0;
81 }; // class
82 } // namespace AIDA
83 #endif /* ifndef AIDA_IPROFILE_H */
virtual int extraEntries() const =0
Get the number of entries in the underflow and overflow bins.
virtual double sumBinHeights() const =0
Get the sum of in range bin heights in the IProfile.
User level interface to a Profile histogram.
Definition: IProfile.h:26
virtual double sumAllBinHeights() const =0
Get the sum of all the bins heights (including underflow and overflow bin).
virtual double maxBinHeight() const =0
Get the maximum height of the in-range bins.
class IAnnotation;
Definition: IBaseHistogram.h:29
virtual double sumExtraBinHeights() const =0
Get the sum of the underflow and overflow bin height.
virtual ~IProfile()
Destructor.
Definition: IProfile.h:30
virtual double minBinHeight() const =0
Get the minimum height of the in-range bins.
virtual int allEntries() const =0
Get the number or all the entries, both in range and underflow/overflow bins of the IProfile...