CMS 3D CMS Logo

List of all members | Public Member Functions | Private Member Functions | Private Attributes
validation.SimpleValidation Class Reference

Public Member Functions

def __init__ (self, samples, newdir)
 
def createHtmlReport (self, validationName="")
 
def doPlots (self, plotters, plotterDrawArgs={}, kwargs)
 

Private Member Functions

def _doPlots (self, plotterFolder, dqmSubFolder)
 
def _doPlotsForPlotter (self, plotter, sample, limitSubFoldersOnlyTo=None)
 

Private Attributes

 _htmlReport
 
 _labels
 
 _newdir
 
 _openFiles
 
 _plotterDrawArgs
 
 _samples
 
 _subdirprefix
 

Detailed Description

Definition at line 1164 of file validation.py.

Constructor & Destructor Documentation

def validation.SimpleValidation.__init__ (   self,
  samples,
  newdir 
)

Definition at line 1165 of file validation.py.

1165  def __init__(self, samples, newdir):
1166  self._samples = samples
1167  self._newdir = newdir
1168  if not os.path.exists(newdir):
1169  os.makedirs(newdir)
1170 
1172 
def __init__(self, samples, newdir)
Definition: validation.py:1165

Member Function Documentation

def validation.SimpleValidation._doPlots (   self,
  plotterFolder,
  dqmSubFolder 
)
private

Definition at line 1212 of file validation.py.

References validation._findDuplicates(), DigiInvestigatorHistogramMaker._labels, SeedMultiplicityAnalyzer._labels, hitfit::Constraint_Intermed_Labels._labels, validation.SimpleValidation._labels, plotting.PlotFolder._labels, validation.SimpleValidation._newdir, validation.SimpleValidation._openFiles, validation.Validation._plotterDrawArgs, validation.SimpleValidation._plotterDrawArgs, validation.SimpleValidation._subdirprefix, join(), and genParticles_cff.map.

Referenced by validation.SimpleValidation._doPlotsForPlotter().

1212  def _doPlots(self, plotterFolder, dqmSubFolder):
1213  plotterFolder.create(self._openFiles, self._labels, dqmSubFolder)
1214  newsubdir = self._subdirprefix+plotterFolder.getSelectionName(dqmSubFolder)
1215  newdir = os.path.join(self._newdir, newsubdir)
1216  if not os.path.exists(newdir):
1217  os.makedirs(newdir)
1218  fileList = plotterFolder.draw(directory=newdir, **self._plotterDrawArgs)
1219 
1220  for tableCreator in plotterFolder.getTableCreators():
1221  self._htmlReport.addTable(tableCreator.create(self._openFiles, self._labels, dqmSubFolder))
1222 
1223 
1224  if len(fileList) == 0:
1225  return fileList
1226 
1227  dups = _findDuplicates(fileList)
1228  if len(dups) > 0:
1229  print "Plotter produced multiple files with names", ", ".join(dups)
1230  print "Typically this is a naming problem in the plotter configuration"
1231  sys.exit(1)
1232 
1233  print "Created plots in %s" % newdir
1234  return map(lambda n: n.replace(newdir, newsubdir), fileList)
def validation.SimpleValidation._doPlotsForPlotter (   self,
  plotter,
  sample,
  limitSubFoldersOnlyTo = None 
)
private

Definition at line 1203 of file validation.py.

References validation.Validation._doPlots(), validation.SimpleValidation._doPlots(), validation.SimpleValidation._openFiles, and validation._processPlotsForSample().

1203  def _doPlotsForPlotter(self, plotter, sample, limitSubFoldersOnlyTo=None):
1204  plotterInstance = plotter.readDirs(*self._openFiles)
1205  for plotterFolder, dqmSubFolder in plotterInstance.iterFolders(limitSubFoldersOnlyTo=limitSubFoldersOnlyTo):
1206  if sample is not None and not _processPlotsForSample(plotterFolder, sample):
1207  continue
1208  plotFiles = self._doPlots(plotterFolder, dqmSubFolder)
1209  if len(plotFiles) > 0:
1210  self._htmlReport.addPlots(plotterFolder, dqmSubFolder, plotFiles)
1211 
def _doPlots(self, plotterFolder, dqmSubFolder)
Definition: validation.py:1212
def _processPlotsForSample(plotterFolder, sample)
Definition: validation.py:399
def _doPlotsForPlotter(self, plotter, sample, limitSubFoldersOnlyTo=None)
Definition: validation.py:1203
def validation.SimpleValidation.createHtmlReport (   self,
  validationName = "" 
)

Definition at line 1173 of file validation.py.

References validation.SimpleValidation._htmlReport, and validation.SimpleValidation._newdir.

1173  def createHtmlReport(self, validationName=""):
1174  if hasattr(self._htmlReport, "write"):
1175  raise Exception("HTML report object already created. There is probably some logic error in the calling code.")
1176  self._htmlReport = html.HtmlReport(validationName, self._newdir)
1177  return self._htmlReport
1178 
def createHtmlReport(self, validationName="")
Definition: validation.py:1173
def validation.SimpleValidation.doPlots (   self,
  plotters,
  plotterDrawArgs = {},
  kwargs 
)

Definition at line 1179 of file validation.py.

1179  def doPlots(self, plotters, plotterDrawArgs={}, **kwargs):
1180  self._plotterDrawArgs = plotterDrawArgs
1181 
1182  for sample in self._samples:
1183  self._subdirprefix = sample.label()
1184  self._labels = sample.legendLabels()
1185  self._htmlReport.beginSample(sample)
1186 
1187  self._openFiles = []
1188  for f in sample.files():
1189  if os.path.exists(f):
1190  self._openFiles.append(ROOT.TFile.Open(f))
1191  else:
1192  print "File %s not found (from sample %s), ignoring it" % (f, sample.name())
1193  self._openFiles.append(None)
1194 
1195  for plotter in plotters:
1196  self._doPlotsForPlotter(plotter, sample, **kwargs)
1197 
1198  for tf in self._openFiles:
1199  if tf is not None:
1200  tf.Close()
1201  self._openFiles = []
1202 
def doPlots(self, plotters, plotterDrawArgs={}, kwargs)
Definition: validation.py:1179
def _doPlotsForPlotter(self, plotter, sample, limitSubFoldersOnlyTo=None)
Definition: validation.py:1203

Member Data Documentation

validation.SimpleValidation._htmlReport
private

Definition at line 1171 of file validation.py.

Referenced by validation.SimpleValidation.createHtmlReport().

validation.SimpleValidation._labels
private

Definition at line 1184 of file validation.py.

Referenced by validation.SimpleValidation._doPlots().

validation.SimpleValidation._newdir
private
validation.SimpleValidation._openFiles
private
validation.SimpleValidation._plotterDrawArgs
private

Definition at line 1180 of file validation.py.

Referenced by validation.SimpleValidation._doPlots().

validation.SimpleValidation._samples
private

Definition at line 1166 of file validation.py.

validation.SimpleValidation._subdirprefix
private

Definition at line 1183 of file validation.py.

Referenced by validation.SimpleValidation._doPlots().