Skip to content

Commit

Permalink
Merge pull request #21874 from arizzi/fixeMerge100X
Browse files Browse the repository at this point in the history
Fix compression level in NANOAOD production (10_0_X)
  • Loading branch information
cmsbuild committed Jan 24, 2018
2 parents fe14f11 + 622b785 commit c7c8529
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Configuration/DataProcessing/python/Merge.py
Expand Up @@ -10,6 +10,7 @@

from FWCore.ParameterSet.Config import Process, EndPath
from FWCore.ParameterSet.Modules import OutputModule, Source, Service
from Configuration.EventContent.EventContent_cff import NANOAODEventContent
import FWCore.ParameterSet.Types as CfgTypes


Expand Down Expand Up @@ -64,7 +65,7 @@ def mergeProcess(*inputFiles, **options):
if newDQMIO:
outMod = OutputModule("DQMRootOutputModule")
elif mergeNANO:
outMod = OutputModule("NanoAODOutputModule")
outMod = OutputModule("NanoAODOutputModule",NANOAODEventContent.clone())
else:
outMod = OutputModule("PoolOutputModule")

Expand Down

0 comments on commit c7c8529

Please sign in to comment.