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

Constructor & Destructor Documentation

◆ __init__()

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

Definition at line 2696 of file plotting.py.

2696  def __init__(self, subfolder, translated):
2697  self.subfolder = subfolder
2698  self.translated = translated
2699 
def __init__(self, dataset, job_number, job_id, job_name, isDA, isMC, applyBOWS, applyEXTRACOND, extraconditions, runboundary, lumilist, intlumi, maxevents, gt, allFromGT, alignmentDB, alignmentTAG, apeDB, apeTAG, bowDB, bowTAG, vertextype, tracktype, refittertype, ttrhtype, applyruncontrol, ptcut, CMSSW_dir, the_dir)

Member Function Documentation

◆ equalTo()

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

Definition at line 2700 of file plotting.py.

References plotting.DQMSubFolder.translated.

2700  def equalTo(self, other):
2701  """Equality is defined by the 'translated' name"""
2702  return self.translated == other.translated
2703 

Member Data Documentation

◆ subfolder

plotting.DQMSubFolder.subfolder

Definition at line 2697 of file plotting.py.

◆ translated

plotting.DQMSubFolder.translated

Definition at line 2698 of file plotting.py.

Referenced by plotting.DQMSubFolder.equalTo().