CERN ROOT 将数据导出为纯文本

CERN ROOT exporting data to plain text

所以我已经尝试并尝试遵循 this one 等类似问题,但没有成功。

这真的很简单 - 我有一些 .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();
}