CMS 3D CMS Logo

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

Public Member Functions

def __init__ (self, name, nameA, nameB, title="")
 
def __str__ (self)
 
def create (self, tdirectory)
 

Private Attributes

 _name
 
 _nameA
 
 _nameB
 
 _title
 

Detailed Description

Class for subtracting two histograms

Definition at line 758 of file plotting.py.

Constructor & Destructor Documentation

def plotting.Subtract.__init__ (   self,
  name,
  nameA,
  nameB,
  title = "" 
)
Constructor

Arguments:
name  -- String for name of the resulting histogram (A-B)
nameA -- String for A histogram
nameB -- String for B histogram

Keyword arguments:
title -- String for a title of the resulting histogram (default "")

Uncertainties are calculated with the assumption that B is a
subset of A, and the histograms contain event counts.

Definition at line 760 of file plotting.py.

760  def __init__(self, name, nameA, nameB, title=""):
761  """Constructor
762 
763  Arguments:
764  name -- String for name of the resulting histogram (A-B)
765  nameA -- String for A histogram
766  nameB -- String for B histogram
767 
768  Keyword arguments:
769  title -- String for a title of the resulting histogram (default "")
770 
771  Uncertainties are calculated with the assumption that B is a
772  subset of A, and the histograms contain event counts.
773  """
774  self._name = name
775  self._nameA = nameA
776  self._nameB = nameB
777  self._title = title
778 
def __init__(self, name, nameA, nameB, title="")
Definition: plotting.py:760

Member Function Documentation

def plotting.Subtract.__str__ (   self)
def plotting.Subtract.create (   self,
  tdirectory 
)
Create and return the fake+duplicate histogram from a TDirectory

Definition at line 783 of file plotting.py.

References plotting._getObject(), 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, GeometricTimingDetExtra._name, CutApplicatorBase._name, GeometricDetExtra._name, HistoParams< TH2F >._name, HistoParams< TProfile2D >._name, Vispa.Views.PropertyView.Property._name, SequenceTypes.SequencePlaceholder._name, plotting.Subtract._name, SequenceTypes.TaskPlaceholder._name, plotting.Subtract._nameA, plotting.Subtract._nameB, HistoParams< T >._title, HistoParams< TH2F >._title, SiStripHitEffFromCalibTree._title, HistoParams< TProfile2D >._title, html.PageSet._title, html.HtmlReport._title, and plotting.Subtract._title.

783  def create(self, tdirectory):
784  """Create and return the fake+duplicate histogram from a TDirectory"""
785  histoA = _getObject(tdirectory, self._nameA)
786  histoB = _getObject(tdirectory, self._nameB)
787 
788  if not histoA or not histoB:
789  return None
790 
791  ret = histoA.Clone(self._name)
792  ret.SetTitle(self._title)
793 
794  # Disable canExtend if it is set, otherwise setting the
795  # overflow bin will extend instead, possibly causing weird
796  # effects downstream
797  ret.SetCanExtend(False)
798 
799  for i in xrange(0, histoA.GetNbinsX()+2): # include under- and overflow too
800  val = histoA.GetBinContent(i)-histoB.GetBinContent(i)
801  ret.SetBinContent(i, val)
802  ret.SetBinError(i, math.sqrt(val))
803 
804  return ret
805 
def create(self, tdirectory)
Definition: plotting.py:783
def _getObject(tdirectory, name)
Definition: plotting.py:48

Member Data Documentation

plotting.Subtract._name
private
plotting.Subtract._nameA
private

Definition at line 775 of file plotting.py.

Referenced by plotting.Subtract.create().

plotting.Subtract._nameB
private

Definition at line 776 of file plotting.py.

Referenced by plotting.Subtract.create().

plotting.Subtract._title
private