CMS 3D CMS Logo

Classes | Functions | Variables
create_public_lumi_plots Namespace Reference

Classes

class  LumiDataBlock
 
class  LumiDataBlockCollection
 
class  LumiDataPoint
 

Functions

def AtMidnight (datetime_in)
 
def AtMidWeek (datetime_in)
 
def CacheFilePath (cache_file_dir, day=None)
 
def checkCertification (run_number, ls)
 
def GetEnergyPerNucleonScaleFactor (amodetag)
 
def GetUnits (year, accel_mode, mode)
 
def GetXLocator (ax)
 
def loadCertificationJSON (json_file_name)
 
def NumDaysInYear (year)
 
def PlotAllYears (lumi_data_by_day_per_year, mode)
 
def TweakPlot (fig, ax, time_range, add_extra_head_room=False)
 

Variables

 accel_mode
 
 action
 
 add_extra_head_room
 
 amodetag_bug_workaround
 
 arg_parser
 
 args
 
 aspect_ratio
 
 ax
 
 bbox_to_anchor
 
 beam_energy
 
 beam_energy_defaults
 
 beam_energy_from_cfg
 
 beam_energy_tmp
 
 beam_fluctuation
 
 beam_fluctuation_defaults
 
 beam_fluctuation_from_cfg
 
 beam_fluctuation_tmp
 
 bin_edges
 
 cache_file_dir
 
 cache_file_path
 
 cache_file_tmp
 
 certification_data
 
 cfg_defaults
 
 cfg_parser
 
 cmd
 
 cms_energy
 
 cms_energy_str
 
 color
 
 color_by_year
 
 color_fill_cert
 
 color_fill_del
 
 color_fill_peak
 
 color_fill_rec
 
 color_line_cert
 
 color_line_del
 
 color_line_peak
 
 color_line_rec
 
 color_scheme
 
 color_scheme_names
 
 color_scheme_names_tmp
 
 columnspacing
 
 config_file_name
 
 cumulative
 
 date_begin
 
 date_begin_day_str
 
 date_begin_str
 
 date_end
 
 date_end_str
 
 DATE_FMT_STR_AXES
 
 DATE_FMT_STR_CFG
 
 DATE_FMT_STR_LUMICALC
 
 DATE_FMT_STR_LUMICALC_DAY
 
 DATE_FMT_STR_OUT
 
 date_previous_str
 
 day_cur
 
 day_hi
 
 day_lo
 
 days
 
 desc_str
 
 description
 
 dummy_file
 
 edgecolor
 
 exp
 
 facecolor
 
 False
 
 fig
 
 figsize
 
 file_suffix
 
 fontproperties
 
 fontsize
 
 frameon
 
 head_room
 
 help
 
 helper_str
 
 hist
 
 histtype
 
 horizontalalignment
 
 ignore_cache
 
 in_file
 
 is_log
 
 json_file_name
 
 KNOWN_ACCEL_MODES
 
 label
 
 labelspacing
 
 last_day_from_cache
 
 LEAD_SCALE_FACTOR
 
 leg
 
 lines
 
 lines_ori
 
 lines_to_be_kept
 
 linestyle
 
 loc
 
 log
 
 log_setting
 
 log_suffix
 
 logo_name
 
 lumi_data
 
 lumi_data_by_day
 
 lumi_data_by_day_per_year
 
 lumi_data_by_week
 
 lumi_data_by_week_per_year
 
 lumi_data_by_year
 
 lumi_data_day
 
 lumicalc_cmd
 
 lumicalc_flags
 
 lumicalc_flags_from_cfg
 
 lumicalc_script
 
 marker
 
 markersize
 
 max_del
 
 max_inst
 
 max_rec
 
 min_del
 
 min_val
 
 ncol
 
 newfile
 
 num_cols
 
 num_days
 
 NUM_SEC_IN_LS
 
 num_weeks
 
 options
 
 oracle_connection_string
 
 output
 
 output_0
 
 particle_type_str
 
 particle_type_strings
 
 path_name
 
 scale_factor_2010
 
 seconds
 
 sep_line
 
 status
 
 str_begin
 
 str_begin_ultimate
 
 str_end
 
 textcoords
 
 time_begin
 
 time_begin_ultimate
 
 time_end
 
 times
 
 times_tmp
 
 tmp
 
 tmp_leg
 
 tmp_str
 
 tmp_x
 
 tmp_y
 
 today
 
 tot_cert
 
 tot_del
 
 tot_rec
 
 transAxes
 
 transform
 
 units
 
 use_cache
 
 use_oracle
 
 verbose
 
 verticalalignment
 
 week
 
 week_begin
 
 week_end
 
 week_hi
 
 week_lo
 
 weeks
 
 weights
 
 weights_cert_for_cum
 
 weights_del
 
 weights_del_for_cum
 
 weights_del_inst
 
 weights_inst
 
 weights_rec
 
 weights_rec_for_cum
 
 weights_tmp
 
 width
 
 xy
 
 xycoords
 
 xytext
 
 year
 
 year_begin
 
 year_end
 
 years
 
 zoom
 

Function Documentation

def create_public_lumi_plots.AtMidnight (   datetime_in)

Definition at line 292 of file create_public_lumi_plots.py.

Referenced by PlotAllYears().

292 def AtMidnight(datetime_in):
293  res = datetime.datetime.combine(datetime_in.date(), datetime.time())
294  # End of AtMidnight().
295  return res
296 
def create_public_lumi_plots.AtMidWeek (   datetime_in)

Definition at line 299 of file create_public_lumi_plots.py.

299 def AtMidWeek(datetime_in):
300  # NOTE: The middle of the week is on Thursday according to our
301  # definition
302  tmp = datetime_in.date()
303  date_tmp = tmp - \
304  datetime.timedelta(days=tmp.weekday()) + \
305  datetime.timedelta(days=3)
306  res = datetime.datetime.combine(date_tmp, datetime.time())
307  # End of AtMidWeek().
308  return res
309 
def create_public_lumi_plots.CacheFilePath (   cache_file_dir,
  day = None 
)

Definition at line 283 of file create_public_lumi_plots.py.

283 def CacheFilePath(cache_file_dir, day=None):
284  cache_file_path = os.path.abspath(cache_file_dir)
285  if day:
286  cache_file_name = "lumicalc_cache_%s.csv" % day.isoformat()
287  cache_file_path = os.path.join(cache_file_path, cache_file_name)
288  return cache_file_path
289 
def CacheFilePath(cache_file_dir, day=None)
def create_public_lumi_plots.checkCertification (   run_number,
  ls 
)
Check if this run and LS are certified as good and return a boolean parameter.

Definition at line 468 of file create_public_lumi_plots.py.

