@@ -11,7 +11,7 @@ let version_id = '7.3.x';
1111
1212/** @summary version date
1313 * @desc Release date in format day/month/year like '14/04/2022' */
14- let version_date = '31/10 /2023';
14+ let version_date = '23/11 /2023';
1515
1616/** @summary version id and date
1717 * @desc Produced by concatenation of {@link version_id} and {@link version_date}
@@ -1049,7 +1049,7 @@ function create$1(typename, target) {
10491049 create$1(clTBox, obj);
10501050 extend$1(obj, { fX1NDC : 0., fY1NDC: 0, fX2NDC: 1, fY2NDC: 1,
10511051 fBorderSize: 0, fInit: 1, fShadowColor: 1,
1052- fCornerRadius: 0, fOption: 'brNDC', fName: 'title ' });
1052+ fCornerRadius: 0, fOption: 'brNDC', fName: '' });
10531053 break;
10541054 case clTAttText:
10551055 extend$1(obj, { fTextAngle: 0, fTextSize: 0, fTextAlign: 22, fTextColor: 1, fTextFont: 42});
@@ -1069,7 +1069,7 @@ function create$1(typename, target) {
10691069 case clTLegend:
10701070 create$1(clTPave, obj);
10711071 create$1(clTAttText, obj);
1072- extend$1(obj, { fColumnSeparation: 0, fEntrySeparation: 0.1, fMargin: 0.25, fNColumns: 1, fPrimitives: create$1(clTList),
1072+ extend$1(obj, { fColumnSeparation: 0, fEntrySeparation: 0.1, fMargin: 0.25, fNColumns: 1, fPrimitives: create$1(clTList), fName: clTPave,
10731073 fBorderSize: gStyle.fLegendBorderSize, fTextFont: gStyle.fLegendFont, fTextSize: gStyle.fLegendTextSize, fFillColor: gStyle.fLegendFillColor });
10741074 break;
10751075 case clTPaletteAxis:
@@ -61921,7 +61921,7 @@ class TH2Painter$2 extends THistPainter {
6192161921 // Paint histogram axis only
6192261922 this.draw_content = false;
6192361923 } else {
61924- this.draw_content = (this.gmaxbin > 0);
61924+ this.draw_content = (this.gmaxbin !== 0) || (this.gminbin !== 0);
6192561925 if (!this.draw_content && this.options.Zero && this.isTH2Poly()) {
6192661926 this.draw_content = true;
6192761927 this.options.Line = 1;
@@ -64599,7 +64599,7 @@ class TH3Painter extends THistPainter {
6459964599 this.gmaxbin = bin_content;
6460064600 }
6460164601
64602- this.draw_content = this.gmaxbin > 0 ;
64602+ this.draw_content = ( this.gmaxbin !== 0) || (this.gminbin !== 0) ;
6460364603 }
6460464604
6460564605 /** @summary Count TH3 statistic */
@@ -80435,8 +80435,12 @@ async function treeProcess(tree, selector, args) {
8043580435 case 'TLeafC': datakind = kTString; break;
8043680436 default: return null;
8043780437 }
80438- return createStreamerElement(name || leaf.fName, datakind);
80439-
80438+ const elem = createStreamerElement(name || leaf.fName, datakind);
80439+ if (leaf.fLen > 1) {
80440+ elem.fType += kOffsetL;
80441+ elem.fArrayLength = leaf.fLen;
80442+ }
80443+ return elem;
8044080444 }, findInHandle = branch => {
8044180445 for (let k = 0; k < handle.arr.length; ++k)
8044280446 if (handle.arr[k].branch === branch)
@@ -103720,11 +103724,10 @@ class RH2Painter$2 extends RHistPainter {
103720103724 // this value used for logz scale drawing
103721103725 if (this.gminposbin === null) this.gminposbin = this.gmaxbin*1e-4;
103722103726
103723- if (this.options.Axis > 0) { // Paint histogram axis only
103727+ if (this.options.Axis > 0) // Paint histogram axis only
103724103728 this.draw_content = false;
103725- } else {
103726- this.draw_content = this.gmaxbin > 0;
103727- }
103729+ else
103730+ this.draw_content = (this.gmaxbin !== 0) || (this.gminbin !== 0);
103728103731 }
103729103732
103730103733 /** @summary Count statistic */
@@ -104984,7 +104987,7 @@ class RH3Painter extends RHistPainter {
104984104987 }
104985104988 }
104986104989
104987- this.draw_content = this.gmaxbin > 0 ;
104990+ this.draw_content = ( this.gmaxbin !== 0) || (this.gminbin !== 0) ;
104988104991 }
104989104992
104990104993 /** @summary Count histogram statistic */
0 commit comments