/usr/lib/python2.7/dist-packages/lighthisto.py is in python-rivet 1.8.3-1.3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 | # Use posixpath instead of os.path for AIDA path handling to be platform
# independent, i.e. always use "/" as path delimiter.
import posixpath
import os, sys, re, logging
if "ET" not in dir():
try:
import xml.etree.cElementTree as ET
except ImportError:
logging.debug("Could not load module xml.etree.cElementTree,"
" so we're on a Python < 2.5 system."
" Trying to load cElementTree...")
try:
import cElementTree as ET
except ImportError:
logging.warning("Could not load module cElementTree:"
" using slower xml.etree.ElementTree instead!")
import xml.etree.ElementTree as ET
from htmlentitydefs import codepoint2name
unichr2entity = {}
for code, name in codepoint2name.iteritems():
# exclude "&"
if code != 38:
unichr2entity[unichr(code)] = u"&%s;" % (name)
# Using mutable types as (dict, list) as default arguments can have nasty
# side effects.
def htmlescape(text, d=None):
if d is None:
d = unichr2entity
if u"&" in text:
text = text.replace(u"&", u"&")
for key, value in d.iteritems():
if key in text:
text = text.replace(key, value)
return text
# Histo and Bin classes were copied from aida2flat
class Histo(object):
"""Simple container for histograms storing a list of :class:`Bin` instances.
Histogram trees can be read in from AIDA and flat format files with
:meth:`~Histo.fromAIDA` and :meth:`~histo.fromFlat`. These methods
produce dictionaries mapping histogram paths to histograms. For string
representations for AIDA and flat output :meth:`~Histo.asFlat` and
:meth:`~Histo.asAIDA` can be used.
Two different paths for histograms exist:
:attr:`histopath`
The path of the histogram.
:attr:`fullpath`
The full path of the histogram including "/REF" for reference histograms.
Looping over the bins in a histogram can be simply done by::
>>> for b in myhisto:
... # do stuff with Bin b
"""
aidaindent = " "
def __init__(self):
self._bins = []
# the leading AIDA path (including /REF) but not the observable name
self.path = "/"
# the observable name, e.g. d01-x02-y01
self.name = None
# the histogram title
self.title = ''
self.xlabel = ''
self.ylabel = ''
self.annotations = {}
self._sorted = False
def __cmp__(self, other):
"""Sort by $path/$name string"""
return self.fullPath() > other.fullPath()
def __str__(self):
out = "Histogram '%s' with %d bins\n" % (self.fullPath(), self.numBins())
out += "Title: %s\n" % self.title
out += "XLabel: %s\n" % self.xlabel
out += "YLabel: %s\n" % self.ylabel
out += "\n".join([str(b) for b in self.getBins()])
return out
def fullPath(self):
if self.path and self.name:
return posixpath.join(self.path, self.name)
if self.path:
return self.path
if self.name:
return "/" + self.name
return None
fullpath = property(fullPath,
doc="Full AIDA path including leading '/REF' and histogram name")
def histoPath(self):
if self.path.startswith("/REF"):
return self.fullpath[4:]
else:
return self.fullpath
histopath = property(histoPath,
doc="AIDA path but without a leading '/REF'")
def header(self):
out = "# BEGIN PLOT\n"
out += "LogY=1\n"
out += "Title=%s\n" % self.title
out += "XLabel=%s\n" % self.xlabel
out += "YLabel=%s\n" % self.ylabel
out += "# END PLOT\n"
return out
def asFlat(self):
out = "# BEGIN HISTOGRAM %s\n" % self.fullPath()
out += "AidaPath=%s\n" % self.fullPath()
out += "Title=%s\n" % self.title
if self.xlabel:
out += "XLabel=%s\n" % self.xlabel
if self.ylabel:
out += "YLabel=%s\n" % self.ylabel
if self.fullpath and self.fullpath.startswith('/REF'):
out += "PolyMarker=*\n"
out += "ErrorBars=1\n"
for aname, aval in self.annotations.iteritems():
out += "%s=%s\n" % (aname, aval)
out += "## Area: %e\n" % self.area()
out += "## Num bins: %d\n" % self.numBins()
out += "## xlow \txhigh \tval \terrminus\terrplus\n"
out += "\n".join([b.asFlat() for b in self.getBins()])
out += "\n# END HISTOGRAM\n"
return out
def asGnuplot(self):
out = "## HISTOGRAM: %s\n" % self.fullPath()
out += "## Title: %s\n" % self.title
if (self.xlabel!=''):
out += "## XLabel: %s\n" % self.xlabel
if (self.ylabel!=''):
out += "## YLabel: %s\n" % self.ylabel
out += "## Area: %s\n" % self.area()
out += "## Num bins: %d\n" % self.numBins()
out += "## xval \tyval \txlow \txhigh \tylow \tyhigh\n"
out += "\n".join([b.asGnuplot() for b in self.getBins()])
out += "\n# END HISTOGRAM\n"
return out
def asAIDA(self):
ind = self.aidaindent
r = ind + '<dataPointSet name="%s" dimension="2"\n' % (
self.name)
if self.title is not None:
r += ind + ' path="%s" title="%s">\n' % (self.path, htmlescape(self.title))
else:
r += ind + ' path="%s" title="">\n' % (self.path)
if self.xlabel!='':
r += ind + ' <dimension dim="0" title="%s"/>\n' % (htmlescape(self.xlabel))
if self.ylabel!='':
r += ind + ' <dimension dim="1" title="%s"/>\n' % (htmlescape(self.ylabel))
r += ind + " <annotation>\n"
if self.title!='':
r += ind + ' <item key="Title" value="%s" sticky="true"/>\n' % (htmlescape(self.title))
else:
r += ind + ' <item key="Title" value="" sticky="true"/>\n'
r += ind + ' <item key="AidaPath" value="%s" sticky="true"/>\n' % (self.fullPath())
# TODO: FullPath annotation item?
# r += ind + ' <item key="FullPath" value
r += ind + " </annotation>\n"
for b in self:
r += b.asAIDA()
r += ind + "</dataPointSet>\n"
return r
def is2dim(self):
if self.numBins()==0:
return False
return self._bins[0].is2dim()
def numBins(self):
return len(self._bins)
def getBins(self):
if not self._sorted:
self._bins.sort()
self._sorted = True
return self._bins
def setBins(self, bins):
self._bins = bins
self._sorted = False
return self
def addBin(self, bin):
self._bins.append(bin)
self._sorted = False
return self
def getBin(self, index):
if not self._sorted:
self._bins.sort()
self._sorted = True
return self.getBins()[index]
bins = property(getBins, setBins)
def addAnnotation(self, aname, aval):
self.annotations[aname] = aval
return self
def getAnnotation(self, aname):
return self.annotations.get(aname)
def area(self):
return sum([bin.area() for bin in self.bins])
getArea = area
def __iter__(self):
return iter(self.getBins())
def __len__(self):
return len(self._bins)
def __getitem__(self, index):
return self.getBin(index)
def chop(self, *xranges):
"""Return a chopped histogram.
The kept bins are defined by (xstart, xstop) pairs. The first xstart
and last xstop can be None meaning that all is included from the
first or up to the last bin respectively.
Example:
>>> hist.chop((2.5, 5.5), (7.5, None))
"""
if len(xranges) == 0:
raise ValueError("At least one (xstart, xstop) range is needed!")
# check that xranges is
laststop = xranges[0][1]
for xr in xranges[1:]:
if laststop >= xr[0]:
raise ValueError("(xstart, xstop) ranges must be in numerical order!")
laststop = xr[1]
new = Histo()
new.path = self.path
new.name = self.name
new.title = self.title
new.xlabel = self.xlabel
new.ylabel = self.ylabel
irange = 0
curran = xranges[irange]
for b in self:
#lowok = False
#highok = False
br = b.getXRange()
# update the current range used if we exceed the current upper
# limit
while (curran[1] is not None and
irange < len(xranges) - 1 and
br[0] > curran[1]):
irange += 1
curran = xranges[irange]
if ((curran[0] is None or curran[0] <= br[0] or br[0] <= curran[0] <= br[1]) and
(curran[1] is None or curran[1] >= br[1] or br[0] <= curran[1] <= br[1])):
new.addBin(b)
else:
sys.stderr.write("Chopping bin %s: %e\n" % (self.fullPath(), b.getBinCenter()))
return new
def renormalise(self, newarea):
""" Renormalise histo to newarea """
# Construc new histo
new = Histo()
# Use the same metadata
new.path = self.path
new.name = self.name
new.title = self.title
new.xlabel = self.xlabel
new.ylabel = self.ylabel
# The current histogram area
oldarea = self.getArea()
# Iterate over all bins
for b in self:
# Rescale Value, Err+, Err-
newy = b.val * float(newarea) / oldarea
newerrplus = b.errplus * float(newarea) / oldarea
newerrminus = b.errminus * float(newarea) / oldarea
newbin = Bin(b.xlow, b.xhigh, newy, newerrplus, newerrminus, b.focus)
new.addBin(newbin)
return new
@classmethod
def fromDPS(cls, dps):
"""Build a histogram from a xml dataPointSet."""
new = cls()
new.name = dps.get("name")
new.title = dps.get("title")
new.path = dps.get("path")
# # strip /REF from path
# if new.path.startswith("/REF"):
# new.path = new.path[4:]
axes = dps.findall("dimension")
if (len(axes)>=2):
for a in axes:
if (a.get("dim")=="0"):
new.xlabel = a.get("title")
elif (a.get("dim")=="1"):
new.ylabel = a.get("title")
elif (a.get("dim")=="2"):
new.zlabel = a.get("title")
points = dps.findall("dataPoint")
#numbins = len(points)
for binnum, point in enumerate(points):
bin = Bin()
measurements = point.findall("measurement")
for d, m in enumerate(measurements):
val = float(m.get("value"))
down = float(m.get("errorMinus"))
up = float(m.get("errorPlus"))
if d == 0:
low = val - down
high = val + up
bin.setXRange(low, high)
elif (len(measurements) == 2 and d == 1) or (len(measurements) == 3 and d == 2):
bin.val = val
bin.errplus = up
bin.errminus = down
elif (len(measurements) == 3 and d == 1):
low = val - down
high = val + up
bin.setYRange(low, high)
new.addBin(bin)
return new
@classmethod
def fromFlatHisto(cls, stringbuf):
"""Build a histogram from its flat text representation.
"""
desc = {}
new = cls()
for line in stringbuf.splitlines():
line = line.strip()
if not line:
continue
if 'BEGIN HISTOGRAM' in line:
fullpath = line.split('BEGIN HISTOGRAM', 1)[1].strip()
new.path = os.path.dirname(fullpath)
new.name = os.path.basename(fullpath)
continue
elif 'END HISTOGRAM' in line:
break
elif line.startswith("#"):
continue
elif "=" in line:
linearray = line.split("=", 1)
desc[linearray[0]] = linearray[1]
else:
linearray = line.split()
if len(linearray) == 4:
new.addBin(Bin(float(linearray[0]), float(linearray[1]),
float(linearray[2]),
float(linearray[3]), float(linearray[3])))
elif len(linearray) == 5:
new.addBin(Bin(float(linearray[0]), float(linearray[1]),
float(linearray[2]),
float(linearray[4]), float(linearray[3]))) # get +- err ordering right
elif len(linearray) == 6:
new.addBin(Bin(float(linearray[0]), float(linearray[1]),
float(linearray[4]),
float(linearray[5]), float(linearray[5]), None,
float(linearray[2]), float(linearray[3]))) # TODO: right ordering?
else:
sys.stderr.write("Unknown line format in '%s'\n" % line)
## Apply special annotations as histo obj attributes
if desc.has_key("AidaPath"):
new.path, new.name = posixpath.split(desc["AidaPath"])
if desc.has_key("Title"):
new.title = desc["Title"]
if desc.has_key("XLabel"):
new.xlabel = desc["XLabel"]
if desc.has_key("YLabel"):
new.ylabel = desc["YLabel"]
return new
@classmethod
def fromFlat(cls, path):
"""Load all histograms in file 'path' into a histo-path=>histo dict.
The keys of the dictionary are the full paths of the histogram, i.e.
AnalysisID/HistoID, a leading "/REF" is stripped from the keys.
"""
runhistos = []
if path == "-":
f = sys.stdin
else:
f = open(path, "r")
fullpath = None
s = ""
for line in f:
if "BEGIN HISTOGRAM" in line:
fullpath = line.split('BEGIN HISTOGRAM', 1)[1].strip()
# TODO: Really? Here?
if fullpath.startswith("/REF"):
fullpath = fullpath[4:]
if fullpath:
s += line
if "END HISTOGRAM" in line:
runhistos.append(cls.fromFlatHisto(s))
## Reset for next histo
fullpath = None
s = ""
if f is not sys.stdin:
f.close()
return runhistos
@classmethod
def fromAIDA(cls, path):
"""Load all histograms in file 'path' into a histo-path=>histo dict.
The keys of the dictionary are the full paths of the histogram, i.e.
AnalysisID/HistoID, a leading "/REF" is stripped from the keys.
TODO: /REF stripping should really happen in user code...
"""
runhistos = dict()
tree = ET.parse(path)
for dps in tree.findall("dataPointSet"):
fullpath = posixpath.join(dps.get("path"), dps.get("name"))
# TODO: Really? Here?
if fullpath.startswith("/REF"):
fullpath = fullpath[4:]
runhistos[fullpath] = cls.fromDPS(dps)
return runhistos
class Bin(object):
"""A simple container for a binned value with an error."""
aidaindent = " "
__slots__ = ["xlow", "xhigh", "ylow", "yhigh", "val", "errplus", "errminus", "_focus"]
def __init__(self, xlow=None, xhigh=None, val=0, errplus=0, errminus=0, focus=None, ylow=None, yhigh=None):
def _float(f):
if f is None:
return None
return float(f)
self.xlow = _float(xlow)
self.xhigh= _float(xhigh)
self.ylow = _float(ylow)
self.yhigh= _float(yhigh)
self.val = _float(val)
self.errplus = _float(errplus)
self.errminus = _float(errminus)
self._focus= _float(focus)
def __str__(self):
out = "%e to %e: %e +%e-%e" % (self.xlow, self.xhigh,
self.val, self.errplus, self.errminus)
return out
def is2dim(self):
if self.ylow is None or self.yhigh is None:
return False
return True
def asFlat(self):
if not self.is2dim():
out = "%e\t%e\t%e\t%e\t%e" % (self.xlow, self.xhigh, self.val, self.errminus, self.errplus)
else:
out = "%e\t%e\t%e\t%e\t%e\t%e" % (self.xlow, self.xhigh, self.ylow, self.yhigh, self.val, 0.5*(self.errminus+self.errplus))
return out
def asGnuplot(self):
out = "%e\t%e\t%e\t%e\t%e\t%e" % (self.getBinCenter(), self.val,
self.xlow, self.xhigh, self.val-self.errminus,
self.val+self.errplus)
return out
def asAIDA(self):
"Return this bin as AIDA formatted string."
ind = self.aidaindent
out = ind + "<dataPoint>\n"
out += 2*ind + '<measurement value="%e" errorPlus="%e" errorMinus="%e"/>\n' % \
(self.getBinCenter(), .5*(self.xhigh - self.xlow), .5*(self.xhigh - self.xlow))
out += 2*ind + '<measurement value="%e" errorPlus="%e" errorMinus="%e"/>\n' % \
(self.val, self.errplus, self.errminus)
# out += 2*ind + '<measurement value="%e" errorPlus="%e" errorMinus="%e"/>\n' % \
# (.5*(self.yhigh + self.ylow), .5*(self.yhigh - self.ylow), .5*(self.yhigh - self.ylow))
out += ind + "</dataPoint>\n"
return out
def __cmp__(self, other):
"""Sort by mean x value (yeah, I know...)"""
return (self.xlow + self.xhigh) > (other.xlow + other.xhigh)
def getXRange(self):
return (self.xlow, self.xhigh)
def getYRange(self):
return (self.ylow, self.yhigh)
def setXRange(self, xlow, xhigh):
self.xlow = xlow
self.xhigh = xhigh
return self
def setYRange(self, ylow, yhigh):
self.ylow = ylow
self.yhigh = yhigh
return self
def getBinCenter(self):
"""Geometric middle of the bin range."""
return float(self.xhigh + self.xlow)/2
def getFocus(self):
"""Mean x-value of the bin."""
if self._focus is not None:
return self._focus
else:
return (self.xlow + self.xhigh)/2.0
focus = property(getFocus)
def getVal(self):
"""Y-value of the bin."""
return self.val
def area(self):
return self.val * (self.xhigh - self.xlow)
getArea = area
def getErr(self):
"""Get mean of +ve and -ve y-errors."""
return (self.errplus + self.errminus)/2.0
def setErr(self, err):
"""Set both +ve and -ve y-errors simultaneously."""
self.errplus = err
self.errminus = err
return self
err = property(getErr, setErr)
class PlotParser(object):
"""Parser for Rivet's .plot plot info files."""
pat_begin_block = re.compile('^#+ BEGIN ([A-Z0-9_]+) ?(\S+)?')
# temporarily allow several hashes before END for YODA
pat_end_block = re.compile('^#+ END ([A-Z0-9_]+)')
pat_comment = re.compile('^#|^\s*$')
pat_property = re.compile('^(\w+?)=(.*)$')
pat_path_property = re.compile('^(\S+?)::(\w+?)=(.*)$')
pat_paths = {}
def __init__(self, plotpaths=None, addfiles=[]):
"""
Parameters
----------
plotpaths : list of str, optional
The directories to search for .plot files.
The default is to call :command:`rivet-config --datadir` to get
the directory where the .plot files can be found.
Raises
------
ValueError
If `plotpaths` is not specified and calling
:command:`rivet-config` fails.
"""
if plotpaths is None:
plotpaths = []
self.plotpaths = plotpaths
self.addfiles = addfiles
if len(self.plotpaths) == 0:
try:
import rivet
try:
self.plotpaths = rivet.getAnalysisPlotPaths()
except AttributeError:
self.plotpaths = rivet.getAnalysisRefPaths()
except AttributeError, e:
sys.stderr.write("Failed to load Rivet analysis plot/reference paths: %s\n" % e)
sys.stderr.write("Rivet version is too old.\n")
raise ValueError("No plot paths given and rivet module is too old.")
except ImportError, e:
sys.stderr.write("Failed to import rivet module: %s\n" % e)
raise ValueError("No plot paths given and the rivet module could not be loaded!")
def getSection(self, section, hpath):
"""Get a section for a histogram from a .plot file.
Parameters
----------
section : ('PLOT'|'SPECIAL'|'HISTOGRAM')
The section that should be extracted.
hpath : str
The histogram path, i.e. /AnaylsisID/HistogramID .
Todo
----
Caching!
At the moment the result of the lookup is not cached so every
call requires a file to be searched for and opened.
"""
if section not in ['PLOT', 'SPECIAL', 'HISTOGRAM']:
raise ValueError("Can't parse section \'%s\'" %section)
parts = hpath.split("/")
if len(parts) != 3:
raise ValueError("hpath has wrong number of parts (%i)" % (len(parts)))
base = parts[1] + ".plot"
ret = {'PLOT': {}, 'SPECIAL': None, 'HISTOGRAM': {}}
for pidir in self.plotpaths:
plotfile = os.path.join(pidir, base)
self.readHeadersFromFile(plotfile, ret, section, hpath)
# no break, as we can collect settings from multiple .plot files
for extrafile in self.addfiles:
self.readHeadersFromFile(extrafile, ret, section, hpath)
return ret[section]
def readHeadersFromFile(self, plotfile, ret, section, hpath):
"""Get a section for a histogram from a .plot file."""
if os.access(plotfile, os.R_OK):
startreading = False
f = open(plotfile)
for line in f:
m = self.pat_begin_block.match(line)
if m:
tag, pathpat = m.group(1,2)
# pathpat could be a regex
if not self.pat_paths.has_key(pathpat):
self.pat_paths[pathpat] = re.compile(pathpat)
if tag == section and self.pat_paths[pathpat].match(hpath):
startreading = True
if section in ['SPECIAL']:
ret[section] = ''
continue
if not startreading:
continue
if self.isEndMarker(line, section):
startreading = False
continue
elif self.isComment(line):
continue
if section in ['PLOT', 'HISTOGRAM']:
vm = self.pat_property.match(line)
if vm:
prop, value = vm.group(1,2)
#print prop, value
ret[section][prop] = value
elif section in ['SPECIAL']:
ret[section] += line
f.close()
def getHeaders(self, hpath):
"""Get the plot headers for histogram hpath.
This returns the PLOT section.
Parameters
----------
hpath : str
The histogram path, i.e. /AnalysisID/HistogramID .
Returns
-------
plot_section : dict
The dictionary usually contains the 'Title', 'XLabel' and
'YLabel' properties of the respective plot.
See also
--------
:meth:`getSection`
"""
return self.getSection('PLOT', hpath)
def getSpecial(self, hpath):
"""Get a SPECIAL section for histogram hpath.
The SPECIAL section is only available in a few analyses.
Parameters
----------
hpath : str
Histogram path. Must have the form /AnalysisID/HistogramID .
See also
--------
:meth:`getSection`
"""
return self.getSection('SPECIAL', hpath)
def getHistogramOptions(self, hpath):
"""Get a HISTOGRAM section for histogram hpath.
The HISTOGRAM section is only available in a few analyses.
Parameters
----------
hpath : str
Histogram path. Must have the form /AnalysisID/HistogramID .
See also
--------
:meth:`getSection`
"""
return self.getSection('HISTOGRAM', hpath)
def isEndMarker(self, line, blockname):
m = self.pat_end_block.match(line)
return m and m.group(1) == blockname
def isComment(self, line):
return self.pat_comment.match(line) is not None
def updateHistoHeaders(self, hist):
headers = self.getHeaders(hist.histopath)
if headers.has_key("Title"):
hist.title = headers["Title"]
if headers.has_key("XLabel"):
hist.xlabel = headers["XLabel"]
if headers.has_key("YLabel"):
hist.ylabel = headers["YLabel"]
|