AliPhysics  b095172 (b095172)
 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 
39  virtual void CreateBinEdges(TArrayD &binedges) const = 0;
40 };
41 
42 #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
TBinning()
Definition: TBinning.h:27