AliPhysics  068200c (068200c)
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
TBinning.h
Go to the documentation of this file.
1 #ifndef TBINNING_H
2 #define TBINNING_H
3 /* Copyright(c) 1998-2016, ALICE Experiment at CERN, All rights reserved. *
4  * See cxx source for full Copyright notice */
5 
21 class TBinning {
22 public:
23 
27  TBinning() {}
28 
32  virtual ~TBinning() {}
33 
38  virtual TBinning * MakeCopy() const = 0;
39 
45  virtual void CreateBinEdges(TArrayD &binedges) const = 0;
46 };
47 
48 #endif // TBINNING_H
virtual ~TBinning()
Definition: TBinning.h:32
virtual void CreateBinEdges(TArrayD &binedges) const =0
Interface for binnings used by the histogram handler.
Definition: TBinning.h:21
virtual TBinning * MakeCopy() const =0
TBinning()
Definition: TBinning.h:27