CMS 3D CMS Logo

List of all members | Public Member Functions | Public Attributes
options.ConnectionL1TMenuXml Class Reference
Inheritance diagram for options.ConnectionL1TMenuXml:

Public Member Functions

def __init__ (self, value)
 

Public Attributes

 LumiDir
 
 XmlFile
 

Detailed Description

Definition at line 36 of file options.py.

Constructor & Destructor Documentation

def options.ConnectionL1TMenuXml.__init__ (   self,
  value 
)

Definition at line 37 of file options.py.

37  def __init__(self, value):
38  self.XmlFile = None
39  self.LumiDir = None
40 
41  # extract the override tag and the connection string
42  if value:
43  if ',' in value:
44  self.XmlFile = value.split(',')[0]
45  self.LumiDir = value.split(',')[1]
46  else:
47  self.XmlFile = value
48  self.LumiDir = "startup"
49 
50 
51 # type used to store a reference to an HLT configuration
def __init__(self, value)
Definition: options.py:37

Member Data Documentation

options.ConnectionL1TMenuXml.LumiDir

Definition at line 39 of file options.py.

options.ConnectionL1TMenuXml.XmlFile

Definition at line 38 of file options.py.