CMS 3D CMS Logo

List of all members | Public Member Functions | Private Attributes
plotting.Transform Class Reference

Public Member Functions

def __init__ (self, name, histo, func, title="")
 
def __str__ (self)
 
def create (self, tdirectory)
 

Private Attributes

 _func
 
 _histo
 
 _name
 
 _title
 

Detailed Description

Class to transform bin contents in an arbitrary way.

Definition at line 808 of file plotting.py.

Constructor & Destructor Documentation

◆ __init__()

def plotting.Transform.__init__ (   self,
  name,
  histo,
  func,
  title = "" 
)
Constructor.

Argument:
name  -- String for name of the resulting histogram
histo -- String for a source histogram (needs to be cumulative)
func  -- Function to operate on the bin content

Definition at line 810 of file plotting.py.

810  def __init__(self, name, histo, func, title=""):
811  """Constructor.
812 
813  Argument:
814  name -- String for name of the resulting histogram
815  histo -- String for a source histogram (needs to be cumulative)
816  func -- Function to operate on the bin content
817  """
818  self._name = name
819  self._histo = histo
820  self._func = func
821  self._title = title
822 

Member Function Documentation

◆ __str__()

def plotting.Transform.__str__ (   self)

◆ create()

def plotting.Transform.create (   self,
  tdirectory 
)
Create and return the transformed histogram from a TDirectory

Definition at line 827 of file plotting.py.

827  def create(self, tdirectory):
828  """Create and return the transformed histogram from a TDirectory"""
829  histo = _getOrCreateObject(tdirectory, self._histo)
830  if not histo:
831  return None
832 
833  ret = histo.Clone(self._name)
834  ret.SetTitle(self._title)
835 
836  # Disable canExtend if it is set, otherwise setting the
837  # overflow bin will extend instead, possibly causing weird
838  # effects downstream
839  ret.SetCanExtend(False)
840 
841  for i in range(0, histo.GetNbinsX()+2):
842  ret.SetBinContent(i, self._func(histo.GetBinContent(i)))
843  return ret
844 

References plotting.Transform._func, plotting._getOrCreateObject(), plotting.Transform._histo, FP420HitsObject._name, TrackerHitsObject._name, PGeometricDet::Item._name, TrackingRecHitAlgorithm._name, Logger._name, hcaldqm::DQModule._name, citk::IsolationConeDefinitionBase._name, DrellYanValidation._name, WValidation._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, SequenceTypes.TaskPlaceholder._name, HistoParams< T >._title, HistoParams< TH2F >._title, SiStripHitEffFromCalibTree._title, HistoParams< TProfile2D >._title, html.PageSet._title, html.HtmlReport._title, plotting.Subtract._title, plotting.Transform._title, and FastTimerService_cff.range.

Member Data Documentation

◆ _func

plotting.Transform._func
private

Definition at line 820 of file plotting.py.

Referenced by plotting.Transform.create().

◆ _histo

plotting.Transform._histo
private

Definition at line 819 of file plotting.py.

Referenced by plotting.Transform.create(), and plotting.CutEfficiency.create().

◆ _name

plotting.Transform._name
private

◆ _title

plotting.Transform._title
private
FastTimerService_cff.range
range
Definition: FastTimerService_cff.py:34
beamerCreator.create
def create(alignables, pedeDump, additionalData, outputFile, config)
Definition: beamerCreator.py:44
TriggerAnalyzer.__str__
def __str__(self)
Definition: TriggerAnalyzer.py:103
plotting._getOrCreateObject
def _getOrCreateObject(tdirectory, nameOrCreator)
Definition: plotting.py:58