CMS 3D CMS Logo

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  'Fake2': 'auto:run2_mc_Fake2',
6  'FULL' : 'auto:run2_mc_FULL',
7  'GRun' : 'auto:run2_mc_GRun', # used as default
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
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
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
49  valid_versions = 'v1', 'v2'
50  valid_databases = 'online', 'offline', 'adg'
51  compatibility = { 'hltdev': ('v2', '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 'v2/offline'
64  self.version = 'v2'
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 confdb v2 by default
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  self.version = 'v2'
103  self.name = name
104 
105 # options marked with a (*) only apply when creating a whole process configuration
107  def __init__(self):
108  self.menu = None # hlt menu
109  self.name = 'HLTX' # (*) if set, override the process name
110  self.type = 'GRun' # defines global options for 'GRun', 'HIon', 'PIon', 'PRef' or 'online' menus
111  self.data = True # run on data (true) or mc (false)
112  self.globaltag = None # (*) if set, override the GlobalTag
113  self.l1 = None # (*) if set, override the L1 menu
114  self.l1Xml = None # (*) if set, override the L1 menu Xml
115  self.emulator = None # (*) if set, run (part of) the L1 emulator instead of taking the L1 results from the data
116  self.prescale = None # (*) if set, force the use of a specific prescale column. If set to "none", unprescale all paths
117  self.open = False # if set, cms.ignore all filters, making all paths run on and accept all events
118  self.eras = None # if set, select the defined Eras into the HLT configuration
119  self.customise = None # if set, apply the user-defined customization functions using the format HLTrigger/Configuration/customizeHLTTrackingForPhaseI2017.customizeHLTForPFTrackingPhaseI2017
120  self.errortype = False # if set, change all HLTTriggerTypeFilter EDFilters to accept only error events (SelectedTriggerType = 0)
121  self.profiling = False # if set, instrument the menu for profiling measurements
122  self.timing = False # if set, instrument the menu for timing measurements (implies profiling)
123  self.paths = None # if set, include in the dump only the given paths (wildcards are supported)
124  self.input = None # (*) if set, specify the input file(s) or dataset
125  self.parent = None # (*) if set, specify the parent input file(s) or dataset
126  self.events = 100 # (*) run on these many events
127  self.output = 'all' # (*) output 'all', 'minimal' or 'none' output modules
128  self.fragment = False # prepare a configuration fragment (true) or a whole process (false)
129  self.hilton = False # prepare a configuration for running with hilton-like modules
130  self.setup = None # if set, downlad the setup_cff from the specified configuration and load it.
131 
132 
133  # convert HLT and L1 menus to a dedicated object representation on the fly
134  def __setattr__(self, name, value):
135  if name is 'menu' and not isinstance(value, ConnectionHLTMenu):
136  # format 'menu' as needed
137  object.__setattr__(self, name, ConnectionHLTMenu(value))
138  elif name is 'l1' and not isinstance(value, ConnectionL1TMenu):
139  # format '--l1' as needed
140  object.__setattr__(self, name, ConnectionL1TMenu(value))
141  elif name is 'l1Xml' and not isinstance(value, ConnectionL1TMenuXml):
142  # format '--l1Xml' as needed
143  object.__setattr__(self, name, ConnectionL1TMenuXml(value))
144  elif name is 'open' and value:
145  # '--open' implies '--unprescale'
146  object.__setattr__(self, 'open', True)
147  object.__setattr__(self, 'prescale', "none")
148  elif name is 'prescale' and value is not None:
149  # '--open' overrides '--prescale', set the prescale value only if '--open' is not set
150  if not self.open:
151  object.__setattr__(self, 'prescale', value)
152  elif name is 'profiling' and value:
153  # '--profiling'
154  object.__setattr__(self, 'profiling', True)
155  elif name is 'timing' and value:
156  # '--timing' implies '--profiling'
157  object.__setattr__(self, 'timing', True)
158  object.__setattr__(self, 'profiling', True)
159  else:
160  object.__setattr__(self, name, value)
def __setattr__(self, name, value)
Definition: options.py:134
def __init__(self, value)
Definition: options.py:33
def __init__(self, value)
Definition: options.py:17
static std::string join(char **cmd)
Definition: RemoteFile.cc:18
def __init__(self, value)
Definition: options.py:53