Skip to content

Commit e2e3b3b

Browse files
committed
Update changelog
1 parent 17b263c commit e2e3b3b

File tree

2 files changed

+19
-17
lines changed

2 files changed

+19
-17
lines changed

changes.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,19 @@
22

33
## Changes in dev
44
1. Implement simple TTree::Draw over single leaf (#80)
5-
2. Support basic types and several vector types in TTree::Draw
6-
3. Display of TEveTrack(s) and TEvePointSet(s) over drawn geometry (drag and drop)
5+
Support basic types, fixed-size arrays and several vector types in TTree::Draw
6+
2. Display of TEveTrack(s) and TEvePointSet(s) over drawn geometry (drag and drop)
77
Also browsing, toggling, highlight of tracks and hits are done.
8-
4. Let set default geo colors as TGeoManager::DefaultColors() does
9-
5. Let use original ROOT macros to configure visibility of geometry volumes. Like:
8+
3. Let set default geo colors as TGeoManager::DefaultColors() does
9+
4. Let use original ROOT macros to configure visibility of geometry volumes. Like:
1010
&file=files/alice2.root&item=Geometry;1&opt=macro:macros/geomAlice.C
1111
One can set default colors or colors/transperency for selected volumes.
1212
Also volume, selected for drawing in the macro, will be used in the JSROOT
13-
6. Support drawing of TH2Poly class with 'col' and 'lego' options
14-
7. Implement 'CONT', 'ARR' and 'SURF' draw options for TH2 class
15-
8. Support basic drawing of TPolyLine class
16-
9. Interactive axis zooming in 3D with mouse, very much like to 2D
17-
10. Zooming and tool buttons via keyboards
13+
5. Support drawing of TH2Poly class with 'col' and 'lego' options
14+
6. Implement 'CONT', 'ARR' and 'SURF' draw options for TH2 class
15+
7. Support basic drawing of TPolyLine class
16+
8. Interactive axis zooming in 3D with mouse, very much like to 2D
17+
9. Zooming and tool buttons via keyboards
1818

1919

2020
## Changes in 4.6.0

scripts/JSRootPainter.js

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8068,7 +8068,7 @@
80688068
// function used to handle get request for branch/subbranch
80698069

80708070
var bitem = item;
8071-
if (item._usestreamer) bitem = item._parent;
8071+
// if (item._usestreamer) bitem = item._parent;
80728072

80738073
if (option==='inspect')
80748074
return JSROOT.CallBack(get_callback, item, bitem._branch);
@@ -8079,13 +8079,14 @@
80798079

80808080
var b = bitem._branch,
80818081
f = fprnt._file,
8082-
histo = null, break_execution = 0, streamer = null;
8082+
histo = null, break_execution = 0;
8083+
// var streamer = null;
80838084

8084-
if (item._usestreamer) {
8085-
streamer = f.GetStreamer(b.fClassName, b.fClassVersion);
8086-
console.log('Request streamer for', b.fClassName, streamer.length, b.fMaxBaskets);
8087-
if (!streamer) return JSROOT.CallBack(get_callback, item, null);
8088-
}
8085+
// if (item._usestreamer) {
8086+
// streamer = f.GetStreamer(b.fClassName, b.fClassVersion);
8087+
// console.log('Request streamer for', b.fClassName, streamer.length, b.fMaxBaskets);
8088+
// if (!streamer) return JSROOT.CallBack(get_callback, item, null);
8089+
// }
80898090

80908091
function ShowProgress(value) {
80918092
var main_box = document.createElement("p");
@@ -8141,7 +8142,7 @@
81418142

81428143
// first convert raw data
81438144
for (var n=0;n<baskets.length;++n)
8144-
if (streamer) {
8145+
/* if (streamer) {
81458146
var buf = baskets[n].raw, nread = 0, arr = [];
81468147
while ((buf.remain() > 4) && (nread++ < baskets[n].fNevBuf)) {
81478148
var obj = {};
@@ -8158,6 +8159,7 @@
81588159
}
81598160
arrays.push(arr);
81608161
} else
8162+
*/
81618163
if (item._isvector) {
81628164
var buf = baskets[n].raw, nread = 0;
81638165
while ((buf.remain() > 4) && (nread++ < baskets[n].fNevBuf)) {

0 commit comments

Comments
 (0)