1 |
import FWCore.ParameterSet.Config as cms
|
2 |
import copy
|
3 |
|
4 |
from UserCode.HbbAnalysis.EventContent_cff import *
|
5 |
|
6 |
analysisPatEventContent = copy.deepcopy(ammSkimPatEventContent)
|
7 |
|
8 |
ammPatAnaEventContent = cms.PSet(
|
9 |
outputCommands = cms.untracked.vstring(
|
10 |
'drop *_*_*_*',
|
11 |
'keep *_genParticles_*_*',
|
12 |
'keep *_allLayer0ElectronsForTauAnalyses_*_*',
|
13 |
'keep *_allLayer0MuonsForTauAnalyses_*_*',
|
14 |
'keep *_allLayer0CaloTausForTauAnalyses_*_*',
|
15 |
'keep *_allLayer0PFTausForTauAnalyses_*_*',
|
16 |
'keep *_allLayer0JetsForTauAnalyses_*_*',
|
17 |
'keep *_allLayer0JPTJetsForTauAnalyses_*_*',
|
18 |
'keep *_allLayer0PFJetsForTauAnalyses_*_*',
|
19 |
'keep *_allLayer0METsForTauAnalyses_*_*',
|
20 |
'keep *_allLayer0tcMETsForTauAnalyses_*_*',
|
21 |
'keep *_allLayer0pfMETsForTauAnalyses_*_*',
|
22 |
'keep *_allLayer1ElectronsForTauAnalyses_*_*',
|
23 |
'keep *_allLayer1MuonsForTauAnalyses_*_*',
|
24 |
'keep *_allLayer1CaloTausForTauAnalyses_*_*',
|
25 |
'keep *_allLayer1PFTausForTauAnalyses_*_*',
|
26 |
'keep *_allLayer1JetsForTauAnalyses_*_*',
|
27 |
'keep *_allLayer1JPTJetsForTauAnalyses_*_*',
|
28 |
'keep *_allLayer1PFJetsForTauAnalyses_*_*',
|
29 |
'keep *_allLayer1METsForTauAnalyses_*_*',
|
30 |
'keep *_allLayer1tcMETsForTauAnalyses_*_*',
|
31 |
'keep *_allLayer1pfMETsForTauAnalyses_*_*',
|
32 |
'keep *_selected*_*_*',
|
33 |
'keep *_*Pairs*_*_*',
|
34 |
'keep *_eePairsForTauAnalyses_*_*',
|
35 |
'keep *_mmPairsForTauAnalyses_*_*',
|
36 |
'keep *_offlinePrimaryVerticesWithBS_*_*',
|
37 |
'keep *_TriggerResults_*_HLT',
|
38 |
'keep recoTracks_globalMuons_*_RECO'
|
39 |
)
|
40 |
)
|
41 |
|
42 |
|
43 |
analysisPatEventContent.outputCommands.extend(ammPatAnaEventContent.outputCommands)
|
44 |
|