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
options.ConnectionL1TMenuXml Class Reference
Inheritance diagram for options.ConnectionL1TMenuXml:

Public Member Functions

def __init__
 

Public Attributes

 LumiDir
 
 XmlFile
 

Detailed Description

Definition at line 38 of file options.py.

Constructor & Destructor Documentation

def options.ConnectionL1TMenuXml.__init__ (   self,
  value 
)

Definition at line 39 of file options.py.

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

Member Data Documentation

options.ConnectionL1TMenuXml.LumiDir

Definition at line 41 of file options.py.

options.ConnectionL1TMenuXml.XmlFile

Definition at line 40 of file options.py.