Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:27:06

0001 # The following comments couldn't be translated into the new config version:
0002 
0003 #MuIsoDeposits
0004 
0005 #MuIsoDeposits
0006 
0007 #MuIsoDeposits
0008 
0009 #old version (reduced set)
0010 
0011 #standard set
0012 
0013 import FWCore.ParameterSet.Config as cms
0014 
0015 # -*-TCL-*-
0016 #define FEVT/REC/AOD pieces
0017 
0018 #AOD part of the event
0019 #cleaned-up, includes only the objects produced in the standard reco "muIsolation" sequence
0020 RecoMuonIsolationAOD = cms.PSet(
0021     outputCommands = cms.untracked.vstring()
0022 )
0023 
0024 #RECO part of the event
0025 RecoMuonIsolationRECO = cms.PSet(
0026     outputCommands = cms.untracked.vstring('keep *_muIsoDepositTk_*_*', 
0027         'keep *_muIsoDepositCalByAssociatorTowers_*_*', 
0028         'keep *_muIsoDepositCalByAssociatorHits_*_*', 
0029         'keep *_muIsoDepositJets_*_*', 
0030         'keep *_muIsoDepositTkDisplaced_*_*',
0031         'keep *_muIsoDepositCalByAssociatorTowersDisplaced_*_*', 
0032         'keep *_muIsoDepositCalByAssociatorHitsDisplaced_*_*', 
0033         'keep *_muIsoDepositJetsDisplaced_*_*', 
0034         'keep *_muGlobalIsoDepositCtfTk_*_*', 
0035         'keep *_muGlobalIsoDepositCalByAssociatorTowers_*_*', 
0036         'keep *_muGlobalIsoDepositCalByAssociatorHits_*_*', 
0037         'keep *_muGlobalIsoDepositJets_*_*')
0038 )
0039 RecoMuonIsolationRECO.outputCommands.extend(RecoMuonIsolationAOD.outputCommands)
0040 
0041 #Full event
0042 RecoMuonIsolationFEVT = cms.PSet(
0043     outputCommands = cms.untracked.vstring()
0044 )
0045 RecoMuonIsolationFEVT.outputCommands.extend(RecoMuonIsolationRECO.outputCommands)
0046 
0047 #Full event
0048 RecoMuonIsolationParamGlobal = cms.PSet(
0049     outputCommands = cms.untracked.vstring('keep *_muParamGlobalIsoDepositGsTk_*_*', 
0050         'keep *_muParamGlobalIsoDepositCalEcal_*_*', 
0051         'keep *_muParamGlobalIsoDepositCalHcal_*_*', 
0052         'keep *_muParamGlobalIsoDepositCtfTk_*_*', 
0053         'keep *_muParamGlobalIsoDepositCalByAssociatorTowers_*_*', 
0054         'keep *_muParamGlobalIsoDepositCalByAssociatorHits_*_*', 
0055         'keep *_muParamGlobalIsoDepositJets_*_*')
0056 )