我正在尝试通过python在根中创建带有分支的树。我有一个.root文件,我正在尝试创建分支,这些分支是我的.root文件的变量(或数据pts)。这是我的尝试:
f = ROOT.TFile('event.root', 'read') #opening the file and creating a file object f
T = ROOT.TTree("T", "simple tree")
#ntuple = ROOT.TNtuple("ntuple","Demo ntuple","px:py:pz:m")
T.Scan("px:py:pz:m")
这给了我
Error in TTreeFormula::Compile: Bad numerical expression : “px”
Error in TTreeFormula::Compile: Bad numerical expression : “py”
Error in TTreeFormula::Compile: Bad numerical expression : “pz”
Error in TTreeFormula::Compile: Bad numerical expression : “m”
Row * px * py * pz * m *
我理解为什么,因为我没有定义变量。因此,我正在浏览示例https://www.niser.ac.in/sercehep2017/notes/RootTutorial_TTree.pdf(幻灯片3),并尝试将应包含在我的.root文件中的变量定义为:
f = ROOT.TFile('event.root', 'read') #opening the file and creating a file object f
T = ROOT.TTree("T", "simple tree")
px_as_floats = float(px)
py_as_float = float(py)
pz_as_float = float(pz)
m_as_float = float(m)
T.Branch("px",&px,"px/F")
T.Branch("py",&py,"py/F")
T.Branch("pz,&pz,"pz/F")
T.Branch("m",&m,"m/F")
但是,我最终遇到此错误:
Traceback (most recent call last):
File “”, line 1, in
File “/mnt/c/1/writeroot.py”, line 17
T.Branch(“px”,&px,“px/F”)
^
SyntaxError: invalid syntax
是否可以用python编写此代码?写作:
T.ROOT.Branch(“px”,&px,“px/F”)
也不起作用。
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/mnt/c/1/writeroot.py", line 17
T.ROOT.Branch("pt1",&pt1,"pt/F")
^
SyntaxError: invalid syntax
如何修复语法。 最终,我试图将.root文件中使用的字典加载到我的树中,然后对字典中的项目进行一些计算。 换句话说,如何从.root文件中提取字典?
当我键入:
当我输入gFile-> ls()时,我得到
TFile ** rdata.root TFile * rdata.root 关键字:TH1F质量; 1质量 关键字:TNtuple tnt; 1 tnt
答案 0 :(得分:1)
除非您尝试进行按位AND运算,否则符号&无效。我假设您要发送指向原始变量的指针。 我们不在python中执行此操作。如果是这种情况,请在Google上查找本地和全局变量。 python中的tl; dr所有可变类型均通过引用传递 我个人会这样写:
T.Branch("px",px,"px/F")
T.Branch("py",py,"py/F")
T.Branch("pz", pz,"pz/F")
T.Branch("m",m,"m/F")