|
|
Go to the documentation of this file.
3 from __future__
import absolute_import
7 from .pipe
import pipe
as _pipe
8 from .options
import globalTag
9 from itertools
import islice
12 i = iterator.__iter__()
14 l = list(islice(i, n))
42 self.
labels[
'process'] =
'fragment'
43 self.
labels[
'dict'] =
'fragment.__dict__'
45 self.
labels[
'process'] =
'process'
46 self.
labels[
'dict'] =
'process.__dict__'
48 if self.
config.prescale
and (self.
config.prescale.lower() !=
'none'):
52 from .confdbOfflineConverter
import OfflineConverter
64 if ".py" in self.
config.setup:
65 self.
config.setupFile = self.
config.setup.split(
".py")[0]
67 args = [
'--configName', self.
config.setup ]
68 args.append(
'--noedsources')
69 args.append(
'--nopaths')
72 args.extend((
'--'+key,
','.
join(vals)))
75 if 'ERROR' in err
or 'Exhausted Resultset' in err
or 'CONFIG_NOT_FOUND' in err:
76 sys.stderr.write(
"%s: error while retrieving the HLT setup menu\n\n" % os.path.basename(sys.argv[0]))
77 sys.stderr.write(err +
"\n\n")
80 outfile = open(self.
config.setupFile+
".py",
"w+")
81 outfile.write(
"# This file is automatically generated by hltGetConfiguration.\n" + data)
85 args = [
'--runNumber', self.
config.menu.run]
87 args = [
'--configName', self.
config.menu.name ]
90 args.append(
'--noedsources')
93 args.extend((
'--'+key,
','.
join(vals)))
96 if 'ERROR' in err
or 'Exhausted Resultset' in err
or 'CONFIG_NOT_FOUND' in err:
97 sys.stderr.write(
"%s: error while retrieving the HLT menu\n\n" % os.path.basename(sys.argv[0]))
98 sys.stderr.write(err +
"\n\n")
104 args = [
'--runNumber', self.
config.menu.run]
106 args = [
'--configName', self.
config.menu.name]
117 if 'ERROR' in err
or 'Exhausted Resultset' in err
or 'CONFIG_NOT_FOUND' in err:
118 sys.stderr.write(
"%s: error while retrieving the list of paths from the HLT menu\n\n" % os.path.basename(sys.argv[0]))
119 sys.stderr.write(err +
"\n\n")
121 filter = re.compile(
r' *= *cms.(End)?Path.*')
122 paths = [ filter.sub(
'', line)
for line
in data.splitlines()
if filter.search(line) ]
137 filter = re.compile(
r'^' + glob.replace(
'?',
'.').
replace(
'*',
'.*').
replace(
'[!',
'[^') +
r'$')
138 matches.extend( negate + element
for element
in collection
if filter.match(element) )
147 for element
in elements:
148 if element[0] ==
'-':
149 result.add( element )
151 result.discard(
'-' + element )
152 return sorted( element
for element
in result )
159 for element
in elements:
160 if element[0] ==
'-':
161 result.discard( element[1:] )
163 result.add( element )
164 return sorted( element
for element
in result )
171 self.
data = re.sub(
r'\bprocess\b',
'fragment', self.
data )
172 self.
data = re.sub(
r'\bProcess\b',
'ProcessFragment', self.
data )
181 # add specific customizations
182 from HLTrigger.Configuration.customizeHLTforALL import customizeHLTforAll
183 fragment = customizeHLTforAll(fragment,"%s")
189 if self.
config.type==
"Fake":
191 elif self.
config.type
in (
"Fake1",
"Fake2",
"2018"):
195 _gtData =
"auto:"+prefix+
"_hlt_"+self.
config.type
196 _gtMc =
"auto:"+prefix+
"_mc_" +self.
config.type
198 # add specific customizations
200 _customInfo['menuType' ]= "%s"
201 _customInfo['globalTags']= {}
202 _customInfo['globalTags'][True ] = "%s"
203 _customInfo['globalTags'][False] = "%s"
204 _customInfo['inputFiles']={}
205 _customInfo['inputFiles'][True] = "file:RelVal_Raw_%s_DATA.root"
206 _customInfo['inputFiles'][False] = "file:RelVal_Raw_%s_MC.root"
207 _customInfo['maxEvents' ]= %s
208 _customInfo['globalTag' ]= "%s"
209 _customInfo['inputFile' ]= %s
210 _customInfo['realData' ]= %s
211 from HLTrigger.Configuration.customizeHLTforALL import customizeHLTforAll
212 %%(process)s = customizeHLTforAll(%%(process)s,"%s",_customInfo)
216 from HLTrigger.Configuration.customizeHLTforCMSSW import customizeHLTforCMSSW
217 %%(process)s = customizeHLTforCMSSW(%%(process)s,"%s")
222 # Eras-based customisations
223 from HLTrigger.Configuration.Eras import modifyHLTforEras
224 modifyHLTforEras(%(process)s)
229 self.
data +=
"#User-defined customization functions\n"
230 for customise
in self.
config.customise.split(
","):
231 customiseValues = customise.split(
".")
232 if len(customiseValues)>=3:
raise Exception(
"--customise option cannot contain more than one dot.")
233 if len(customiseValues)==1:
234 customiseValues.append(
"customise")
235 customiseValues[0] = customiseValues[0].
replace(
"/",
".")
236 self.
data +=
"from "+customiseValues[0]+
" import "+customiseValues[1]+
"\n"
237 self.
data +=
"process = "+customiseValues[1]+
"(process)\n"
244 if not self.
config.fragment:
248 if self.
config.type
in (
'HIon', ):
250 if not self.
config.fragment:
251 self.
_fix_parameter( type =
'InputTag', value =
'rawDataCollector', replace =
'rawDataRepacker')
276 # dummify hltGetConditions in cff's
277 if 'hltGetConditions' in %(dict)s and 'HLTriggerFirstPath' in %(dict)s :
278 %(process)s.hltDummyConditions = cms.EDFilter( "HLTBool",
279 result = cms.bool( True )
281 %(process)s.HLTriggerFirstPath.replace(%(process)s.hltGetConditions,%(process)s.hltDummyConditions)
286 match = re.match(
r'(Scouting\w+)Output$', path)
288 module =
'hltOutput' + match.group(1)
289 self.
data = self.
data.
replace(path+
' = cms.EndPath', path+
' = cms.Path')
322 # limit the number of events to be processed
323 %%(process)s.maxEvents = cms.untracked.PSet(
324 input = cms.untracked.int32( %d )
329 # enable TrigReport, TimeReport and MultiThreading
330 %(process)s.options = cms.untracked.PSet(
331 wantSummary = cms.untracked.bool( True ),
332 numberOfThreads = cms.untracked.uint32( 4 ),
333 numberOfStreams = cms.untracked.uint32( 0 ),
339 name: parameter name (optional)
340 type: parameter type (look for tracked and untracked variants)
341 value: original value
342 replace: replacement value
346 r'%(name)s = cms(?P<tracked>(?:\.untracked)?)\.%(type)s\( (?P<quote>["\']?)%(value)s(?P=quote)' % args,
347 r'%(name)s = cms\g<tracked>.%(type)s( \g<quote>%(replace)s\g<quote>' % args,
351 r'cms(?P<tracked>(?:\.untracked)?)\.%(type)s\( (?P<quote>["\']?)%(value)s(?P=quote)' % args,
352 r'cms\g<tracked>.%(type)s( \g<quote>%(replace)s\g<quote>' % args,
359 if self.
options[
'paths'][0][0] ==
'-':
361 for minuspath
in self.
options[
'paths']:
363 self.
data = re.sub(
r' cms.PSet\( pathName = cms.string\( "%s" \),\n prescales = cms.vuint32\( .* \)\n \),?\n' % path,
'', self.
data)
367 if path
not in self.
options[
'paths']:
368 self.
data = re.sub(
r' cms.PSet\( pathName = cms.string\( "%s" \),\n prescales = cms.vuint32\( .* \)\n \),?\n' % path,
'', self.
data)
370 if self.
config.prescale
and (self.
config.prescale.lower() !=
'none'):
373 # force the use of a specific HLT prescale column
374 if 'PrescaleService' in %(dict)s:
375 %(process)s.PrescaleService.forceDefault = True
376 %(process)s.PrescaleService.lvl1DefaultLabel = '%(prescale)s'
383 filters = [ match[1]
for match
in re.findall(
r'(process\.)?\b(\w+) = cms.EDFilter', self.
data) ]
384 re_sequence = re.compile(
r'cms\.(Path|Sequence)\((.*)\)' )
386 self.
data = re_sequence.sub(
lambda line: re.sub(
r'cms\.ignore *\( *((process\.)?\b(\w+)) *\)',
r'\1', line.group(0) ), self.
data )
387 self.
data = re_sequence.sub(
lambda line: re.sub(
r'~',
'', line.group(0) ), self.
data )
389 for some
in splitter(filters, 1000):
390 re_filters = re.compile(
r'\b((process\.)?(' +
r'|'.
join(some) +
r'))\b' )
391 self.
data = re_sequence.sub(
lambda line: re_filters.sub(
r'cms.ignore( \1 )', line.group(0) ), self.
data )
397 self.
_fix_parameter(name =
'SelectedTriggerType', type =
'int32', value =
'1', replace =
'0')
398 self.
_fix_parameter(name =
'SelectedTriggerType', type =
'int32', value =
'2', replace =
'0')
399 self.
_fix_parameter(name =
'SelectedTriggerType', type =
'int32', value =
'3', replace =
'0')
416 if self.
config.type
in globalTag:
419 self.
config.globaltag = globalTag[
'GRun']
422 if self.
config.l1.override:
424 self.
config.l1.record =
'L1TUtmTriggerMenuRcd'
425 self.
config.l1.connect =
''
427 if not self.
config.l1.snapshotTime:
428 self.
config.l1.snapshotTime =
'9999-12-31 23:59:59.000'
429 self.
config.l1cond =
'%(tag)s,%(record)s,%(connect)s,%(label)s,%(snapshotTime)s' % self.
config.l1.__dict__
435 # override the GlobalTag, connection string and pfnPrefix
436 if 'GlobalTag' in %(dict)s:
437 from Configuration.AlCa.GlobalTag import GlobalTag as customiseGlobalTag
438 %(process)s.GlobalTag = customiseGlobalTag(%(process)s.GlobalTag"""
440 text +=
", globaltag = %s" % repr(self.
config.globaltag)
442 text +=
", conditions = %s" % repr(self.
config.l1cond)
448 if self.
config.l1Xml.XmlFile:
450 # override the GlobalTag's L1T menu from an Xml file
451 from HLTrigger.Configuration.CustomConfigs import L1XML
452 %%(process)s = L1XML(%%(process)s,"%s")
453 """ % (self.
config.l1Xml.XmlFile)
460 # run the Full L1T emulator, then repack the data into a new RAW collection, to be used by the HLT
461 from HLTrigger.Configuration.CustomConfigs import L1REPACK
462 %%(process)s = L1REPACK(%%(process)s,"%s")
463 """ % (self.
config.emulator)
470 if not self.
config.hilton:
472 r'\b(process\.)?hltOutput(\w+) *= *cms\.OutputModule\( *"(ShmStreamConsumer)" *,',
473 r'%(process)s.hltOutput\2 = cms.OutputModule( "PoolOutputModule",\n fileName = cms.untracked.string( "output\2.root" ),\n fastCloning = cms.untracked.bool( False ),\n dataset = cms.untracked.PSet(\n filterName = cms.untracked.string( "" ),\n dataTier = cms.untracked.string( "RAW" )\n ),',
477 r'\b(process\.)?hltOutput(\w+) *= *cms\.OutputModule\( *"EvFOutputModule" *,\n use_compression = cms.untracked.bool\( True \),\n compression_algorithm = cms.untracked.string\( "ZLIB" \),\n compression_level = cms.untracked.int32\( 1 \),\n lumiSection_interval = cms.untracked.int32\( 0 \),\n(.+?),\n psetMap = cms.untracked.InputTag\( "hltPSetMap" \)\n',
478 r'\1hltOutput\2 = cms.OutputModule( "PoolOutputModule",\n fileName = cms.untracked.string( "output\2.root" ),\n fastCloning = cms.untracked.bool( False ),\n dataset = cms.untracked.PSet(\n filterName = cms.untracked.string( "" ),\n dataTier = cms.untracked.string( "RAW" )\n ),\n\3\n',
479 self.
data,0,re.DOTALL
482 if not self.
config.fragment
and self.
config.output ==
'minimal':
485 # add a single "keep *" output
486 %(process)s.hltOutputMinimal = cms.OutputModule( "PoolOutputModule",
487 fileName = cms.untracked.string( "output.root" ),
488 fastCloning = cms.untracked.bool( False ),
489 dataset = cms.untracked.PSet(
490 dataTier = cms.untracked.string( 'AOD' ),
491 filterName = cms.untracked.string( '' )
493 outputCommands = cms.untracked.vstring( 'drop *',
494 'keep edmTriggerResults_*_*_*',
495 'keep triggerTriggerEvent_*_*_*'
498 %(process)s.MinimalOutput = cms.EndPath( %(process)s.hltOutputMinimal )
500 elif not self.
config.fragment
and self.
config.output ==
'full':
503 # add a single "keep *" output
504 %(process)s.hltOutputFull = cms.OutputModule( "PoolOutputModule",
505 fileName = cms.untracked.string( "output.root" ),
506 fastCloning = cms.untracked.bool( False ),
507 dataset = cms.untracked.PSet(
508 dataTier = cms.untracked.string( 'RECO' ),
509 filterName = cms.untracked.string( '' )
511 outputCommands = cms.untracked.vstring( 'keep *' )
513 %(process)s.FullOutput = cms.EndPath( %(process)s.hltOutputFull )
518 if self.
config.eras
is None:
520 from Configuration.StandardSequences.Eras
import eras
521 erasSplit = self.
config.eras.split(
',')
522 self.
data = re.sub(
r'process = cms.Process\( *"\w+"',
'\n'.
join(eras.pythonCfgLines[era]
for era
in erasSplit)+
'\n\g<0>, '+
', '.
join(era
for era
in erasSplit), self.
data)
526 if self.
config.setup
is None:
529 self.
data = self.
data[:processLine]+
'\nprocess.load("%s")'%self.
config.setupFile+self.
data[processLine:]
533 if self.
config.name
is None:
540 self.
data = re.compile(
r'^(process\s*=\s*cms\.Process\(\s*' + quote +
r')\w+(' + quote +
r'\s*\).*)$', re.MULTILINE).sub(
r'\1%s\2' % self.
config.name, self.
data, 1)
544 # avoid PrescaleService error due to missing HLT paths
545 if 'PrescaleService' in process.__dict__:
546 for pset in reversed(process.PrescaleService.prescaleTable):
547 if not hasattr(process,pset.pathName.value()):
548 process.PrescaleService.prescaleTable.remove(pset)
555 if 'MessageLogger' in %(dict)s:
556 %(process)s.MessageLogger.TriggerSummaryProducerAOD = cms.untracked.PSet()
557 %(process)s.MessageLogger.L1GtTrigReport = cms.untracked.PSet()
558 %(process)s.MessageLogger.L1TGlobalSummary = cms.untracked.PSet()
559 %(process)s.MessageLogger.HLTrigReport = cms.untracked.PSet()
560 %(process)s.MessageLogger.FastReport = cms.untracked.PSet()
561 %(process)s.MessageLogger.ThroughputService = cms.untracked.PSet()
569 if 'GlobalTag' in %%(dict)s:
571 for condition
in conditions:
572 self.
data +=
""" %%(process)s.GlobalTag.toGet.append(
574 record = cms.string( '%(record)s' ),
575 tag = cms.string( '%(tag)s' ),
576 label = cms.untracked.string( '%(label)s' ),
585 return 'from %s import *\n' % module
587 return 'process.load( "%s" )\n' % module
595 self.
data +=
"if '%s' in %%(dict)s:\n" % module
596 for (parameter, value)
in parameters:
597 self.
data +=
" %%(process)s.%s.%s = %s\n" % (module, parameter, value)
605 # instrument the menu with the modules and EndPath needed for timing studies
608 self.
data +=
'\n# configure the FastTimerService\n'
609 self.
loadCff(
'HLTrigger.Timer.FastTimerService_cfi')
611 self.
data +=
"""# print a text summary at the end of the job
612 %(process)s.FastTimerService.printEventSummary = False
613 %(process)s.FastTimerService.printRunSummary = False
614 %(process)s.FastTimerService.printJobSummary = True
617 %(process)s.FastTimerService.enableDQM = True
619 # enable per-path DQM plots (starting with CMSSW 9.2.3-patch2)
620 %(process)s.FastTimerService.enableDQMbyPath = True
622 # enable per-module DQM plots
623 %(process)s.FastTimerService.enableDQMbyModule = True
625 # enable per-event DQM plots vs lumisection
626 %(process)s.FastTimerService.enableDQMbyLumiSection = True
627 %(process)s.FastTimerService.dqmLumiSectionsRange = 2500
629 # set the time resolution of the DQM plots
630 %(process)s.FastTimerService.dqmTimeRange = 2000.
631 %(process)s.FastTimerService.dqmTimeResolution = 10.
632 %(process)s.FastTimerService.dqmPathTimeRange = 1000.
633 %(process)s.FastTimerService.dqmPathTimeResolution = 5.
634 %(process)s.FastTimerService.dqmModuleTimeRange = 200.
635 %(process)s.FastTimerService.dqmModuleTimeResolution = 1.
637 # set the base DQM folder for the plots
638 %(process)s.FastTimerService.dqmPath = 'HLT/TimerService'
639 %(process)s.FastTimerService.enableDQMbyProcesses = False
644 if not self.
config.hilton:
648 if 'hltDQMFileSaverPB' in self.
data:
649 self.
data = re.sub(
r'\b(process\.)?hltDQMFileSaverPB \+ ',
'', self.
data)
650 self.
data = re.sub(
r' \+ \b(process\.)?hltDQMFileSaverPB',
'', self.
data)
651 self.
data = re.sub(
r'\b(process\.)?hltDQMFileSaverPB',
'', self.
data)
653 if 'hltDQMFileSaver' in self.
data:
654 self.
data = re.sub(
r'\b(process\.)?hltDQMFileSaver \+ ',
'', self.
data)
655 self.
data = re.sub(
r' \+ \b(process\.)?hltDQMFileSaver',
'', self.
data)
656 self.
data = re.sub(
r'\b(process\.)?hltDQMFileSaver',
'', self.
data)
659 dqmstore =
"\n# load the DQMStore and DQMRootOutputModule\n"
662 %(process)s.dqmOutput = cms.OutputModule("DQMRootOutputModule",
663 fileName = cms.untracked.string("DQMIO.root")
667 empty_path = re.compile(
r'.*\b(process\.)?DQMOutput = cms\.EndPath\( *\).*')
668 other_path = re.compile(
r'(.*\b(process\.)?DQMOutput = cms\.EndPath\()(.*)')
669 if empty_path.search(self.
data):
671 self.
data = empty_path.sub(dqmstore +
'\n%(process)s.DQMOutput = cms.EndPath( %(process)s.dqmOutput )\n', self.
data)
672 elif other_path.search(self.
data):
674 self.
data = other_path.sub(dqmstore +
r'\g<1> %(process)s.dqmOutput +\g<3>', self.
data)
677 self.
data += dqmstore
678 self.
data +=
'\n%(process)s.DQMOutput = cms.EndPath( %(process)s.dqmOutput )\n'
683 sys.stderr.write(
'Path selection:\n')
685 sys.stderr.write(
'\t%s\n' % path)
686 sys.stderr.write(
'\n\n')
693 paths = self.
config.paths.split(
',')
703 if self.
config.fragment
or self.
config.output
in (
'none', ):
709 paths.append(
"-*Output" )
710 paths.append(
"-RatesMonitoring")
711 paths.append(
"-DQMHistograms")
712 if self.
config.fragment: paths.append(
"Scouting*Output" )
714 elif self.
config.output
in (
'dqm',
'minimal',
'full'):
717 paths.append(
"DQMHistograms" )
720 paths.append(
"-*Output" )
721 paths.append(
"-RatesMonitoring")
722 if self.
config.fragment: paths.append(
"Scouting*Output" )
727 paths.append(
"*Output" )
728 paths.append(
"DQMHistograms" )
735 paths.append(
"-HLTAnalyzerEndpath" )
738 paths.append(
"-OfflineOutput" )
747 raise RuntimeError(
'Error: option "--paths %s" does not select any valid paths' % self.
config.paths)
763 if not self.
config.hilton:
774 self.
options[
'essources'].
append(
"-XMLIdealGeometryESSource" )
793 self.
options[
'esmodules'].
append(
"-CaloTowerHardcodeGeometryEP" )
794 self.
options[
'esmodules'].
append(
"-CastorHardcodeGeometryEP" )
797 self.
options[
'esmodules'].
append(
"-EcalElectronicsMappingBuilder" )
799 self.
options[
'esmodules'].
append(
"-EcalLaserCorrectionService" )
800 self.
options[
'esmodules'].
append(
"-EcalPreshowerGeometryEP" )
801 self.
options[
'esmodules'].
append(
"-HcalHardcodeGeometryEP" )
803 self.
options[
'esmodules'].
append(
"-MuonNumberingInitialization" )
804 self.
options[
'esmodules'].
append(
"-ParametrizedMagneticFieldProducer" )
807 self.
options[
'esmodules'].
append(
"-SiStripRecHitMatcherESProducer" )
808 self.
options[
'esmodules'].
append(
"-SiStripQualityESProducer" )
809 self.
options[
'esmodules'].
append(
"-StripCPEfromTrackAngleESProducer" )
810 self.
options[
'esmodules'].
append(
"-TrackerAdditionalParametersPerDetESModule" )
811 self.
options[
'esmodules'].
append(
"-TrackerDigiGeometryESModule" )
812 self.
options[
'esmodules'].
append(
"-TrackerGeometricDetESModule" )
813 self.
options[
'esmodules'].
append(
"-VolumeBasedMagneticFieldESProducer" )
816 self.
options[
'esmodules'].
append(
"-L1GtTriggerMaskAlgoTrigTrivialProducer" )
817 self.
options[
'esmodules'].
append(
"-L1GtTriggerMaskTechTrigTrivialProducer" )
818 self.
options[
'esmodules'].
append(
"-hltESPEcalTrigTowerConstituentsMapBuilder" )
819 self.
options[
'esmodules'].
append(
"-hltESPGlobalTrackingGeometryESProducer" )
820 self.
options[
'esmodules'].
append(
"-hltESPMuonDetLayerGeometryESProducer" )
821 self.
options[
'esmodules'].
append(
"-hltESPTrackerRecoGeometryESProducer" )
824 self.
options[
'esmodules'].
append(
"-CaloTowerGeometryFromDBEP" )
825 self.
options[
'esmodules'].
append(
"-CastorGeometryFromDBEP" )
826 self.
options[
'esmodules'].
append(
"-EcalBarrelGeometryFromDBEP" )
827 self.
options[
'esmodules'].
append(
"-EcalEndcapGeometryFromDBEP" )
828 self.
options[
'esmodules'].
append(
"-EcalPreshowerGeometryFromDBEP" )
840 self.
options[
'modules'].
append(
"-hltOutputScoutingCaloMuon" )
843 if self.
config.fragment
or (self.
config.prescale
and (self.
config.prescale.lower() ==
'none')):
851 if len(filenames) > 255:
858 self.
data +=
" %s = cms.untracked.vstring%s\n" % (name, token_open)
859 for line
in filenames:
860 self.
data +=
" '%s',\n" % line
861 self.
data +=
" %s,\n" % (token_close)
866 if input[0:8] ==
'dataset:':
867 from .dasFileQuery
import dasFileQuery
873 files = input.split(
',')
886 self.
source = [
"file:RelVal_Raw_%s_DATA.root" % self.
config.type ]
889 self.
source = [
"file:RelVal_Raw_%s_MC.root" % self.
config.type ]
896 %(process)s.source = cms.Source( "PoolSource",
902 inputCommands = cms.untracked.vstring(
def specificCustomize(self)
def loadCffCommand(self, module)
def getRawConfigurationFromDB(self)
def loadAdditionalConditions(self, comment, *conditions)
def consolidatePositiveList(elements)
static std::string join(char **cmd)
def instrumentOpenMode(self)
def overrideParameters(self, module, parameters)
void find(edm::Handle< EcalRecHitCollection > &hits, DetId thisDet, std::vector< EcalRecHitCollection::const_iterator > &hit, bool debug=false)
def consolidateNegativeList(elements)
def append_filenames(self, name, filenames)
def expandWildcards(globs, collection)
def getSetupConfigurationFromDB(self)
def _fix_parameter(self, **args)
def overrideProcessName(self)
def splitter(iterator, n)
def instrumentErrorEventType(self)
def __init__(self, configuration)
def instrumentTiming(self)
def addGlobalOptions(self)
def expand_filenames(self, input)
def overrideGlobalTag(self)
def overrideL1MenuXml(self)
def loadCff(self, module)
def updateMessageLogger(self)
def replace(string, replacements)