Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 11:55:57

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 
0004 SimulationEventContent = cms.PSet(
0005     outputCommands = cms.untracked.vstring(
0006     'drop  *_*_*_RAW',
0007     'keep  PSimHits_g4SimHits_TrackerHits*_RAW',
0008     'keep  FEDRawDataCollection_rawDataCollector__RAW',
0009     ),
0010     splitLevel = cms.untracked.int32(0),
0011 )
0012 
0013 
0014 
0015 ReconstructionEventContent = cms.PSet(
0016     outputCommands = cms.untracked.vstring(
0017     'drop *_*_*_RAW',
0018     'drop *_*_*_RECO',
0019     'keep *_generalTracks_*_RECO',
0020     'drop Trajectory*_generalTracks_*_RECO',
0021     'keep Si*ClusteredmNewDetSetVector_*_*_RECO',
0022     ),
0023     splitLevel = cms.untracked.int32(0),
0024 )
0025 
0026 
0027 
0028 ApeSkimEventContent = cms.PSet(
0029     outputCommands = cms.untracked.vstring(
0030     'drop *',
0031     #'keep L1*_*_*_*',
0032         #'drop *_L1T1*_*_*',
0033     'keep *_MuSkim_*_*',
0034         'keep edmTriggerResults_*_*_*'
0035     #'keep Si*ClusteredmNewDetSetVector_*_*_*',
0036     
0037     #'drop *_ALCARECOTkAlMuonIsolated_*_*',
0038     
0039     
0040     #'drop *_*_*_RECO',
0041         #'keep L1*_*_*_RECO',
0042     #'drop *_L1T1*_*_*',
0043     #'drop *_MEtoEDMConverter_*_*',
0044     ),
0045 )