问题标签 [rootpy]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
1 回答
765 浏览

pyroot - 安装 rootpy 时出错:无法导入 ROOT。是否在启用 PyROOT 的情况下安装了 ROOT?

我是 10.13.4 Mac 用户,我通过运行从https://root.cern.ch/content/release-61400下载的 dmg 文件安装了 ROOT 6.14.00 。然后我尝试通过

sudo pip install rootpy

它给了我错误

ROOT 无法导入。是否在启用 PyROOT 的情况下安装了 ROOT?


命令“python setup.py egg_info”在 /private/tmp/pip-install-Idx6tf/rootpy/ 中失败,错误代码为 1

我不知道发生了什么,但我看到 root_v6.14.00 位于 Application/ 文件夹中(我看到文档说 pyROOT 默认处于打开状态),并且我的 Mac 上安装了 python 2.7.10。似乎没有在线文档可以解决此问题。我想知道是否有人知道发生了什么,或者我最好在虚拟机上的 ubuntu 上安装 rootpy?

0 投票
1 回答
334 浏览

hdf5 - 将 ROOT 树转换为 HDF5

我在 ROOT 中有一个 TTree,其中包含 1000 个事件和与每个事件关联的 15 个变量。我想将其全部转换为 hdf5 数据集。如何在 HDF5 组中组织我的数据,以便我可以按事件编号和变量访问数据(例如,如果我想要来自“动能”变量的所有数据,则针对所有事件)?注意:我已经尝试过 root2hdf5 转换工具,但这不适用于具有数组/复合数据类型的分支。