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