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 8e653e5 commit 086ac5cCopy full SHA for 086ac5c
demo/node/rntuple_test.js
@@ -0,0 +1,15 @@
1
+import { version, openFile } from 'jsroot';
2
+
3
+import { readHeaderFooter } from 'jsroot/rntuple';
4
5
6
+console.log(`JSROOT version ${version}`);
7
8
9
+let file = await openFile('https://jsroot.gsi.de/files/tmp/ntpl001_staff.root');
10
+let rntuple = await file.readObject('Staff');
11
12
+await readHeaderFooter(rntuple);
13
14
+console.log('some debug info', rntuple.builder?.name);
15
0 commit comments