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

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

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

References plotting._getObject(), TrackerHitsObject._name, FP420HitsObject._name, PGeometricDet::Item._name, LikelihoodSpecies._name, TrackingRecHitAlgorithm._name, LikelihoodPdfProduct._name, Logger._name, hcaldqm::DQModule._name, LikelihoodPdf._name, citk::IsolationConeDefinitionBase._name, DrellYanValidation._name, WValidation._name, hcaldqm::flag::Flag._name, hcaldqm::quantity::Quantity._name, HistoParams< T >._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.

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

Member Data Documentation

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

Definition at line 777 of file plotting.py.

Referenced by plotting.Subtract.create().

plotting.Subtract._nameB
private

Definition at line 778 of file plotting.py.

Referenced by plotting.Subtract.create().

plotting.Subtract._title
private