CMS 3D CMS Logo

List of all members | Public Member Functions | Private Member Functions | Private Attributes
trackingPlots.TimePerEventPlot Class Reference

Public Member Functions

def __init__ (self, name, timeHisto)
 
def __str__ (self)
 
def create (self, tdirectory)
 

Private Member Functions

def _create (self, tdirectory)
 

Private Attributes

 _cache
 
 _eventsHisto
 
 _name
 
 _timeHisto
 

Detailed Description

Definition at line 1643 of file trackingPlots.py.

Constructor & Destructor Documentation

◆ __init__()

def trackingPlots.TimePerEventPlot.__init__ (   self,
  name,
  timeHisto 
)

Definition at line 1644 of file trackingPlots.py.

1644  def __init__(self, name, timeHisto):
1645  self._name = name
1646  self._timeHisto = timeHisto
1647  self._eventsHisto = "path time_real"
1648  self._cache = {}
1649 
def __init__(self, dataset, job_number, job_id, job_name, isDA, isMC, applyBOWS, applyEXTRACOND, extraconditions, runboundary, lumilist, intlumi, maxevents, gt, allFromGT, alignmentDB, alignmentTAG, apeDB, apeTAG, bowDB, bowTAG, vertextype, tracktype, refittertype, ttrhtype, applyruncontrol, ptcut, CMSSW_dir, the_dir)

Member Function Documentation

◆ __str__()

def trackingPlots.TimePerEventPlot.__str__ (   self)

◆ _create()

def trackingPlots.TimePerEventPlot._create (   self,
  tdirectory 
)
private

Definition at line 1653 of file trackingPlots.py.

References trackingPlots.TimePerEventPlot._eventsHisto, plotting._getOrCreateObject(), FP420HitsObject._name, TrackerHitsObject._name, PGeometricDet::Item._name, TrackingRecHitAlgorithm._name, Logger._name, hcaldqm::DQModule._name, citk::IsolationConeDefinitionBase._name, WValidation._name, DrellYanValidation._name, hcaldqm::flag::Flag._name, hcaldqm::quantity::Quantity._name, HistoParams< T >._name, CutApplicatorBase._name, HistoParams< TH2F >._name, HistoParams< TProfile2D >._name, SequenceTypes.SequencePlaceholder._name, plotting.Subtract._name, plotting.Transform._name, plotting.FakeDuplicate._name, plotting.CutEfficiency._name, plotting.AggregateBins._name, plotting.AggregateHistos._name, plotting.ROC._name, trackingPlots.Iteration._name, trackingPlots.TimePerEventPlot._name, SequenceTypes._TaskBasePlaceholder._name, plotting.Plot._name, plotting.PlotGroup._name, plotting.PlotterFolder._name, plotting.PlotterItem._name, trackingPlots.TimePerEventPlot._timeHisto, FastTimerService_cff.range, and python.rootplot.root2matplotlib.replace().

Referenced by trackingPlots.TimePerEventPlot.create().

1653  def _create(self, tdirectory):
1654  timeTh1 = plotting._getOrCreateObject(tdirectory, self._timeHisto)
1655  if timeTh1 is None:
1656  return None
1657 
1658  eventsTh1 = plotting._getOrCreateObject(tdirectory, self._eventsHisto)
1659  if eventsTh1 is None:
1660  return None
1661  nevents = eventsTh1.GetEntries()
1662  if nevents == 0:
1663  return None
1664 
1665  ret = timeTh1.Clone(self._name)
1666  xaxis = ret.GetXaxis()
1667  for i in range(1, ret.GetNbinsX()+1):
1668  ret.SetBinContent(i, ret.GetBinContent(i)/nevents)
1669  ret.SetBinError(i, ret.GetBinError(i)/nevents)
1670  xaxis.SetBinLabel(i, xaxis.GetBinLabel(i).replace(" (unscheduled)", ""))
1671  return ret
1672 
def _getOrCreateObject(tdirectory, nameOrCreator)
Definition: plotting.py:57
def replace(string, replacements)

◆ create()

def trackingPlots.TimePerEventPlot.create (   self,
  tdirectory 
)

Definition at line 1673 of file trackingPlots.py.

References DTCache< T, Coll >._cache, tkal_create_file_lists.FileListCreator._cache, L1MuDTTrackFinder._cache, L1MuBMTrackFinder._cache, DTTrig._cache, trackingPlots.TimePerEventPlot._cache, and trackingPlots.TimePerEventPlot._create().

1673  def create(self, tdirectory):
1674  path = tdirectory.GetPath()
1675  if path not in self._cache:
1676  self._cache[path] = self._create(tdirectory)
1677  return self._cache[path]
1678 
def create(alignables, pedeDump, additionalData, outputFile, config)

Member Data Documentation

◆ _cache

trackingPlots.TimePerEventPlot._cache
private

◆ _eventsHisto

trackingPlots.TimePerEventPlot._eventsHisto
private

Definition at line 1647 of file trackingPlots.py.

Referenced by trackingPlots.TimePerEventPlot._create().

◆ _name

trackingPlots.TimePerEventPlot._name
private

◆ _timeHisto

trackingPlots.TimePerEventPlot._timeHisto
private