Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 11:58:38

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 import copy
0004 
0005 # AlCaReco for Bad Component Identification
0006 OutALCARECOEcalTestPulsesRaw_noDrop = cms.PSet(
0007     SelectEvents=cms.untracked.PSet(
0008         SelectEvents=cms.vstring('pathALCARECOEcalTestPulsesRaw')
0009     ),
0010     outputCommands=cms.untracked.vstring(
0011         'keep  FEDRawDataCollection_hltEcalCalibrationRaw_*_HLT',
0012         'keep  edmTriggerResults_*_*_HLT')
0013 )
0014 
0015 OutALCARECOEcalTestPulsesRaw = copy.deepcopy(OutALCARECOEcalTestPulsesRaw_noDrop)
0016 OutALCARECOEcalTestPulsesRaw.outputCommands.insert(0, "drop *")