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

594  def __init__(self, name, nameA, nameB, title=""):
595  """Constructor
596 
597  Arguments:
598  name -- String for name of the resulting histogram (A-B)
599  nameA -- String for A histogram
600  nameB -- String for B histogram
601 
602  Keyword arguments:
603  title -- String for a title of the resulting histogram (default "")
604 
605  Uncertainties are calculated with the assumption that B is a
606  subset of A, and the histograms contain event counts.
607  """
608  self._name = name
609  self._nameA = nameA
610  self._nameB = nameB
611  self._title = title
612 
def __init__(self, name, nameA, nameB, title="")
Definition: plotting.py:594

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

References plotting._getObject(), FP420HitsObject._name, TrackerHitsObject._name, PGeometricDet::Item._name, TrackingRecHitAlgorithm._name, LikelihoodSpecies._name, L1TMuon::PtAssignmentUnit._name, L1TMuon::PtRefinementUnit._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, CutApplicatorBase._name, ElectronMVAEstimatorRun2Phys14NonTrig._name, PhotonMVAEstimatorRun2Spring15NonTrig._name, PhotonMVAEstimatorRun2Phys14NonTrig._name, ElectronMVAEstimatorRun2Spring15Trig._name, GeometricDetExtra._name, ElectronMVAEstimatorRun2Spring15NonTrig._name, HistoParams< TH2F >._name, HistoParams< TProfile2D >._name, Vispa.Views.PropertyView.Property._name, SequenceTypes.SequencePlaceholder._name, plotting.Subtract._name, plotting.Subtract._nameA, plotting.Subtract._nameB, HistoParams< T >._title, HistoParams< TH2F >._title, SiStripHitEffFromCalibTree._title, HistoParams< TProfile2D >._title, html.PageSet._title, plotting.Subtract._title, and html.HtmlReport._title.

617  def create(self, tdirectory):
618  """Create and return the fake+duplicate histogram from a TDirectory"""
619  histoA = _getObject(tdirectory, self._nameA)
620  histoB = _getObject(tdirectory, self._nameB)
621 
622  if not histoA or not histoB:
623  return None
624 
625  ret = histoA.Clone(self._name)
626  ret.SetTitle(self._title)
627 
628  # Disable canExtend if it is set, otherwise setting the
629  # overflow bin will extend instead, possibly causing weird
630  # effects downstream
631  ret.SetCanExtend(False)
632 
633  for i in xrange(0, histoA.GetNbinsX()+2): # include under- and overflow too
634  val = histoA.GetBinContent(i)-histoB.GetBinContent(i)
635  ret.SetBinContent(i, val)
636  ret.SetBinError(i, math.sqrt(val))
637 
638  return ret
639 
def create(self, tdirectory)
Definition: plotting.py:617
def _getObject(tdirectory, name)
Definition: plotting.py:45

Member Data Documentation

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

Definition at line 609 of file plotting.py.

Referenced by plotting.Subtract.create().

plotting.Subtract._nameB
private

Definition at line 610 of file plotting.py.

Referenced by plotting.Subtract.create().

plotting.Subtract._title
private