因此,我尝试并尝试遵循类似这样的问题,但没有成功。
这真的很简单 - 我有一些 .root 文件,可以在 ROOT 中看到直方图,但希望将数据导出为 .txt 或类似文件以便能够在其他程序中对其进行分析。
因此,我尝试并尝试遵循类似这样的问题,但没有成功。
这真的很简单 - 我有一些 .root 文件,可以在 ROOT 中看到直方图,但希望将数据导出为 .txt 或类似文件以便能够在其他程序中对其进行分析。
这是工作示例。读取具有三个分支的根文件,名为 TS、ns 和 nserr。
#include <iostream>
#include "TFile.h"
#include "TTree.h"
#include <fstream>
using namespace std;
void dumpTreeTotxt(){
TFile *f=new TFile("TS0.root"); // opens the root file
TTree *tr=(TTree*)f->Get("tree"); // creates the TTree object
tr->Scan(); // prints the content on the screen
float a,b,c; // create variables of the same type as the branches you want to access
tr->SetBranchAddress("TS",&a); // for all the TTree branches you need this
tr->SetBranchAddress("ns",&b);
tr->SetBranchAddress("nserr",&c);
ofstream myfile;
myfile.open ("example.txt");
myfile << "TS ns nserr\n";
for (int i=0;i<tr->GetEntries();i++){
// loop over the tree
tr->GetEntry(i);
cout << a << " " << b << " "<< c << endl; //print to the screen
myfile << a << " " << b << " "<< c<<"\n"; //write to file
}
myfile.close();
}