Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
Hparam.h
Go to the documentation of this file.
1/* @(#)root/histpainter:$Id$ */
2
3/*************************************************************************
4 * Copyright (C) 1995-2000, Rene Brun and Fons Rademakers. *
5 * All rights reserved. *
6 * *
7 * For the licensing terms see $ROOTSYS/LICENSE. *
8 * For the list of contributors see $ROOTSYS/README/CREDITS. *
9 *************************************************************************/
10
11#ifndef ROOT_Hparam
12#define ROOT_Hparam
13
14
15////////////////////////////////////////////////////////////////////////////////
16/*! \struct Hparam_t
17 \brief Histogram parameters structure.
18
19Structure to store current histogram's parameters.
20
21Used internally by THistPainter to manage histogram parameters.
22
23*/
24
25#include "RtypesCore.h"
26
27typedef struct Hparam_t {
28 Double_t xbinsize; ///< Bin size in case of equidistant bins
29 Double_t xlowedge; ///< Low edge of axis
30 Double_t xmin; ///< Minimum value along X
31 Double_t xmax; ///< Maximum value along X
32 Double_t ybinsize; ///< Bin size in case of equidistant bins
33 Double_t ylowedge; ///< Low edge of axis
34 Double_t ymin; ///< Minimum value along y
35 Double_t ymax; ///< Maximum value along y
36 Double_t zbinsize; ///< Bin size in case of equidistant bins
37 Double_t zlowedge; ///< Low edge of axis
38 Double_t zmin; ///< Minimum value along Z
39 Double_t zmax; ///< Maximum value along Z
40 Double_t factor; ///< Multiplication factor (normalization)
41 Double_t allchan; ///< Integrated sum of contents
42 Double_t baroffset; ///< Offset of bin for bars or legos [0,1]
43 Double_t barwidth; ///< Width of bin for bars and legos [0,1]
44 Int_t xfirst; ///< First bin number along X
45 Int_t xlast; ///< Last bin number along X
46 Int_t yfirst; ///< First bin number along Y
47 Int_t ylast; ///< Last bin number along Y
48 Int_t zfirst; ///< First bin number along Z
49 Int_t zlast; ///< Last bin number along Z
51
52#endif
Histogram parameters structure.
Definition Hparam.h:27
Double_t baroffset
Offset of bin for bars or legos [0,1].
Definition Hparam.h:42
Double_t ylowedge
Low edge of axis.
Definition Hparam.h:33
Double_t xmin
Minimum value along X.
Definition Hparam.h:30
Int_t ylast
Last bin number along Y.
Definition Hparam.h:47
Int_t xfirst
First bin number along X.
Definition Hparam.h:44
Double_t zmin
Minimum value along Z.
Definition Hparam.h:38
Double_t zlowedge
Low edge of axis.
Definition Hparam.h:37
Double_t xbinsize
Bin size in case of equidistant bins.
Definition Hparam.h:28
Double_t ymin
Minimum value along y.
Definition Hparam.h:34
Double_t allchan
Integrated sum of contents.
Definition Hparam.h:41
Double_t xlowedge
Low edge of axis.
Definition Hparam.h:29
Double_t ymax
Maximum value along y.
Definition Hparam.h:35
Double_t factor
Multiplication factor (normalization)
Definition Hparam.h:40
Int_t zlast
Last bin number along Z.
Definition Hparam.h:49
Int_t xlast
Last bin number along X.
Definition Hparam.h:45
Double_t ybinsize
Bin size in case of equidistant bins.
Definition Hparam.h:32
Double_t barwidth
Width of bin for bars and legos [0,1].
Definition Hparam.h:43
Double_t zmax
Maximum value along Z.
Definition Hparam.h:39
Double_t xmax
Maximum value along X.
Definition Hparam.h:31
Int_t yfirst
First bin number along Y.
Definition Hparam.h:46
Int_t zfirst
First bin number along Z.
Definition Hparam.h:48
Double_t zbinsize
Bin size in case of equidistant bins.
Definition Hparam.h:36