方忘河吧 关注:37贴子:659
  • 1回复贴,共1

loop file object

只看楼主收藏回复

void loop(const char* filein="test.root"){ TFile* fin = new TFile(filein) ; if (!fin->IsOpen()) { printf("<E> Cannot open input file %s\n",filein) ; exit(1) ; } TList* list = fin->GetListOfKeys() ; if (!list) { printf("<E> No keys found in file\n") ; exit(1) ; } TIter next(list) ; TKey* key ; TObject* obj ; while ( key = (TKey*)next() ) { obj = key->ReadObj() ; if ( (strcmp(obj->IsA()->GetName(),"TProfile")!=0) && (!obj->InheritsFrom("TH2")) && (!obj->InheritsFrom("TH1")) ) { printf("<W> Object %s is not 1D or 2D histogram : " "will not be converted\n",obj->GetName()) ; } printf("Histo name:%s title:%s\n",obj->GetName(),obj->GetTitle()); }}


1楼2018-06-22 06:04回复
    {
    TFile *f = new TFile("h200.root","recreate");
    TH1F *h = new TH1F("h","h",100,-3,3);
    const int nh = 200;
    TH1F hlist[nh];
    TH1::AddDirectory(kFALSE);
    TRandom r;
    for (Int_t i=0;i<nh;i++) {
    h->Fill(r.Gaus());
    hlist[i] = (TH1F*)h->Clone(Form("h%d",i));
    }
    for (int j=0;j<nh;j++) hlist[j]->Write();
    delete f;
    }


    2楼2018-06-22 06:38
    回复