We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 14717ac commit ce2a14eCopy full SHA for ce2a14e
1 file changed
modules/rntuple.mjs
@@ -1137,6 +1137,17 @@ class TDrawSelectorTuple extends TDrawSelector {
1137
/** @summary Returns true if field can be used as array */
1138
isArrayBranch(/* tuple, br */) { return false; }
1139
1140
+ /** @summary Process entry */
1141
+ Process(entry) {
1142
+ for (let n = 0; n < this.numBranches(); ++n) {
1143
+ const name = this.nameOfBranch(n);
1144
+ if (typeof this.tgtobj[name] === 'bigint')
1145
+ this.tgtobj[name] = Number(this.tgtobj[name]);
1146
+ }
1147
+
1148
+ super.Process(entry);
1149
1150
1151
} // class TDrawSelectorTuple
1152
1153
0 commit comments