We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d673e63 commit 3cb59b2Copy full SHA for 3cb59b2
demo/alice_esd.js
@@ -6,7 +6,7 @@
6
async function extract_geo_tracks(tree, opt) {
7
// as first argument, tree should be provided
8
9
- console.log('CALL async extract_geo_tracks');
+ console.log('CALL async function extract_geo_tracks');
10
11
let handle = await JSROOT.require('tree');
12
@@ -48,7 +48,11 @@ async function extract_geo_tracks(tree, opt) {
48
console.log('Read done num entries', numentry, 'tracks', numtracks);
49
}
50
51
- return handle.treeProcess(tree, selector);
+ await handle.treeProcess(tree, selector);
52
+
53
+ console.log('FINISH extract_geo_tracks');
54
55
+ return lst;
56
57
58
console.log('LOAD alice_esd.js with JSROOT', JSROOT.version);
0 commit comments