CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
PrivateSkim_EventContent_cff.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 
4 SimulationEventContent = cms.PSet(
5  outputCommands = cms.untracked.vstring(
6  'drop *_*_*_RAW',
7  'keep PSimHits_g4SimHits_TrackerHits*_RAW',
8  'keep FEDRawDataCollection_rawDataCollector__RAW',
9  ),
10  splitLevel = cms.untracked.int32(0),
11 )
12 
13 
14 
15 ReconstructionEventContent = cms.PSet(
16  outputCommands = cms.untracked.vstring(
17  'drop *_*_*_RAW',
18  'drop *_*_*_RECO',
19  'keep *_generalTracks_*_RECO',
20  'drop Trajectory*_generalTracks_*_RECO',
21  'keep Si*ClusteredmNewDetSetVector_*_*_RECO',
22  ),
23  splitLevel = cms.untracked.int32(0),
24 )
25 
26 
27 
28 ApeSkimEventContent = cms.PSet(
29  outputCommands = cms.untracked.vstring(
30  'drop *',
31  #'keep L1*_*_*_*',
32  #'drop *_L1T1*_*_*',
33  'keep *_MuSkim_*_*',
34  'keep edmTriggerResults_*_*_*'
35  #'keep Si*ClusteredmNewDetSetVector_*_*_*',
36 
37  #'drop *_ALCARECOTkAlMuonIsolated_*_*',
38 
39 
40  #'drop *_*_*_RECO',
41  #'keep L1*_*_*_RECO',
42  #'drop *_L1T1*_*_*',
43  #'drop *_MEtoEDMConverter_*_*',
44  ),
45 )