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 806 of file plotting.py.

Constructor & Destructor Documentation

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 808 of file plotting.py.

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

Member Function Documentation

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

Definition at line 825 of file plotting.py.

References plotting.Transform._func, plotting._getOrCreateObject(), plotting.Transform._histo, FP420HitsObject._name, TrackerHitsObject._name, PGeometricDet::Item._name, TrackingRecHitAlgorithm._name, LikelihoodSpecies._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, GeometricTimingDetExtra._name, CutApplicatorBase._name, DetGeomDesc._name, GeometricDetExtra._name, HistoParams< TH2F >._name, HistoParams< TProfile2D >._name, Vispa.Views.PropertyView.Property._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, and plotting.Transform._title.

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

Member Data Documentation

plotting.Transform._func
private

Definition at line 818 of file plotting.py.

Referenced by plotting.Transform.create().

plotting.Transform._histo
private

Definition at line 817 of file plotting.py.

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

plotting.Transform._name
private
plotting.Transform._title
private