468 def checkCertification(run_number, ls):
469  """Check if this run and LS are certified as good and return a boolean parameter."""
470  try:
471  ls_ranges = certification_data[run_number]
472  for ranges in ls_ranges:
473  if (ls >= ranges[0]) and (ls <= ranges[1]):
474  return True
475  except KeyError:
476  return False
477 
478  return False
479 
def checkCertification(run_number, ls)
def create_public_lumi_plots.GetEnergyPerNucleonScaleFactor (   amodetag)

Definition at line 382 of file create_public_lumi_plots.py.

Referenced by PlotAllYears().

383  # DEBUG DEBUG DEBUG
384  assert amodetag in ["IONPHYS", "PAPHYS"]
385  # DEBUG DEBUG DEBUG end
386 
387  res = LEAD_SCALE_FACTOR
388  if amodetag == "PAPHYS":
389  res = math.sqrt(res)
390 
391  # End of GetEnergyPerNucleonScaleFactor().
392  return res
393 
def create_public_lumi_plots.GetUnits (   year,
  accel_mode,
  mode 
)

Definition at line 312 of file create_public_lumi_plots.py.

Referenced by PlotAllYears().

312 def GetUnits(year, accel_mode, mode):
313 
314  units_spec = {
315  "PROTPHYS" : {
316  2010 : {
317  "cum_day" : "pb^{-1}",
318  "cum_week" : "pb^{-1}",
319  "cum_year" : "pb^{-1}",
320  "max_inst" : "Hz/ub",
321  },
322  2011 : {
323  "cum_day" : "pb^{-1}",
324  "cum_week" : "pb^{-1}",
325  "cum_year" : "fb^{-1}",
326  "max_inst" : "Hz/nb",
327  },
328  2012 : {
329  "cum_day" : "pb^{-1}",
330  "cum_week" : "fb^{-1}",
331  "cum_year" : "fb^{-1}",
332  "max_inst" : "Hz/nb",
333  },
334  2013 : {
335  "cum_day" : "pb^{-1}",
336  "cum_week" : "pb^{-1}",
337  "cum_year" : "pb^{-1}",
338  "max_inst" : "Hz/ub",
339  }
340  },
341  "IONPHYS" : {
342  2011 : {
343  "cum_day" : "ub^{-1}",
344  "cum_week" : "ub^{-1}",
345  "cum_year" : "ub^{-1}",
346  "max_inst" : "Hz/mb",
347  }
348  },
349  "PAPHYS" : {
350  2013 : {
351  "cum_day" : "nb^{-1}",
352  "cum_week" : "nb^{-1}",
353  "cum_year" : "nb^{-1}",
354  "max_inst" : "Hz/mb",
355  }
356  }
357  }
358 
359  units = None
360 
361  try:
362  units = units_spec[accel_mode][year][mode]
363  except KeyError:
364  if mode == "cum_day":
365  units = "pb^{-1}"
366  elif mode == "cum_week":
367  units = "pb^{-1}"
368  elif mode == "cum_year":
369  units = "fb^{-1}"
370  elif mode == "max_inst":
371  units = "Hz/ub"
372 
373  # DEBUG DEBUG DEBUG
374  assert not units is None
375  # DEBUG DEBUG DEBUG end
376 
377  # End of GetUnits().
378  return units
379 
def GetUnits(year, accel_mode, mode)
def create_public_lumi_plots.GetXLocator (   ax)
Pick a DateLocator based on the range of the x-axis.

Definition at line 408 of file create_public_lumi_plots.py.

References min(), and TweakPlot().

Referenced by TweakPlot().

408 def GetXLocator(ax):
409  """Pick a DateLocator based on the range of the x-axis."""
410  (x_lo, x_hi) = ax.get_xlim()
411  num_days = x_hi - x_lo
412  min_num_ticks = min(num_days, 5)
413  locator = matplotlib.dates.AutoDateLocator(minticks=min_num_ticks,
414  maxticks=None)
415  # End of GetLocator().
416  return locator
417 
T min(T a, T b)
Definition: MathUtil.h:58
def create_public_lumi_plots.loadCertificationJSON (   json_file_name)

Definition at line 482 of file create_public_lumi_plots.py.

References createfilelist.int, join(), and harvestTrackValidationPlots.str.

482 def loadCertificationJSON(json_file_name):
483 
484  full_file = open(json_file_name, "r")
485  full_file_content = ["".join(l) for l in full_file.readlines()]
486  full_object = cjson.decode(full_file_content[0])
487 
488  # Now turn this into a dictionary for easier handling.
489  tmp = full_object.keys()
490  tmp = [int(i) for i in tmp]
491  run_list = sorted(tmp)
492  certification_data = {}
493  for run in run_list:
494  ls_ranges = full_object.get(str(run), None)
495  certification_data[run] = ls_ranges
496 
497  return certification_data
498 
static std::string join(char **cmd)
Definition: RemoteFile.cc:18
def loadCertificationJSON(json_file_name)
def create_public_lumi_plots.NumDaysInYear (   year)
Returns the number of days in the given year.

Definition at line 396 of file create_public_lumi_plots.py.

Referenced by PlotAllYears().

396 def NumDaysInYear(year):
397  """Returns the number of days in the given year."""
398 
399  date_lo = datetime.date(year, 1, 1)
400  date_hi = datetime.date(year + 1, 1, 1)
401  num_days = (date_hi - date_lo).days
402 
403  # End of NumDaysInYear().
404  return num_days
405 
def create_public_lumi_plots.PlotAllYears (   lumi_data_by_day_per_year,
  mode 
)
Mode 1: years side-by-side, mode 2: years overlaid.

Definition at line 1555 of file create_public_lumi_plots.py.

References public_plots_tools.AddLogo(), AtMidnight(), GetEnergyPerNucleonScaleFactor(), GetUnits(), join(), public_plots_tools.LatexifyUnits(), NumDaysInYear(), public_plots_tools.SavePlot(), harvestTrackValidationPlots.str, time_begin, and TweakPlot().

