CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions | Private Attributes
plotting.Subtract Class Reference

Public Member Functions

def __init__
 
def __str__
 
def create
 

Private Attributes

 _name
 
 _nameA
 
 _nameB
 
 _title
 

Detailed Description

Class for subtracting two histograms

Definition at line 237 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 239 of file plotting.py.

240  def __init__(self, name, nameA, nameB, title=""):
241  """Constructor
242 
243  Arguments:
244  name -- String for name of the resulting histogram (A-B)
245  nameA -- String for A histogram
246  nameB -- String for B histogram
247 
248  Keyword arguments:
249  title -- String for a title of the resulting histogram (default "")
250 
251  Uncertainties are calculated with the assumption that B is a
252  subset of A, and the histograms contain event counts.
253  """
254  self._name = name
255  self._nameA = nameA
256  self._nameB = nameB
257  self._title = title

Member Function Documentation

def plotting.Subtract.__str__ (   self)
String representation, returns the name

Definition at line 258 of file plotting.py.

References FP420HitsObject._name, TrackerHitsObject._name, PGeometricDet::Item._name, LikelihoodSpecies._name, L1TMuon::PtAssignmentUnit._name, L1TMuon::PtRefinementUnit._name, LikelihoodPdfProduct._name, LikelihoodPdf._name, hcaldqm::Container._name, citk::IsolationConeDefinitionBase._name, hcaldqm::DQModule._name, Logger._name, DrellYanValidation._name, WValidation._name, HistoParams< T >._name, CutApplicatorBase._name, ElectronMVAEstimatorRun2Phys14NonTrig._name, PhotonMVAEstimatorRun2Spring15NonTrig._name, PhotonMVAEstimatorRun2Phys14NonTrig._name, ElectronMVAEstimatorRun2Spring15Trig._name, GeometricDetExtra._name, ElectronMVAEstimatorRun2Spring15NonTrig._name, HistoParams< TH2F >._name, HistoParams< TProfile2D >._name, plotting.Subtract._name, Vispa.Views.PropertyView.Property._name, and SequenceTypes.SequencePlaceholder._name.

259  def __str__(self):
260  """String representation, returns the name"""
261  return self._name
def plotting.Subtract.create (   self,
  tdirectory 
)
Create and return the fake+duplicate histogram from a TDirectory

Definition at line 262 of file plotting.py.

References plotting._getObject(), FP420HitsObject._name, TrackerHitsObject._name, PGeometricDet::Item._name, LikelihoodSpecies._name, L1TMuon::PtAssignmentUnit._name, L1TMuon::PtRefinementUnit._name, LikelihoodPdfProduct._name, LikelihoodPdf._name, hcaldqm::Container._name, citk::IsolationConeDefinitionBase._name, hcaldqm::DQModule._name, Logger._name, DrellYanValidation._name, WValidation._name, HistoParams< T >._name, CutApplicatorBase._name, ElectronMVAEstimatorRun2Phys14NonTrig._name, PhotonMVAEstimatorRun2Spring15NonTrig._name, PhotonMVAEstimatorRun2Phys14NonTrig._name, ElectronMVAEstimatorRun2Spring15Trig._name, GeometricDetExtra._name, ElectronMVAEstimatorRun2Spring15NonTrig._name, HistoParams< TH2F >._name, HistoParams< TProfile2D >._name, plotting.Subtract._name, Vispa.Views.PropertyView.Property._name, SequenceTypes.SequencePlaceholder._name, plotting.Subtract._nameA, plotting.Subtract._nameB, HistoParams< T >._title, hcaldqm::axis::Axis._title, HistoParams< TH2F >._title, HistoParams< TProfile2D >._title, plotting.Subtract._title, html.PageSet._title, and html.HtmlReport._title.

263  def create(self, tdirectory):
264  """Create and return the fake+duplicate histogram from a TDirectory"""
265  histoA = _getObject(tdirectory, self._nameA)
266  histoB = _getObject(tdirectory, self._nameB)
267 
268  if not histoA or not histoB:
269  return None
270 
271  ret = histoA.Clone(self._name)
272  ret.SetTitle(self._title)
273 
274  for i in xrange(1, histoA.GetNbinsX()+1):
275  val = histoA.GetBinContent(i)-histoB.GetBinContent(i)
276  ret.SetBinContent(i, val)
277  ret.SetBinError(i, math.sqrt(val))
278 
279  return ret
def _getObject
Definition: plotting.py:14

Member Data Documentation

plotting.Subtract._name
private

Definition at line 253 of file plotting.py.

Referenced by plotting.Subtract.__str__(), plotting.FakeDuplicate.__str__(), plotting.AggregateBins.__str__(), plotting.AggregateHistos.__str__(), plotting.ROC.__str__(), plotting.PlotGroup._drawSeparate(), plotting.PlotGroup._save(), plotting.Subtract.create(), plotting.FakeDuplicate.create(), plotting.AggregateBins.create(), plotting.AggregateHistos.create(), plotting.Plot.create(), plotting.PlotGroup.draw(), plotting.Plot.getName(), plotting.PlotGroup.getName(), plotting.PlotterFolder.getName(), plotting.PlotterItem.getName(), plotting.PlotterFolder.getSelectionNameIterator(), validation.SimpleSample.name(), trackingPlots.Iteration.name(), plotting.PlotterItem.readDirs(), and plotting.PlotGroup.remove().

plotting.Subtract._nameA
private

Definition at line 254 of file plotting.py.

Referenced by plotting.Subtract.create().

plotting.Subtract._nameB
private

Definition at line 255 of file plotting.py.

Referenced by plotting.Subtract.create().

plotting.Subtract._title
private

Definition at line 256 of file plotting.py.

Referenced by plotting.Subtract.create(), plotting.FakeDuplicate.create(), and plotting.Plot.create().