/cvi/RedPitaya/soccli/H1Dload.cxx |
---|
35,7 → 35,7 |
h1d->SetTitle(""); |
h1d->GetXaxis()->SetTitle(h->titlex); |
h1d->GetYaxis()->SetTitle(h->titley); |
printf("TH1D name=%s %s %s %s\nnx=%d %f %f \n",h->name, h->title,h->titlex, h->titley, |
printf("TH1D name='%s' title='%s' x='%s' y='%s'\nnx=%d min=%f max=%f \n",h->name, h->title,h->titlex, h->titley, |
h->nx, h->minx,h->minx+h->nx*h->stepx); |
52,8 → 52,10 |
gStyle->SetOptStat(0); |
h1d->Draw("colz"); |
char hname[100]; |
sprintf(hname,"%s.pdf",fname); |
gPad->SaveAs(hname); |
h1d->FitPanel(); |
return 0; |
} |