test
CMS 3D CMS Logo

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

Public Member Functions

def __init__
 
def equalTo
 

Public Attributes

 subfolder
 
 translated
 

Detailed Description

Class to hold the original name and a 'translated' name of a subfolder in the DQM ROOT file

Definition at line 2485 of file plotting.py.

Constructor & Destructor Documentation

def plotting.DQMSubFolder.__init__ (   self,
  subfolder,
  translated 
)

Definition at line 2487 of file plotting.py.

2488  def __init__(self, subfolder, translated):
2489  self.subfolder = subfolder
2490  self.translated = translated

Member Function Documentation

def plotting.DQMSubFolder.equalTo (   self,
  other 
)
Equality is defined by the 'translated' name

Definition at line 2491 of file plotting.py.

References plotting.DQMSubFolder.translated.

2492  def equalTo(self, other):
2493  """Equality is defined by the 'translated' name"""
2494  return self.translated == other.translated

Member Data Documentation

plotting.DQMSubFolder.subfolder

Definition at line 2488 of file plotting.py.

plotting.DQMSubFolder.translated

Definition at line 2489 of file plotting.py.

Referenced by plotting.DQMSubFolder.equalTo().