Loading [MathJax]/extensions/tex2jax.js
|
ROOT
Reference Guide |
|
Go to the documentation of this file.
25vec = ROOT.std.vector(
"float")(2)
28print(
"Content of the ROOT vector object: {}".format([x
for x
in vec]))
31array = np.asarray(vec)
32print(
"Content of the associated numpy array: {}".format([x
for x
in array]))
39 "Content of the numpy array after changing the first entry of the ROOT vector: {}".
40 format([x
for x
in array]))
43print(
"Mean of the numpy array entries: {}".format(np.mean(array)))