CMS 3D CMS Logo

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

Public Member Functions

def __init__ (self, subfolder, translated)
 
def equalTo (self, other)
 

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 2677 of file plotting.py.

Constructor & Destructor Documentation

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

Definition at line 2679 of file plotting.py.

2679  def __init__(self, subfolder, translated):
2680  self.subfolder = subfolder
2681  self.translated = translated
2682 
def __init__(self, subfolder, translated)
Definition: plotting.py:2679

Member Function Documentation

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

Definition at line 2683 of file plotting.py.

References plotting.DQMSubFolder.translated.

2683  def equalTo(self, other):
2684  """Equality is defined by the 'translated' name"""
2685  return self.translated == other.translated
2686 
def equalTo(self, other)
Definition: plotting.py:2683

Member Data Documentation

plotting.DQMSubFolder.subfolder

Definition at line 2680 of file plotting.py.

plotting.DQMSubFolder.translated

Definition at line 2681 of file plotting.py.

Referenced by plotting.DQMSubFolder.equalTo().