1555  def PlotAllYears(lumi_data_by_day_per_year, mode):
1556  """Mode 1: years side-by-side, mode 2: years overlaid."""
1557 
1558  units = GetUnits(years[-1], accel_mode, "cum_year")
1559 
1560  scale_factor_2010 = 100.
1561 
1562  # Loop over all color schemes and plot.
1563  for color_scheme_name in color_scheme_names:
1564 
1565  print " color scheme '%s'" % color_scheme_name
1566 
1567  color_scheme = ColorScheme(color_scheme_name)
1568  color_by_year = color_scheme.color_by_year
1569  logo_name = color_scheme.logo_name
1570  file_suffix = color_scheme.file_suffix
1571 
1572  for type in ["lin", "log"]:
1573  is_log = (type == "log")
1574 
1575  if mode == 1:
1576  aspect_ratio = matplotlib.figure.figaspect(1. / 2.5)
1577  fig = plt.figure(figsize=aspect_ratio)
1578  else:
1579  fig = plt.figure()
1580  ax = fig.add_subplot(111)
1581 
1582  time_begin_ultimate = lumi_data_by_day_per_year[years[0]].time_begin()
1583  str_begin_ultimate = time_begin_ultimate.strftime(DATE_FMT_STR_OUT)
1584  for (year_index, year) in enumerate(years):
1585 
1586  lumi_data = lumi_data_by_day_per_year[year]
1587  lumi_data.sort()
1588  times_tmp = [AtMidnight(i) for i in lumi_data.times()]
1589  # For the plots showing all years overlaid, shift
1590  # all but the first year forward.
1591  # NOTE: Years list is supposed to be sorted.
1592  if mode == 2:
1593  if year_index > 0:
1594  for y in years[:year_index]:
1595  num_days = NumDaysInYear(y)
1596  time_shift = datetime.timedelta(days=num_days)
1597  times_tmp = [(i - time_shift) \
1598  for i in times_tmp]
1599  times = [matplotlib.dates.date2num(i) for i in times_tmp]
1600  # DEBUG DEBUG DEBUG
1601  for i in xrange(len(times) - 1):
1602  assert times[i] < times[i + 1]
1603  # DEBUG DEBUG DEBUG end
1604  weights_del = lumi_data.lum_del(units)
1605  weights_del_cum = [0.] * len(weights_del)
1606  tot_del = 0.
1607  for (i, val) in enumerate(weights_del):
1608  tot_del += val
1609  weights_del_cum[i] = tot_del
1610  if not beam_energy_from_cfg:
1611  beam_energy = beam_energy_defaults[accel_mode][year]
1612  cms_energy = 2. * beam_energy
1613  cms_energy_str = "???"
1614  if accel_mode == "PROTPHYS":
1615  width = 0
1616  if year == 2013:
1617  width = 2
1618  cms_energy_str = "%.*f TeV" % \
1619  (width, 1.e-3 * cms_energy)
1620  elif accel_mode in ["IONPHYS", "PAPHYS"]:
1621  cms_energy_str = "%.2f TeV/nucleon" % \
1622  (1.e-3 * GetEnergyPerNucleonScaleFactor(accel_mode) * cms_energy)
1623 
1624  # NOTE: Special case for 2010.
1625  label = None
1626  if year == 2010:
1627  label = r"%d, %s, %.1f %s" % \
1628  (year, cms_energy_str,
1629  1.e3 * tot_del,
1630  LatexifyUnits("pb^{-1}"))
1631  else:
1632  label = r"%d, %s, %.1f %s" % \
1633  (year, cms_energy_str, tot_del,
1634  LatexifyUnits(units))
1635 
1636  # NOTE: Special case for 2010
1637  weights_tmp = None
1638  if year == 2010:
1639  weights_tmp = [scale_factor_2010 * i \
1640  for i in weights_del_cum]
1641  else:
1642  weights_tmp = weights_del_cum
1643  ax.plot(times, weights_tmp,
1644  color=color_by_year[year],
1645  marker="none", linestyle="solid",
1646  linewidth=4,
1647  label=label)
1648  if is_log:
1649  ax.set_yscale("log")
1650 
1651  # NOTE: Special case for 2010.
1652  if year == 2010:
1653  ax.annotate(r"$\times$ %.0f" % scale_factor_2010,
1654  xy=(times[-1], weights_tmp[-1]),
1655  xytext=(5., -2.),
1656  xycoords="data", textcoords="offset points")
1657 
1658  # BUG BUG BUG
1659  # Needs work...
1660  time_begin = lumi_data.time_begin()
1661  time_end = lumi_data.time_end()
1662  str_begin = time_begin.strftime(DATE_FMT_STR_OUT)
1663  str_end = time_end.strftime(DATE_FMT_STR_OUT)
1664  if mode == 1:
1665  time_begin = datetime.datetime(years[0], 1, 1, 0, 0, 0)
1666  time_end = datetime.datetime(years[-1], 12, 31, 23, 59,59)
1667  else:
1668  time_begin = datetime.datetime(years[0], 1, 1, 0, 0, 0)
1669  time_end = datetime.datetime(years[0], 12, 31, 23, 59,59)
1670  # BUG BUG BUG end
1671 
1672  num_cols = None
1673  if mode == 1:
1674  num_cols = len(years)
1675  tmp_x = 0.095
1676  tmp_y = .95
1677  else:
1678  num_cols = 1
1679  tmp_x = 0.175
1680  tmp_y = 1.01
1681  leg = ax.legend(loc="upper left", bbox_to_anchor=(tmp_x, 0., 1., tmp_y),
1682  frameon=False, ncol=num_cols)
1683  for t in leg.get_texts():
1684  t.set_font_properties(FONT_PROPS_TICK_LABEL)
1685 
1686  # Set titles and labels.
1687  fig.suptitle(r"CMS Integrated Luminosity, %s" % particle_type_str,
1688  fontproperties=FONT_PROPS_SUPTITLE)
1689  ax.set_title("Data included from %s to %s UTC \n" % \
1690 # (str_begin, str_end),
1691  (str_begin_ultimate, str_end),
1692  fontproperties=FONT_PROPS_TITLE)
1693  ax.set_xlabel(r"Date (UTC)", fontproperties=FONT_PROPS_AX_TITLE)
1694  ax.set_ylabel(r"Total Integrated Luminosity (%s)" % \
1695  LatexifyUnits(units),
1696  fontproperties=FONT_PROPS_AX_TITLE)
1697 
1698  # Add the logo.
1699  zoom = 1.7
1700  if mode == 1:
1701  zoom = .95
1702  AddLogo(logo_name, ax, zoom=zoom)
1703  extra_head_room = 0
1704  if is_log:
1705  if mode == 1:
1706  extra_head_room = 1
1707  elif mode == 2:
1708  extra_head_room = 2
1709 # TweakPlot(fig, ax, (time_begin, time_end),
1710  TweakPlot(fig, ax, (time_begin_ultimate, time_end),
1711  add_extra_head_room=extra_head_room)
1712 
1713  log_suffix = ""
1714  if is_log:
1715  log_suffix = "_log"
1716  SavePlot(fig, "int_lumi_cumulative_%s_%d%s%s" % \
1717  (particle_type_str.lower(), mode,
1718  log_suffix, file_suffix))
1719 
def LatexifyUnits(units_in)
def PlotAllYears(lumi_data_by_day_per_year, mode)
def TweakPlot(fig, ax, time_range, add_extra_head_room=False)
def AddLogo(logo_name, ax, zoom=1.2)
def GetUnits(year, accel_mode, mode)
def SavePlot(fig, file_name_base)
def create_public_lumi_plots.TweakPlot (   fig,
  ax,
  time_range,
  add_extra_head_room = False 
)

