@@ -1626,11 +1626,11 @@ TH2 *TH2::Rebin(Int_t ngroup, const char *newname, const Double_t *xbins)
16261626// //////////////////////////////////////////////////////////////////////////////
16271627// / Rebin this histogram grouping nxgroup/nygroup bins along the xaxis/yaxis together.
16281628// /
1629- // / #### case 1 xbins=0 || ybins=0
1629+ // / #### case 1 ` xbins` =0 || ` ybins` =0
16301630// /
1631- // / if newname is not blank a new temporary histogram hnew is created.
1631+ // / if ` newname` is not blank a new temporary histogram hnew is created.
16321632// / else the current histogram is modified (default)
1633- // / The parameter nxgroup/ nygroup indicate how many bins along the xaxis/yaxis of this
1633+ // / The parameters ` nxgroup`/` nygroup` indicate how many bins along the xaxis/yaxis of this
16341634// / have to me merged into one bin of hnew
16351635// / If the original histogram has errors stored (via Sumw2), the resulting
16361636// / histograms has new errors correctly calculated.
@@ -1644,30 +1644,30 @@ TH2 *TH2::Rebin(Int_t ngroup, const char *newname, const Double_t *xbins)
16441644// / // merging 5 bins of h1 along the yaxis in one bin
16451645// / ~~~
16461646// /
1647- // / NOTE : If nxgroup/ nygroup is not an exact divider of the number of bins,
1647+ // / \note : If ` nxgroup`/` nygroup` is not an exact divider of the number of bins,
16481648// / along the xaxis/yaxis the top limit(s) of the rebinned histogram
16491649// / is changed to the upper edge of the xbin=newxbins*nxgroup resp.
16501650// / ybin=newybins*nygroup and the corresponding bins are added to
16511651// / the overflow bin.
16521652// / Statistics will be recomputed from the new bin contents.
16531653// /
1654- // / #### case 2 xbins!=0 && ybins!=0
1654+ // / #### case 2 ` xbins` !=0 && ` ybins` !=0
16551655// /
1656- // / A new histogram is created (you should specify newname).
1657- // / The parameter nxgroup ( nygroup) is the number of variable size bins for the x-axis
1656+ // / A new histogram is created (you should specify ` newname` ).
1657+ // / The parameter ` nxgroup` (` nygroup` ) is the number of variable size bins for the x-axis
16581658// / (y-axis) in the created histogram.
1659- // / The arrays xbins and ybins must contain nxgroup+1 and nygroups+1 elements
1659+ // / The arrays ` xbins` and ` ybins` must contain ` nxgroup+1` and ` nygroups+1` elements
16601660// / that represent the low-edges of the x and y bins respectively.
16611661// / If the original histogram has errors stored (via Sumw2), the resulting
16621662// / histograms has new errors correctly calculated.
16631663// /
1664- // / NOTE: The bin edges specified in xbins and ybins should correspond
1664+ // / \note The bin edges specified in xbins and ybins should correspond
16651665// / to bin edges in the original histogram. If a bin edge in the new histogram
16661666// / is in the middle of a bin in the original histogram, all entries in
16671667// / the split bin in the original histogram will be transfered to the
16681668// / lower of the two possible bins in the new histogram. This is
16691669// / probably not what you want. A warning message is emitted in this
1670- // / case
1670+ // / case.
16711671// /
16721672// / examples: if h2 is an existing TH2F histogram with 100 bins on x-axis
16731673// / and 100 bins y-axis
0 commit comments