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 32 of file options.py.

Constructor & Destructor Documentation

def options.ConnectionL1TMenuXml.__init__ (   self,
  value 
)

Definition at line 33 of file options.py.

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

Member Data Documentation

options.ConnectionL1TMenuXml.LumiDir

Definition at line 35 of file options.py.

options.ConnectionL1TMenuXml.XmlFile

Definition at line 34 of file options.py.