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.PlotterInstance Class Reference

Public Member Functions

def __init__
 
def iterFolders
 

Private Attributes

 _plotterFolders
 

Detailed Description

Instance of plotter that knows the directory content, holds many folders.

Definition at line 1841 of file plotting.py.

Constructor & Destructor Documentation

def plotting.PlotterInstance.__init__ (   self,
  folders 
)

Definition at line 1843 of file plotting.py.

1844  def __init__(self, folders):
1845  self._plotterFolders = filter(lambda f: f is not None, folders)

Member Function Documentation

def plotting.PlotterInstance.iterFolders (   self,
  limitSubFoldersOnlyTo = None 
)

Definition at line 1846 of file plotting.py.

References plotting.PlotterInstance._plotterFolders.

1847  def iterFolders(self, limitSubFoldersOnlyTo=None):
1848  for plotterFolder in self._plotterFolders:
1849  limitOnlyTo = None
1850  if limitSubFoldersOnlyTo is not None:
1851  limitOnlyTo = limitSubFoldersOnlyTo.get(plotterFolder.getName(), None)
1852 
1853  for dqmSubFolder in plotterFolder.getDQMSubFolders(limitOnlyTo=limitOnlyTo):
1854  yield plotterFolder, dqmSubFolder
1855 
# Helper for Plotter

Member Data Documentation

plotting.PlotterInstance._plotterFolders
private

Definition at line 1844 of file plotting.py.

Referenced by plotting.PlotterInstance.iterFolders().