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 1590 of file trackingPlots.py.

Constructor & Destructor Documentation

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

Definition at line 1591 of file trackingPlots.py.

1591  def __init__(self, name, timeHisto):
1592  self._name = name
1593  self._timeHisto = timeHisto
1594  self._eventsHisto = "path time_real"
1595  self._cache = {}
1596 
def __init__(self, name, timeHisto)

Member Function Documentation

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

Definition at line 1600 of file trackingPlots.py.

References trackingPlots.TimePerEventPlot._eventsHisto, plotting._getOrCreateObject(), FP420HitsObject._name, TrackerHitsObject._name, PGeometricDet::Item._name, LikelihoodSpecies._name, TrackingRecHitAlgorithm._name, LikelihoodPdfProduct._name, LikelihoodPdf._name, citk::IsolationConeDefinitionBase._name, Logger._name, hcaldqm::DQModule._name, DrellYanValidation._name, WValidation._name, HistoParams< T >._name, hcaldqm::flag::Flag._name, hcaldqm::quantity::Quantity._name, CutApplicatorBase._name, GeometricDetExtra._name, HistoParams< TH2F >._name, HistoParams< TProfile2D >._name, Vispa.Views.PropertyView.Property._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, SequenceTypes.TaskPlaceholder._name, trackingPlots.TimePerEventPlot._name, plotting.Plot._name, plotting.PlotGroup._name, plotting.PlotterFolder._name, plotting.PlotterItem._name, trackingPlots.TimePerEventPlot._timeHisto, and python.rootplot.root2matplotlib.replace().

Referenced by trackingPlots.TimePerEventPlot.create().

1600  def _create(self, tdirectory):
1601  timeTh1 = plotting._getOrCreateObject(tdirectory, self._timeHisto)
1602  if timeTh1 is None:
1603  return None
1604 
1605  eventsTh1 = plotting._getOrCreateObject(tdirectory, self._eventsHisto)
1606  if eventsTh1 is None:
1607  return None
1608  nevents = eventsTh1.GetEntries()
1609  if nevents == 0:
1610  return None
1611 
1612  ret = timeTh1.Clone(self._name)
1613  xaxis = ret.GetXaxis()
1614  for i in xrange(1, ret.GetNbinsX()+1):
1615  ret.SetBinContent(i, ret.GetBinContent(i)/nevents)
1616  ret.SetBinError(i, ret.GetBinError(i)/nevents)
1617  xaxis.SetBinLabel(i, xaxis.GetBinLabel(i).replace(" (unscheduled)", ""))
1618  return ret
1619 
def _getOrCreateObject(tdirectory, nameOrCreator)
Definition: plotting.py:55
def replace(string, replacements)
def _create(self, tdirectory)
def trackingPlots.TimePerEventPlot.create (   self,
  tdirectory 
)

Definition at line 1620 of file trackingPlots.py.

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

1620  def create(self, tdirectory):
1621  path = tdirectory.GetPath()
1622  if path not in self._cache:
1623  self._cache[path] = self._create(tdirectory)
1624  return self._cache[path]
1625 
def create(self, tdirectory)
def _create(self, tdirectory)

Member Data Documentation

trackingPlots.TimePerEventPlot._cache
private
trackingPlots.TimePerEventPlot._eventsHisto
private

Definition at line 1594 of file trackingPlots.py.

Referenced by trackingPlots.TimePerEventPlot._create().

trackingPlots.TimePerEventPlot._name
private
trackingPlots.TimePerEventPlot._timeHisto
private