CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
options.py
Go to the documentation of this file.
1 # available "type"s and relative global tags
2 globalTag = {
3  'Fake' : 'auto:run1_mc_Fake',
4  'Fake1': 'auto:run2_mc_Fake1',
5  'FULL' : 'auto:run2_mc_FULL',
6  'GRun' : 'auto:run2_mc_GRun', # used as default
7  '25ns10e33_v2' : 'auto:run2_mc_GRun',
8  'HIon' : 'auto:run2_mc_HIon',
9  'PIon' : 'auto:run2_mc_PIon',
10  'PRef' : 'auto:run2_mc_PRef',
11  'data' : 'auto:run2_hlt_relval',
12 }
13 
14 
15 # type used to store a reference to an L1 menu
16 class ConnectionL1TMenu(object):
17  def __init__(self, value):
18  self.override = None
19  self.snapshotTime = None
20 
21  # extract the override tag and the connection string
22  if value:
23  if ',' in value:
24  self.override = value.split(',')[0]
25  self.snapshotTime = value.split(',')[1]
26  else:
27  self.override = value
28  self.smapshotTime = None
29 
30 
31 # type used to store a reference to an L1 menu
32 class ConnectionL1TMenuXml(object):
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
48 class ConnectionHLTMenu(object):
49  valid_versions = 'v1', 'v2'
50  valid_databases = 'online', 'offline', 'adg'
51  compatibility = { 'hltdev': ('v1', 'offline'), 'orcoff': ('v2', 'adg') }
52 
53  def __init__(self, value):
54  self.version = None
55  self.database = None
56  self.name = None
57  self.run = None
58 
59  if not value:
60  return
61 
62  if not ':' in value:
63  # default to 'v1/offline'
64  self.version = 'v1'
65  self.database = 'offline'
66  self.name = value
67  return
68 
69  # extract the version, database and configuration name
70  tokens = value.split(':')
71  if len(tokens) != 2:
72  raise Exception('Invalid HLT menu specification "%s"' % value)
73  (db, name) = tokens
74  # check if the menu should be automatically determined based on the run number
75  if db == 'run':
76  self.version = 'v2'
77  self.database = 'adg'
78  self.run = name
79  # check for backward compatibility names
80  elif db in self.compatibility:
81  self.version, self.database = self.compatibility[db]
82  self.name = name
83  else:
84  if '/' in db:
85  # extract the version and database
86  tokens = db.split('/')
87  if len(tokens) != 2:
88  raise Exception('Invalid HLT menu specification "%s"' % value)
89  (v, db) = tokens
90  if v not in self.valid_versions:
91  raise Exception('Invalid HLT database version "%s", valid values are "%s"' % (v, '", "'.join(self.valid_versions)))
92  if db not in self.valid_databases:
93  raise Exception('Invalid HLT database "%s", valid values are "%s"' % (db, '", "'.join(self.valid_databases)))
94  self.version = v
95  self.database = db
96  self.name = name
97  else:
98  # use the default version for the given database
99  if db not in self.valid_databases:
100  raise Exception('Invalid HLT database "%s", valid values are "%s"' % (db, '", "'.join(self.valid_databases)))
101  self.database = db
102  if db == 'offline' :
103  self.version = 'v1'
104  else:
105  self.version = 'v2'
106  self.name = name
107 
108 # options marked with a (*) only apply when creating a whole process configuration
109 class HLTProcessOptions(object):
110  def __init__(self):
111  self.menu = None # hlt menu
112  self.name = 'HLTX' # (*) if set, override the process name
113  self.type = 'GRun' # defines global options for 'GRun', 'HIon', 'PIon', 'PRef' or 'online' menus
114  self.data = True # run on data (true) or mc (false)
115  self.online = False # (*) run online (true) or offline (false)
116  self.globaltag = None # (*) if set, override the GlobalTag
117  self.l1 = None # (*) if set, override the L1 menu
118  self.l1Xml = None # (*) if set, override the L1 menu Xml
119  self.emulator = None # (*) if set, run (part of) the L1 emulator instead of taking the L1 results from the data
120  self.prescale = None # (*) if set, force the use of a specific prescale column. If set to "none", unprescale all paths
121  self.open = False # if set, cms.ignore all filters, making all paths run on and accept all events
122  self.errortype = False # if set, change all HLTTriggerTypeFilter EDFilters to accept only error events (SelectedTriggerType = 0)
123  self.profiling = False # if set, instrument the menu for profiling measurements
124  self.timing = False # if set, instrument the menu for timing measurements (implies profiling)
125  self.paths = None # if set, include in the dump only the given paths (wildcards are supported)
126  self.input = None # (*) if set, specify the input file(s) or dataset
127  self.parent = None # (*) if set, specify the parent input file(s) or dataset
128  self.events = 100 # (*) run on these many events
129  self.output = 'all' # (*) output 'all', 'minimal' or 'none' output modules
130  self.fragment = False # prepare a configuration fragment (true) or a whole process (false)
131  self.hilton = False # prepare a configuration for running with hilton-like modules
132 
133 
134  # convert HLT and L1 menus to a dedicated object representation on the fly
135  def __setattr__(self, name, value):
136  if name is 'menu' and type(value) is not ConnectionHLTMenu:
137  # format 'menu' as needed
138  object.__setattr__(self, name, ConnectionHLTMenu(value))
139  elif name is 'l1' and type(value) is not ConnectionL1TMenu:
140  # format '--l1' as needed
141  object.__setattr__(self, name, ConnectionL1TMenu(value))
142  elif name is 'l1Xml' and type(value) is not ConnectionL1TMenuXml:
143  # format '--l1Xml' as needed
144  object.__setattr__(self, name, ConnectionL1TMenuXml(value))
145  elif name is 'open' and value:
146  # '--open' implies '--unprescale'
147  object.__setattr__(self, 'open', True)
148  object.__setattr__(self, 'prescale', "none")
149  elif name is 'prescale' and value is not None:
150  # '--open' overrides '--prescale', set the prescale value only if '--open' is not set
151  if not self.open:
152  object.__setattr__(self, 'prescale', value)
153  elif name is 'profiling' and value:
154  # '--profiling'
155  object.__setattr__(self, 'profiling', True)
156  elif name is 'timing' and value:
157  # '--timing' implies '--profiling'
158  object.__setattr__(self, 'timing', True)
159  object.__setattr__(self, 'profiling', True)
160  else:
161  object.__setattr__(self, name, value)
dictionary compatibility
Definition: options.py:51
static std::string join(char **cmd)
Definition: RemoteFile.cc:18