Definition at line 421 of file create_public_lumi_plots.py.

References GetXLocator().

Referenced by GetXLocator(), and PlotAllYears().

421  add_extra_head_room=False):
422 
423  # Fiddle with axes ranges etc.
424  (time_begin, time_end) = time_range
425  ax.relim()
426  ax.autoscale_view(False, True, True)
427  for label in ax.get_xticklabels():
428  label.set_ha("right")
429  label.set_rotation(30.)
430 
431  # Bit of magic here: increase vertical scale by one tick to make
432  # room for the legend.
433  if add_extra_head_room:
434  y_ticks = ax.get_yticks()
435  (y_min, y_max) = ax.get_ylim()
436  is_log = (ax.get_yscale() == "log")
437  y_max_new = y_max
438  if is_log:
439  tmp = y_ticks[-1] / y_ticks[-2]
440  y_max_new = y_max * math.pow(tmp, add_extra_head_room)
441  else:
442  tmp = y_ticks[-1] - y_ticks[-2]
443  y_max_new = y_max + add_extra_head_room * tmp
444  ax.set_ylim(y_min, y_max_new)
445 
446  # Add a second vertical axis on the right-hand side.
447  ax_sec = ax.twinx()
448  ax_sec.set_ylim(ax.get_ylim())
449  ax_sec.set_yscale(ax.get_yscale())
450 
451  for ax_tmp in fig.axes:
452  for sub_ax in [ax_tmp.xaxis, ax_tmp.yaxis]:
453  for label in sub_ax.get_ticklabels():
454  label.set_font_properties(FONT_PROPS_TICK_LABEL)
455 
456  ax.set_xlim(time_begin, time_end)
457 
458  locator = GetXLocator(ax)
459  ax.xaxis.set_major_locator(locator)
460  formatter = matplotlib.dates.DateFormatter(DATE_FMT_STR_AXES)
461  ax.xaxis.set_major_formatter(formatter)
462 
463  fig.subplots_adjust(top=.85, bottom=.14, left=.13, right=.91)
464  # End of TweakPlot().
465 

Variable Documentation

create_public_lumi_plots.accel_mode

Definition at line 546 of file create_public_lumi_plots.py.

create_public_lumi_plots.action

Definition at line 506 of file create_public_lumi_plots.py.

create_public_lumi_plots.add_extra_head_room

Definition at line 1272 of file create_public_lumi_plots.py.

create_public_lumi_plots.amodetag_bug_workaround

Definition at line 554 of file create_public_lumi_plots.py.

create_public_lumi_plots.arg_parser

Definition at line 505 of file create_public_lumi_plots.py.

create_public_lumi_plots.args

Definition at line 510 of file create_public_lumi_plots.py.

create_public_lumi_plots.aspect_ratio

Definition at line 1749 of file create_public_lumi_plots.py.

create_public_lumi_plots.ax
create_public_lumi_plots.bbox_to_anchor

Definition at line 1109 of file create_public_lumi_plots.py.

create_public_lumi_plots.beam_energy

Definition at line 563 of file create_public_lumi_plots.py.

create_public_lumi_plots.beam_energy_defaults

Definition at line 647 of file create_public_lumi_plots.py.

create_public_lumi_plots.beam_energy_from_cfg

Definition at line 564 of file create_public_lumi_plots.py.

create_public_lumi_plots.beam_energy_tmp

Definition at line 560 of file create_public_lumi_plots.py.

create_public_lumi_plots.beam_fluctuation

Definition at line 576 of file create_public_lumi_plots.py.

create_public_lumi_plots.beam_fluctuation_defaults

Definition at line 656 of file create_public_lumi_plots.py.

create_public_lumi_plots.beam_fluctuation_from_cfg

Definition at line 577 of file create_public_lumi_plots.py.

create_public_lumi_plots.beam_fluctuation_tmp

Definition at line 573 of file create_public_lumi_plots.py.

create_public_lumi_plots.bin_edges

Definition at line 1030 of file create_public_lumi_plots.py.

Referenced by MuIsoValidation.bookHistograms().

create_public_lumi_plots.cache_file_dir

Definition at line 539 of file create_public_lumi_plots.py.

create_public_lumi_plots.cache_file_path

Definition at line 768 of file create_public_lumi_plots.py.

create_public_lumi_plots.cache_file_tmp

Definition at line 769 of file create_public_lumi_plots.py.

create_public_lumi_plots.certification_data

Definition at line 632 of file create_public_lumi_plots.py.

create_public_lumi_plots.cfg_defaults

Definition at line 518 of file create_public_lumi_plots.py.

create_public_lumi_plots.cfg_parser

Definition at line 528 of file create_public_lumi_plots.py.

create_public_lumi_plots.cmd

Definition at line 810 of file create_public_lumi_plots.py.

create_public_lumi_plots.cms_energy

Definition at line 1006 of file create_public_lumi_plots.py.

create_public_lumi_plots.cms_energy_str

Definition at line 1007 of file create_public_lumi_plots.py.

create_public_lumi_plots.color

Definition at line 1801 of file create_public_lumi_plots.py.

