CMS 3D CMS Logo

muIsolation_EventContent_cff.py
Go to the documentation of this file.
1 # The following comments couldn't be translated into the new config version:
2 
3 #MuIsoDeposits
4 
5 #MuIsoDeposits
6 
7 #MuIsoDeposits
8 
9 #old version (reduced set)
10 
11 #standard set
12 
13 import FWCore.ParameterSet.Config as cms
14 
15 # -*-TCL-*-
16 #define FEVT/REC/AOD pieces
17 
18 #AOD part of the event
19 #cleaned-up, includes only the objects produced in the standard reco "muIsolation" sequence
20 RecoMuonIsolationAOD = cms.PSet(
21  outputCommands = cms.untracked.vstring()
22 )
23 
24 #RECO part of the event
25 RecoMuonIsolationRECO = cms.PSet(
26  outputCommands = cms.untracked.vstring('keep *_muIsoDepositTk_*_*',
27  'keep *_muIsoDepositCalByAssociatorTowers_*_*',
28  'keep *_muIsoDepositCalByAssociatorHits_*_*',
29  'keep *_muIsoDepositJets_*_*',
30  'keep *_muIsoDepositTkDisplaced_*_*',
31  'keep *_muIsoDepositCalByAssociatorTowersDisplaced_*_*',
32  'keep *_muIsoDepositCalByAssociatorHitsDisplaced_*_*',
33  'keep *_muIsoDepositJetsDisplaced_*_*',
34  'keep *_muGlobalIsoDepositCtfTk_*_*',
35  'keep *_muGlobalIsoDepositCalByAssociatorTowers_*_*',
36  'keep *_muGlobalIsoDepositCalByAssociatorHits_*_*',
37  'keep *_muGlobalIsoDepositJets_*_*')
38 )
39 RecoMuonIsolationRECO.outputCommands.extend(RecoMuonIsolationAOD.outputCommands)
40 
41 #Full event
42 RecoMuonIsolationFEVT = cms.PSet(
43  outputCommands = cms.untracked.vstring()
44 )
45 RecoMuonIsolationFEVT.outputCommands.extend(RecoMuonIsolationRECO.outputCommands)
46 
47 #Full event
48 RecoMuonIsolationParamGlobal = cms.PSet(
49  outputCommands = cms.untracked.vstring('keep *_muParamGlobalIsoDepositGsTk_*_*',
50  'keep *_muParamGlobalIsoDepositCalEcal_*_*',
51  'keep *_muParamGlobalIsoDepositCalHcal_*_*',
52  'keep *_muParamGlobalIsoDepositCtfTk_*_*',
53  'keep *_muParamGlobalIsoDepositCalByAssociatorTowers_*_*',
54  'keep *_muParamGlobalIsoDepositCalByAssociatorHits_*_*',
55  'keep *_muParamGlobalIsoDepositJets_*_*')
56 )