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

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

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 824 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, ElectronMVAEstimatorRun2Phys14NonTrig._name, CutApplicatorBase._name, PhotonMVAEstimatorRun2Spring15NonTrig._name, PhotonMVAEstimatorRun2Phys14NonTrig._name, ElectronMVAEstimatorRun2Spring15Trig._name, ElectronMVAEstimatorRun2Spring15NonTrig._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, SiStripHitEffFromCalibTree._title, HistoParams< TH2F >._title, HistoParams< TProfile2D >._title, html.PageSet._title, html.HtmlReport._title, plotting.Subtract._title, and plotting.Transform._title.

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

Member Data Documentation

plotting.Transform._func
private

Definition at line 817 of file plotting.py.

Referenced by plotting.Transform.create().

plotting.Transform._histo
private

Definition at line 816 of file plotting.py.

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

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