Referenced by Vispa.Views.LineDecayView.LineDecayContainer.addDecayLine(), SiStripDetVOffTrendPlotter.analyze(), HcalLutAnalyzer.analyze(), LaserSorter.analyze(), FWCaloDataHistProxyBuilder.assertCaloDataSlice(), FWHFTowerProxyBuilderBase.assertCaloDataSlice(), FWHGTowerProxyBuilderBase.assertCaloDataSlice(), FWSecVertexProxyBuilder.build(), FWSecVertexCandidateProxyBuilder.build(), FWTrackHitsDetailView.build(), FWConvTrackHitsDetailView.build(), FWPFCandidatesLegoProxyBuilder.build(), FWPFPatJetLegoProxyBuilder< T >.build(), FWPFEcalRecHitLegoProxyBuilder.build(), FWCandidateHGCalLegoProxyBuilder.build(), FWCaloDataProxyBuilderBase.build(), FWCandidateLegoProxyBuilder.build(), FWTrackResidualDetailView.build(), FWVertexCandidateProxyBuilder.build(), FWVertexProxyBuilder.build(), FWTauProxyBuilderBase.buildBaseTau(), FWGEMSegmentProxyBuilder.buildViewType(), FWME0RecHitProxyBuilder.buildViewType(), FWRPCRecHitProxyBuilder.buildViewType(), FWGEMRecHitProxyBuilder.buildViewType(), FWJetProxyBuilder.buildViewType(), cert_plot(), FWModelContextMenuHandler.chosenItem(), CmsShowEDI.CloseWindow(), SiPixelUtility.createStatusLegendMessages(), TrackerMap.drawApvPair(), TrackerMap.drawCcu(), TrackerMap.drawHV2(), TrackerMap.drawHV3(), TrackerMap.drawModule(), TrackerMap.drawPalette(), TrackerMap.drawPsu(), SiPixelUtility.fillPaveText(), FWColorPopup.FWColorPopup(), FWECALCaloDataDetailViewBuilder.FWECALCaloDataDetailViewBuilder(), LMFRunIOV.getColor(), EcalCondDBInterface.getDateHandler(), FWProxyBuilderBase.getHaveWindow(), FWTGeoRecoGeometryESProducer.GetMedium(), FWCaloDataProxyBuilderBase.modelChanges(), FWJetProxyBuilder.requestCommon(), LMFColoredTable.setColor(), FWEventItemsManager.setFrom(), GFHistManager.SetLegendEntryOption(), FWPFBlockProxyBuilder.setupClusterElement(), and FWPFClusterLegoProxyBuilder.sharedBuild().

create_public_lumi_plots.color_by_year

Definition at line 1742 of file create_public_lumi_plots.py.

create_public_lumi_plots.color_fill_cert

Definition at line 1070 of file create_public_lumi_plots.py.

create_public_lumi_plots.color_fill_del

Definition at line 1068 of file create_public_lumi_plots.py.

create_public_lumi_plots.color_fill_peak

Definition at line 1071 of file create_public_lumi_plots.py.

create_public_lumi_plots.color_fill_rec

Definition at line 1069 of file create_public_lumi_plots.py.

create_public_lumi_plots.color_line_cert

Definition at line 1074 of file create_public_lumi_plots.py.

create_public_lumi_plots.color_line_del

Definition at line 1072 of file create_public_lumi_plots.py.

create_public_lumi_plots.color_line_peak

Definition at line 1075 of file create_public_lumi_plots.py.

create_public_lumi_plots.color_line_rec

Definition at line 1073 of file create_public_lumi_plots.py.

create_public_lumi_plots.color_scheme

Definition at line 1067 of file create_public_lumi_plots.py.

create_public_lumi_plots.color_scheme_names

Definition at line 537 of file create_public_lumi_plots.py.

create_public_lumi_plots.color_scheme_names_tmp

Definition at line 536 of file create_public_lumi_plots.py.

create_public_lumi_plots.columnspacing

Definition at line 1832 of file create_public_lumi_plots.py.

create_public_lumi_plots.config_file_name

Definition at line 515 of file create_public_lumi_plots.py.

create_public_lumi_plots.cumulative

Definition at line 1226 of file create_public_lumi_plots.py.

Referenced by ConfigurableAnalysis.filter().

create_public_lumi_plots.date_begin

Definition at line 588 of file create_public_lumi_plots.py.

create_public_lumi_plots.date_begin_day_str

Definition at line 772 of file create_public_lumi_plots.py.

create_public_lumi_plots.date_begin_str

Definition at line 771 of file create_public_lumi_plots.py.

create_public_lumi_plots.date_end

Definition at line 590 of file create_public_lumi_plots.py.

create_public_lumi_plots.date_end_str

Definition at line 773 of file create_public_lumi_plots.py.

create_public_lumi_plots.DATE_FMT_STR_AXES

Definition at line 59 of file create_public_lumi_plots.py.

create_public_lumi_plots.DATE_FMT_STR_CFG

Definition at line 60 of file create_public_lumi_plots.py.

create_public_lumi_plots.DATE_FMT_STR_LUMICALC

Definition at line 56 of file create_public_lumi_plots.py.

create_public_lumi_plots.DATE_FMT_STR_LUMICALC_DAY

Definition at line 57 of file create_public_lumi_plots.py.

create_public_lumi_plots.DATE_FMT_STR_OUT

Definition at line 58 of file create_public_lumi_plots.py.

create_public_lumi_plots.date_previous_str

Definition at line 774 of file create_public_lumi_plots.py.

create_public_lumi_plots.day_cur

Definition at line 740 of file create_public_lumi_plots.py.

create_public_lumi_plots.day_hi

Definition at line 1024 of file create_public_lumi_plots.py.

create_public_lumi_plots.day_lo

Definition at line 1022 of file create_public_lumi_plots.py.

create_public_lumi_plots.days

Definition at line 737 of file create_public_lumi_plots.py.

create_public_lumi_plots.desc_str

Definition at line 503 of file create_public_lumi_plots.py.

create_public_lumi_plots.description

Definition at line 505 of file create_public_lumi_plots.py.

create_public_lumi_plots.dummy_file

Definition at line 831 of file create_public_lumi_plots.py.

create_public_lumi_plots.edgecolor

Definition at line 1104 of file create_public_lumi_plots.py.

create_public_lumi_plots.exp

Definition at line 1088 of file create_public_lumi_plots.py.

create_public_lumi_plots.facecolor

Definition at line 1104 of file create_public_lumi_plots.py.

create_public_lumi_plots.False

Definition at line 1833 of file create_public_lumi_plots.py.

create_public_lumi_plots.fig

Definition at line 1079 of file create_public_lumi_plots.py.

create_public_lumi_plots.figsize

Definition at line 1750 of file create_public_lumi_plots.py.

create_public_lumi_plots.file_suffix

Definition at line 1077 of file create_public_lumi_plots.py.

create_public_lumi_plots.fontproperties

Definition at line 1119 of file create_public_lumi_plots.py.

create_public_lumi_plots.fontsize
create_public_lumi_plots.frameon

Definition at line 1110 of file create_public_lumi_plots.py.

create_public_lumi_plots.head_room

Definition at line 1852 of file create_public_lumi_plots.py.

create_public_lumi_plots.help

Definition at line 507 of file create_public_lumi_plots.py.

create_public_lumi_plots.helper_str

Definition at line 944 of file create_public_lumi_plots.py.

create_public_lumi_plots.hist

Definition at line 34 of file create_public_lumi_plots.py.

