-
最近の投稿
最近のコメント
Archive
カテゴリー
メタ情報
「pyROOT」カテゴリーアーカイブ
カーブフィットパラメータの取得
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
fitfunc = TF1("fitfunc", "gaus") # guas, expo, pol1, pol2, etc. fitfunc.SetLineColor(1) fitfunc.SetParameter(0, 100.) # A fitfunc.SetParameter(1, 5.0) # mu fitfunc.SetParameter(2, 0.01) # sigma hist.Fit("fitfunc", "M", "") # function, algorithm, draw option #save fit param with open("fit.log", "w") as fitlog: fitlog.write("# Function: %s\n" % (fitfunc.GetTitle(),)) fitlog.write("# No.\tparam\terror\n") for i in range(fitfunc.GetNpar()): fitlog.write("%s\t%s\t%s\n" % (i, fitfunc.GetParameter(i), fitfunc.GetParError(i))) |
TTree 内の各エントリに対する操作
pyROOT では TTree tree の各エントリー event のある変数 x1 , x2 を得るとき,これでできる
1 2 |
for event in tree: print event.x1, event.x2 |
参考: htt … 続きを読む
pyROOT でヒストグラムの情報を得る操作
既に存在する 1 次元ヒストグラム (h1) のビンの数,ビンの最小値,ビンの最大値を得には次のようにする. (pyRoot ではなく C のときは,メソッドを呼び出す記号は “.” ではなく & … 続きを読む
ROOT のヒストグラムの内容を python のリストとして得る
基本的に ROOT のヒストグラムならROOTの機能 (Draw) で描画して絵を得るのが素直ですが,python の方でいろいろと処理したい場合に便利? ビンの下端の値をリストとして得る [testh.GetBinLo … 続きを読む
カテゴリー: matplotlib, pyROOT, python, ROOT
コメントする
pyROOT tips
Legend の作成
1 2 3 4 5 |
from ROOT import TLegend def setLegend(leg, entries): if isinstance(entries, (list, tuple)): for ent in entries: leg.AddEntry(ent, ent.GetName()) |
使い方
1 2 |
leg = TLegend(0.65, 0.65, 0.85, 0.85) setLegend(leg, (h1, h2, h3)) |
複数のカットを and で連結する [crayon-67e … 続きを読む