1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
import FWCore.ParameterSet.Config as cms
import copy
# AlCaReco for Bad Component Identification
OutALCARECOEcalTestPulsesRaw_noDrop = cms.PSet(
SelectEvents=cms.untracked.PSet(
SelectEvents=cms.vstring('pathALCARECOEcalTestPulsesRaw')
),
outputCommands=cms.untracked.vstring(
'keep FEDRawDataCollection_hltEcalCalibrationRaw_*_HLT',
'keep edmTriggerResults_*_*_HLT')
)
OutALCARECOEcalTestPulsesRaw = copy.deepcopy(OutALCARECOEcalTestPulsesRaw_noDrop)
OutALCARECOEcalTestPulsesRaw.outputCommands.insert(0, "drop *")
|