Referenced by DDSpecificsHasNamedValueFilter.accept(), DDSpecificsMatchesValueFilter.accept(), DDSpecificsFilter.accept_impl(), PVValHelper.add(), APVCyclePhaseMonitor.beginRun(), Book.book(), HLTDQMFilterEffHists< ObjType >.book1D(), HLTDQMFilterEffHists< ObjType >.book2D(), L1TStage2EMTF.bookHistograms(), TouchableToHistory.buildAll(), PlotMillePede.ClearAdditionalSel(), ClusMultInvestPlots(), Combined2DHisto(), CombinedHisto(), examples::TrackAnalysisAlgorithm.draw(), fwlite::Scanner< Collection >.draw(), fwlite::Scanner< Collection >.draw2D(), fwlite::Scanner< Collection >.drawProf(), L1TEventInfoClient.dumpContentMonitorElements(), EcalPedHists.endJob(), EcalURecHitHists.endJob(), EcalCosmicsHists.endJob(), DQMHistNormalizer.endRun(), dqmoffline::l1t.fill2DWithinLimits(), HLTDQMFilterEffHists< ObjType >.fillHists(), edm::Principal.fillPrincipal(), dqmoffline::l1t.fillWithinLimits(), WordHist.fillWord(), EgHLTOfflineSummaryClient.getEgHLTSumHist_(), TouchableToHistory.getNavStory(), fwlite::Scanner< Collection >.getSameH1(), fwlite::Scanner< Collection >.getSameH2(), fwlite::Scanner< Collection >.getSameProf(), SiStripSummaryCreator.getSummaryME(), CTPPSDiamondDQMSource::GlobalPlots.GlobalPlots(), HGCalTBMB.HGCalTBMB(), FWEveViewManager.highlightAdded(), HistoAnalyzer< C >.HistoAnalyzer(), MuonResidualsFitter.histogramChi2GaussianFit(), evf::evtn::TCDSL1AHistory.history(), TotemRPDQMSource::GlobalPlots.Init(), EcalDisplaysByEvent.init2DEcalHist(), EcalDisplaysByEvent.init3DEcalHist(), EcalURecHitHists.initHists(), EcalCosmicsHists.initHists(), main(), LA_Filler_Fitter.make_and_fit_symmchi2(), SiStripSpyDisplayModule.MakeDigiHist_(), ValidateGeometry.makeHistogram(), SiStripSpyDisplayModule.MakeProcessedRawDigiHist_(), SiStripSpyDisplayModule.MakeRawDigiHist_(), DDExpandedView.mergedSpecificsV(), SymmetryFit.name(), DQMGenericClient.normalizeToEntries(), DQMRivetClient.normalizeToIntegral(), DQMRivetClient.normalizeToLumi(), helper::ScannerBase.numberOfExtraCuts(), CSCAlignmentCorrections.plot(), MuonResidualsFitter.plotsimple(), MuonResidualsFitter.plotweighted(), MuonGEMRecHitsHarvestor.ProcessBooking(), MuonGEMDigisHarvestor.ProcessBooking(), MuonGEMHitsHarvestor.ProcessBooking(), EcalPedHists.readEBdigis(), EcalPedHists.readEEdigis(), DQMRivetClient.scaleByFactor(), HLTOfflineDQMTopDiLepton::MonitorDiLepton.selectionPath(), TopDiLeptonOffline::MonitorEnsemble.selectionPath(), DDExpandedView.specificsV(), tfwliteselectortest::ThingsTSelector.terminate(), tfwliteselectortest::ThingsTSelector2.terminate(), __class__< T >.terminate(), sistrip::EnsembleCalibrationLA.write_ensembles_plots(), sistrip::MeasureLA.write_report_plots(), and sistrip::EnsembleCalibrationLA.write_samples_plots().

create_public_lumi_plots.histtype

Definition at line 1102 of file create_public_lumi_plots.py.

create_public_lumi_plots.horizontalalignment

Definition at line 1266 of file create_public_lumi_plots.py.

create_public_lumi_plots.ignore_cache

Definition at line 516 of file create_public_lumi_plots.py.

create_public_lumi_plots.in_file
create_public_lumi_plots.is_log

Definition at line 1084 of file create_public_lumi_plots.py.

create_public_lumi_plots.json_file_name

Definition at line 617 of file create_public_lumi_plots.py.

create_public_lumi_plots.KNOWN_ACCEL_MODES

Definition at line 63 of file create_public_lumi_plots.py.

create_public_lumi_plots.label

Definition at line 1105 of file create_public_lumi_plots.py.

create_public_lumi_plots.labelspacing

Definition at line 1831 of file create_public_lumi_plots.py.

create_public_lumi_plots.last_day_from_cache

Definition at line 757 of file create_public_lumi_plots.py.

create_public_lumi_plots.LEAD_SCALE_FACTOR

Definition at line 65 of file create_public_lumi_plots.py.

create_public_lumi_plots.leg
create_public_lumi_plots.lines

Definition at line 870 of file create_public_lumi_plots.py.

create_public_lumi_plots.lines_ori

Definition at line 845 of file create_public_lumi_plots.py.

create_public_lumi_plots.lines_to_be_kept

Definition at line 844 of file create_public_lumi_plots.py.

create_public_lumi_plots.linestyle

Definition at line 1803 of file create_public_lumi_plots.py.

create_public_lumi_plots.loc
create_public_lumi_plots.log

Definition at line 1103 of file create_public_lumi_plots.py.

create_public_lumi_plots.log_setting

Definition at line 1085 of file create_public_lumi_plots.py.

create_public_lumi_plots.log_suffix

Definition at line 1132 of file create_public_lumi_plots.py.

create_public_lumi_plots.logo_name

Definition at line 1076 of file create_public_lumi_plots.py.

create_public_lumi_plots.lumi_data

Definition at line 1017 of file create_public_lumi_plots.py.

create_public_lumi_plots.lumi_data_by_day

Definition at line 863 of file create_public_lumi_plots.py.

create_public_lumi_plots.lumi_data_by_day_per_year

Definition at line 924 of file create_public_lumi_plots.py.

create_public_lumi_plots.lumi_data_by_week

Definition at line 894 of file create_public_lumi_plots.py.

create_public_lumi_plots.lumi_data_by_week_per_year

Definition at line 906 of file create_public_lumi_plots.py.

create_public_lumi_plots.lumi_data_by_year

Definition at line 916 of file create_public_lumi_plots.py.

create_public_lumi_plots.lumi_data_day

Definition at line 867 of file create_public_lumi_plots.py.

create_public_lumi_plots.lumicalc_cmd

Definition at line 807 of file create_public_lumi_plots.py.

create_public_lumi_plots.lumicalc_flags

Definition at line 788 of file create_public_lumi_plots.py.

create_public_lumi_plots.lumicalc_flags_from_cfg

Definition at line 545 of file create_public_lumi_plots.py.

create_public_lumi_plots.lumicalc_script

Definition at line 544 of file create_public_lumi_plots.py.

create_public_lumi_plots.marker
create_public_lumi_plots.markersize

Definition at line 1802 of file create_public_lumi_plots.py.

