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

602  def __init__(self, name, nameA, nameB, title=""):
603  """Constructor
604 
605  Arguments:
606  name -- String for name of the resulting histogram (A-B)
607  nameA -- String for A histogram
608  nameB -- String for B histogram
609 
610  Keyword arguments:
611  title -- String for a title of the resulting histogram (default "")
612 
613  Uncertainties are calculated with the assumption that B is a
614  subset of A, and the histograms contain event counts.
615  """
616  self._name = name
617  self._nameA = nameA
618  self._nameB = nameB
619  self._title = title
620 
def __init__(self, name, nameA, nameB, title="")
Definition: plotting.py:602

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 625 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.

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

Member Data Documentation

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

Definition at line 617 of file plotting.py.

Referenced by plotting.Subtract.create().

plotting.Subtract._nameB
private

Definition at line 618 of file plotting.py.

Referenced by plotting.Subtract.create().

plotting.Subtract._title
private