-
最近の投稿
最近のコメント
Archive
カテゴリー
メタ情報
月別アーカイブ: 2013年9月
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 … 続きを読む