create_public_lumi_plots.max_del

Definition at line 1156 of file create_public_lumi_plots.py.

create_public_lumi_plots.max_inst

Definition at line 1097 of file create_public_lumi_plots.py.

create_public_lumi_plots.max_rec

Definition at line 1157 of file create_public_lumi_plots.py.

create_public_lumi_plots.min_del

Definition at line 1207 of file create_public_lumi_plots.py.

create_public_lumi_plots.min_val

Definition at line 1087 of file create_public_lumi_plots.py.

create_public_lumi_plots.ncol
create_public_lumi_plots.newfile
create_public_lumi_plots.num_cols

Definition at line 1825 of file create_public_lumi_plots.py.

create_public_lumi_plots.num_days

Definition at line 736 of file create_public_lumi_plots.py.

create_public_lumi_plots.NUM_SEC_IN_LS

Definition at line 61 of file create_public_lumi_plots.py.

create_public_lumi_plots.num_weeks

Definition at line 1315 of file create_public_lumi_plots.py.

create_public_lumi_plots.options

Definition at line 510 of file create_public_lumi_plots.py.

create_public_lumi_plots.oracle_connection_string

Definition at line 612 of file create_public_lumi_plots.py.

create_public_lumi_plots.output

Definition at line 814 of file create_public_lumi_plots.py.

create_public_lumi_plots.output_0

Definition at line 817 of file create_public_lumi_plots.py.

create_public_lumi_plots.particle_type_str

Definition at line 645 of file create_public_lumi_plots.py.

create_public_lumi_plots.particle_type_strings

Definition at line 640 of file create_public_lumi_plots.py.

create_public_lumi_plots.path_name
create_public_lumi_plots.scale_factor_2010

Definition at line 1734 of file create_public_lumi_plots.py.

create_public_lumi_plots.seconds

Definition at line 1023 of file create_public_lumi_plots.py.

create_public_lumi_plots.sep_line

Definition at line 935 of file create_public_lumi_plots.py.

create_public_lumi_plots.status

Definition at line 814 of file create_public_lumi_plots.py.

create_public_lumi_plots.str_begin

Definition at line 1056 of file create_public_lumi_plots.py.

create_public_lumi_plots.str_begin_ultimate

Definition at line 1754 of file create_public_lumi_plots.py.

create_public_lumi_plots.str_end
create_public_lumi_plots.textcoords

Definition at line 1813 of file create_public_lumi_plots.py.

create_public_lumi_plots.time_begin

Definition at line 1050 of file create_public_lumi_plots.py.

Referenced by PlotAllYears().

create_public_lumi_plots.time_begin_ultimate

Definition at line 1753 of file create_public_lumi_plots.py.

create_public_lumi_plots.time_end

Definition at line 1053 of file create_public_lumi_plots.py.

create_public_lumi_plots.times
create_public_lumi_plots.times_tmp

Definition at line 1033 of file create_public_lumi_plots.py.

create_public_lumi_plots.tmp

Definition at line 587 of file create_public_lumi_plots.py.

create_public_lumi_plots.tmp_leg

Definition at line 1108 of file create_public_lumi_plots.py.

create_public_lumi_plots.tmp_str
create_public_lumi_plots.tmp_x
create_public_lumi_plots.tmp_y
create_public_lumi_plots.today

Definition at line 594 of file create_public_lumi_plots.py.

create_public_lumi_plots.tot_cert

Definition at line 1210 of file create_public_lumi_plots.py.

create_public_lumi_plots.tot_del

Definition at line 1208 of file create_public_lumi_plots.py.

create_public_lumi_plots.tot_rec

Definition at line 1209 of file create_public_lumi_plots.py.

create_public_lumi_plots.transAxes

Definition at line 1267 of file create_public_lumi_plots.py.

create_public_lumi_plots.transform

Definition at line 1267 of file create_public_lumi_plots.py.

Referenced by AlignableDet.alignments(), AlignableBeamSpot.alignments(), AlignableDetUnit.alignments(), AlphaT.AlphaT(), edm::ContainerMask< T >.applyOrTo(), edm::ScheduleInfo.availableModuleLabels(), edm::StreamSchedule.availablePaths(), reco::helper::JetIDHelper.classifyJetComponents(), reco::helper::JetIDHelper.classifyJetTowers(), TkGluedMeasurementDet.collectRecHits(), TCMETAlgo.configure(), edmNew.copyDetSetRange(), ConstrainedTreeBuilder.covarianceMatrix(), ConstrainedTreeBuilderT.covarianceMatrix(), FastCircle.createCircleParameters(), align.createPoints(), TGeoMgrFromDdd.createShape(), TGeoFromDddService.createShape(), JME::JetResolutionObject::Definition.Definition(), FWDetailViewManager.detailViewsFor(), RecoTauMVATransform.discriminate(), FastCircle.FastCircle(), l1t::OnlineDBqueryHelper.fetch(), HGCalTriggerNtupleHGCMulticlusters.fill(), HGCalTriggerNtupleHGCClusters.fill(), edm::FwdPtrCollectionFilter< T, S, H >.filter(), FWDetailViewManager.findViewersFor(), FWEveViewManager.FWEveViewManager(), EcalFedMap.getFedFromSlice(), edm::DetSetVector< T >.getIds(), CSCStripElectronicsSim.getKeyStripsFromMC(), reco::TaggingVariableList.getList(), edm::ParameterSet.getParameterNames(), l1t::Parameter.getTableColumn(), SeedingLayerSetsHits.hits(), PSFitter::HybridMinimizer.HybridMinimizer(), Herwig7Interface.initRepository(), pat::JetCorrFactors.jecFlavor(), SETFilter.lastUpdatedTSOS(), reco::MaskCollection< Object >.mask(), cms::MuonTCMETValueMapProducer.MuonTCMETValueMapProducer(), MuonTypeByOrCut.MuonTypeByOrCut(), alpha_T.operator()(), reco::tau::RecoTauDiscriminantInvariantWidth.operator()(), CSCStripData.operator*=(), BTagEntry::Parameters.Parameters(), gen::JetMatchingMGFastJet.parseParameter(), gen::JetMatchingMadgraph.parseParameter(), pat::PATLostTracks.PATLostTracks(), GaussianSumUtilities1D.pdfComponents(), PedeSteererWeakModeConstraints.PedeSteererWeakModeConstraints(), SiStripProcessedRawDigiProducer.pr_process(), pat::MatcherByPulls< T >.produce(), EcalTrivialConditionRetriever.produceEcalAlignmentEB(), EcalTrivialConditionRetriever.produceEcalAlignmentEE(), EcalTrivialConditionRetriever.produceEcalAlignmentES(), edm::eventsetup::EventSetupRecordProvider.proxyProviderDescriptions(), QualityCutsAnalyzer.QualityCutsAnalyzer(), l1t::LUT.read(), MP7FileReader.readRows(), RecoTauMVATransform.RecoTauMVATransform(), TkRotation< align::Scalar >.rotateAxes(), edm::Schedule.Schedule(), MP7FileReader.searchLinks(), LMFColoredTable.setColor(), ODSRPConfig.setParameters(), gen::Pythia6Service.setSLHAFromHeader(), Herwig6Hadronizer.setSLHAFromHeader(), LMFColoredTable.setSystem(), LMFPnPrimDat.setSystem(), SiStripLorentzAngleFakeESSource.SiStripLorentzAngleFakeESSource(), PrimaryVertexResolution.sortTracksByPt(), RectangularEtaPhiTrackingRegion.stringToUseMeasurementTracker(), TrackerGeometryCompare.surveyToTracker(), TauDiscriminationProducerBase< TauType, TauDiscriminator >.TauDiscriminationProducerBase(), TrackerStablePhiSort(), upcaseString(), TrackingMaterialProducer.update(), progressbar.FormatLabel.update(), sistrip::FEDEmulator.zeroSuppress(), and TrackTransformerBase.~TrackTransformerBase().

