_Merge_
Module that generates standard merge job configurations for use in any
standard processing
def Merge.mergeProcess |
( |
* |
inputFiles, |
|
|
** |
options |
|
) |
| |
_mergeProcess_
Creates and returns a merge process that will merge the provided
filenames
supported options:
- process_name : name of the process, defaults to Merge
- outputmod_label : label of the output module, defaults to Merged
- newDQMIO : specifies if the new DQM format should be used to merge the files
- output_file : sets the output file name
- output_lfn : sets the output LFN
- mergeNANO : to merge NanoAOD
- bypassVersionCheck : to bypass version check in case merging happened in lower version of CMSSW (i.e. UL HLT case). This will be FALSE by default.
Definition at line 16 of file Merge.py.
20 Creates and returns a merge process that will merge the provided
25 - process_name : name of the process, defaults to Merge
26 - outputmod_label : label of the output module, defaults to Merged
27 - newDQMIO : specifies if the new DQM format should be used to merge the files
28 - output_file : sets the output file name
29 - output_lfn : sets the output LFN
30 - mergeNANO : to merge NanoAOD
31 - bypassVersionCheck : to bypass version check in case merging happened in lower version of CMSSW (i.e. UL HLT case). This will be FALSE by default.
37 processName = options.get(
"process_name",
"Merge")
38 outputModLabel = options.get(
"outputmod_label",
"Merged")
39 outputFilename = options.get(
"output_file",
"Merged.root")
40 outputLFN = options.get(
"output_lfn",
None)
41 dropDQM = options.get(
"drop_dqm",
False)
42 newDQMIO = options.get(
"newDQMIO",
False)
43 mergeNANO = options.get(
"mergeNANO",
False)
44 bypassVersionCheck = options.get(
"bypassVersionCheck",
False)
48 process = Process(processName)
54 process.source =
Source(
"DQMRootSource", reScope = CfgTypes.untracked.string(
""))
55 process.add_(
Service(
"DQMStore"))
57 process.source =
Source(
"PoolSource")
58 if bypassVersionCheck:
59 process.source.bypassVersionCheck = CfgTypes.untracked.bool(
True)
61 process.source.inputCommands = CfgTypes.untracked.vstring(
'keep *',
'drop *_EDMtoMEConverter_*_*')
62 process.source.fileNames = CfgTypes.untracked(CfgTypes.vstring())
63 for entry
in inputFiles:
64 process.source.fileNames.append(
str(entry))
70 outMod = OutputModule(
"DQMRootOutputModule")
73 outMod = OutputModule(
"NanoAODOutputModule",Configuration.EventContent.EventContent_cff.NANOAODEventContent.clone())
74 process.add_(
Service(
"InitRootHandlers", EnableIMT = CfgTypes.untracked.bool(
False)))
76 outMod = OutputModule(
"PoolOutputModule")
78 outMod.fileName = CfgTypes.untracked.string(outputFilename)
80 outMod.logicalFileName = CfgTypes.untracked.string(outputLFN)
81 setattr(process, outputModLabel, outMod)
83 process.outputPath = EndPath(outMod)
References CollectionTags_cfi.Source, and str.
Referenced by Scenario.Scenario.merge().