我正在尝试合并存储在一个目录中的三个 ntuples(只是一个示例,但还有更多),这些目录标记如下:
[1] mc16a_SUSY.root
[2] mc16d_SUSY.root
[3] mc16e_SUSY.root
[4] ......
为此,我使用命令 hadd (hadd outputfile inputfiles..)
os.system(hadd -f Combined_SUSY_SAMPLES.root mc16*SUSY*.root)
对于输出文件,我想将所有文件与文件名中的 mc16 和 SUSY 结合起来
但我收到错误:
hadd Target file: Combined_SUSY_SAMPLES.root
hadd compression setting for all output: 1
hadd Source file 1: mc16*SUSY*.root
Error in <TFile::TFile>: file mc16*SUSY*.root does not exist
Error in <TFileMerger::AddFile>: cannot open file mc16*SUSY*.root
hadd exiting due to error in mc16*SUSY*.root
它指出没有任何文件,mc16*SUSY*.root
但这些文件确实存在。有什么解决办法吗?我在这里先向您的帮助表示感谢。
我使用“*”是因为有很多文件可以单独列出它们。