CMS 3D CMS Logo

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

Public Member Functions

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

Private Attributes

 _histo
 
 _name
 
 _title
 

Detailed Description

Class for making a cut efficiency histograms.

      N after cut
eff = -----------
        N total

Definition at line 895 of file plotting.py.

Constructor & Destructor Documentation

def plotting.CutEfficiency.__init__ (   self,
  name,
  histo,
  title = "" 
)
Constructor

Arguments:
name  -- String for name of the resulting histogram
histo -- String for a source histogram (needs to be cumulative)

Definition at line 902 of file plotting.py.

902  def __init__(self, name, histo, title=""):
903  """Constructor
904 
905  Arguments:
906  name -- String for name of the resulting histogram
907  histo -- String for a source histogram (needs to be cumulative)
908  """
909  self._name = name
910  self._histo = histo
911  self._title = title
912 
def __init__(self, name, histo, title="")
Definition: plotting.py:902

Member Function Documentation

def plotting.CutEfficiency.__str__ (   self)
def plotting.CutEfficiency.create (   self,
  tdirectory 
)
Create and return the cut efficiency histogram from a TDirectory

Definition at line 917 of file plotting.py.

References plotting._getOrCreateObject(), plotting.Transform._histo, plotting.CutEfficiency._histo, 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, plotting.Transform._name, plotting.FakeDuplicate._name, plotting.CutEfficiency._name, SequenceTypes.TaskPlaceholder._name, HistoParams< T >._title, HistoParams< TH2F >._title, SiStripHitEffFromCalibTree._title, HistoParams< TProfile2D >._title, html.PageSet._title, html.HtmlReport._title, plotting.Subtract._title, plotting.Transform._title, plotting.FakeDuplicate._title, and plotting.CutEfficiency._title.

917  def create(self, tdirectory):
918  """Create and return the cut efficiency histogram from a TDirectory"""
919  histo = _getOrCreateObject(tdirectory, self._histo)
920  if not histo:
921  return None
922 
923  # infer cumulative direction from the under/overflow bins
924  ascending = histo.GetBinContent(0) < histo.GetBinContent(histo.GetNbinsX())
925  if ascending:
926  n_tot = histo.GetBinContent(histo.GetNbinsX())
927  else:
928  n_tot = histo.GetBinContent(0)
929 
930  if n_tot == 0:
931  return histo
932 
933  ret = histo.Clone(self._name)
934  ret.SetTitle(self._title)
935 
936  # calculate efficiency
937  for i in xrange(1, histo.GetNbinsX()+1):
938  n = histo.GetBinContent(i)
939  val = n/n_tot
940  errVal = math.sqrt(val*(1-val)/n_tot)
941  ret.SetBinContent(i, val)
942  ret.SetBinError(i, errVal)
943  return ret
944 
def _getOrCreateObject(tdirectory, nameOrCreator)
Definition: plotting.py:56
def create(self, tdirectory)
Definition: plotting.py:917

Member Data Documentation

plotting.CutEfficiency._histo
private

Definition at line 910 of file plotting.py.

Referenced by plotting.CutEfficiency.create().

plotting.CutEfficiency._name
private
plotting.CutEfficiency._title
private

Definition at line 911 of file plotting.py.

Referenced by plotting.CutEfficiency.create(), and plotting.Plot.create().