star-travex
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
H3D.h
Go to the documentation of this file.
1 #ifndef H3_h
2 #define H3_h
3 
4 #include "TH3D.h"
5 
6 
7 class H3D : public TH3D
8 {
9 public:
10 
11 TH2D *DoProject2D(const char* name, const char * title, TAxis* projX, TAxis* projY,
12  bool computeErrors=false, bool originalRange=false,
13  bool useUF=false, bool useOF=false) const;
14  void Print(Option_t *option) const;
15 
16  ClassDef(H3D, 1)
17 };
18 
19 #endif
Definition: H3D.h:7
TH2D * DoProject2D(const char *name, const char *title, TAxis *projX, TAxis *projY, bool computeErrors=false, bool originalRange=false, bool useUF=false, bool useOF=false) const
void Print(Option_t *option) const
Definition: H3D.cxx:245