Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

remove Edm2ME converter from final sequence for harvesting #10325

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions Configuration/Applications/python/ConfigBuilder.py
Original file line number Diff line number Diff line change
Expand Up @@ -1954,9 +1954,8 @@ def prepare_DQM(self, sequence = 'DQMOffline'):

def prepare_HARVESTING(self, sequence = None):
""" Enrich the process with harvesting step """
self.EDMtoMECFF='Configuration/StandardSequences/EDMtoME'+self._options.harvesting+'_cff'
self.loadAndRemember(self.EDMtoMECFF)
self.scheduleSequence('EDMtoME','edmtome_step')
self.DQMSaverCFF='Configuration/StandardSequences/DQMSaver'+self._options.harvesting+'_cff'
self.loadAndRemember(self.DQMSaverCFF)

harvestingConfig = self.loadDefaultOrSpecifiedCFF(sequence,self.HARVESTINGDefaultCFF)
sequence = sequence.split('.')[-1]
Expand Down
20 changes: 20 additions & 0 deletions Configuration/StandardSequences/python/DQMSaverAtJobEnd_cff.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
import FWCore.ParameterSet.Config as cms

# needed backend
from DQMServices.Core.DQMStore_cfg import *

# needed output
from DQMServices.Components.DQMEnvironment_cfi import *


DQMStore.referenceFileName = ''
dqmSaver.convention = 'Offline'
dqmSaver.workflow = '/Global/CMSSW_X_Y_Z/RECO'

DQMStore.collateHistograms = True

dqmSaver.saveByRun = -1
dqmSaver.saveAtJobEnd = True
dqmSaver.forceRunNumber = 1

DQMSaver = cms.Sequence(dqmSaver)
16 changes: 16 additions & 0 deletions Configuration/StandardSequences/python/DQMSaverAtRunEnd_cff.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
import FWCore.ParameterSet.Config as cms

# needed backend
from DQMServices.Core.DQMStore_cfg import *

# needed output
from DQMServices.Components.DQMEnvironment_cfi import *


DQMStore.referenceFileName = ''
dqmSaver.convention = 'Offline'
dqmSaver.workflow = '/Global/CMSSW_X_Y_Z/RECO'

DQMStore.collateHistograms = False

DQMSaver = cms.Sequence(dqmSaver)