Go to the documentation of this file.00001 import FWCore.ParameterSet.Config as cms
00002
00003 def harvest_only(process):
00004 process.validationHarvesting.remove(process.hltpostvalidation)
00005
00006 def validation_only(process):
00007 process.trackMCMatchSequence.remove(process.assoc2secStepTk)
00008 process.trackMCMatchSequence.remove(process.assoc2thStepTk)
00009 process.trackMCMatchSequence.remove(process.assoc2GsfTracks)
00010 process.only_validation_and_TP = cms.Sequence(process.mix
00011 *process.trackingParticles
00012 *process.tracksValidation
00013 *process.recoMuonValidation
00014 *process.HLTMuonVal
00015 )
00016 process.validation_step.replace(process.validation,process.only_validation_and_TP)
00017