我在 python 中打开了一个根文件,如下所示:
file = uproot.open('C:\\Users\\me\\Documents\\test.root')
print(file.keys())
[b'evts;1', b'miscAccum;1', b'cal;1', b'configstr;1', b'time;1', b'Plugs;1', b'acc;1']
print(file[b'Plugs'].keys())
[b'veto;1', b'miscAccum;1', b'calfine;1']
一切都好,但如果我尝试探索时间分支,print(file[b'time'].keys())
我会收到一条错误消息
'TVectorT_3c_double_3e_' 对象没有属性 'keys'
如何探索此分支中的值?