create_public_lumi_plots.units

Definition at line 937 of file create_public_lumi_plots.py.

create_public_lumi_plots.use_cache

Definition at line 767 of file create_public_lumi_plots.py.

create_public_lumi_plots.use_oracle

Definition at line 613 of file create_public_lumi_plots.py.

create_public_lumi_plots.verbose

Definition at line 541 of file create_public_lumi_plots.py.

create_public_lumi_plots.verticalalignment

Definition at line 1266 of file create_public_lumi_plots.py.

create_public_lumi_plots.week
create_public_lumi_plots.week_begin

Definition at line 724 of file create_public_lumi_plots.py.

create_public_lumi_plots.week_end

Definition at line 725 of file create_public_lumi_plots.py.

create_public_lumi_plots.week_hi

Definition at line 1309 of file create_public_lumi_plots.py.

create_public_lumi_plots.week_lo

Definition at line 1307 of file create_public_lumi_plots.py.

create_public_lumi_plots.weeks

Definition at line 739 of file create_public_lumi_plots.py.

create_public_lumi_plots.weights

Definition at line 1101 of file create_public_lumi_plots.py.

Referenced by EWKSystUnc.analyze(), zPdfUnc.analyze(), ZLONLOHistogrammer.analyze(), ZMuPtScaleAnalyzer.analyze(), ZMCHistogrammer.analyze(), EcalTPGParamBuilder.analyze(), CSCRecoConditions.averageGain(), ecaldqm::SelectiveReadoutTask.beginRun(), EcalSelectiveReadoutProducer.checkWeights(), CSCSegFit.covarianceMatrix(), MuonSegFit.covarianceMatrix(), GEMCSCSegFit.covarianceMatrix(), GsfChi2MeasurementEstimator.estimate(), AdHocNTupler.fill(), npstat::HistoND< Numeric, Axis >.fillPreservingCentroid(), PdfSystematicsAnalyzer.filter(), EcalSelectiveReadoutValidation.frame2EnergyForTp(), PVValHelper.getMAD(), popcon::EcalSRPHandler.getNewObjects(), reco::GhostTrack.GhostTrack(), goodseedhelpers::HeavyObjectCache.HeavyObjectCache(), muonisolation::IsolatorByNominalEfficiency::ConeSizes.index(), RPixClusterToHit.make_hit(), MLP_Stochastic(), MuIsoByTrackPt.MuIsoByTrackPt(), MultiTrajectoryStateTransform.MultiTrajectoryStateTransform(), reco::GhostTrack.operator Track(), PlotCombiner(), gen.LHEWeightAnalyzer.LHEWeightAnalyzer.process(), heppy::PdfWeightProducerTool.processEvent(), EcalTBWeightUncalibRecHitProducer.produce(), PdfWeightProducer.produce(), LHECOMWeightProducer.produce(), edm::BeamHaloProducer.produce(), EcalTrigPrimESProducer.produceWeight(), EndcapPiZeroDiscriminatorAlgo.readWeightFile(), HFSimpleTimeCheck.reconstruct(), HGCalRecHitSimpleAlgo.setLayerWeights(), muonisolation::IsolatorByDeposit.setWeights(), GenEventInfoProduct.setWeights(), GsfMultiStateUpdator.update(), EcalDccWeightBuilder.writeWeightToAsciiFile(), EcalDccWeightBuilder.writeWeightToDB(), EcalDccWeightBuilder.writeWeightToRootFile(), EcalDccWeightBuilder.~EcalDccWeightBuilder(), EcalUncalibRecHitFixedAlphaBetaAlgo< EBDataFrame >.~EcalUncalibRecHitFixedAlphaBetaAlgo(), and EcalUncalibRecHitMaxSampleAlgo< EBDataFrame >.~EcalUncalibRecHitMaxSampleAlgo().

create_public_lumi_plots.weights_cert_for_cum

Definition at line 1043 of file create_public_lumi_plots.py.

create_public_lumi_plots.weights_del

Definition at line 1037 of file create_public_lumi_plots.py.

create_public_lumi_plots.weights_del_for_cum

Definition at line 1041 of file create_public_lumi_plots.py.

create_public_lumi_plots.weights_del_inst

Definition at line 1046 of file create_public_lumi_plots.py.

create_public_lumi_plots.weights_inst

Definition at line 1765 of file create_public_lumi_plots.py.

create_public_lumi_plots.weights_rec

Definition at line 1038 of file create_public_lumi_plots.py.

create_public_lumi_plots.weights_rec_for_cum

Definition at line 1042 of file create_public_lumi_plots.py.

create_public_lumi_plots.weights_tmp

Definition at line 1794 of file create_public_lumi_plots.py.

create_public_lumi_plots.width

Definition at line 1009 of file create_public_lumi_plots.py.

create_public_lumi_plots.xy

Definition at line 1811 of file create_public_lumi_plots.py.

create_public_lumi_plots.xycoords

Definition at line 1813 of file create_public_lumi_plots.py.

create_public_lumi_plots.xytext

Definition at line 1812 of file create_public_lumi_plots.py.

create_public_lumi_plots.year
create_public_lumi_plots.year_begin

Definition at line 726 of file create_public_lumi_plots.py.

create_public_lumi_plots.year_end

Definition at line 727 of file create_public_lumi_plots.py.

create_public_lumi_plots.years
create_public_lumi_plots.zoom

Definition at line 1850 of file create_public_lumi_plots.py.