CMS 3D CMS Logo

PDWG_EXODisappMuon_cff.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
4 
5 from Configuration.EventContent.EventContent_cff import AODSIMEventContent
6 EXODisappMuonSkimContent = AODSIMEventContent.clone()
7 EXODisappMuonSkimContent.outputCommands.append('keep *_hbhereco_*_*')
8 EXODisappMuonSkimContent.outputCommands.append('keep *_horeco_*_*')
9 EXODisappMuonSkimContent.outputCommands.append('keep *_csc2DRecHits_*_*')
10 
11 exoDisappMuonsHLT = hlt.hltHighLevel.clone(
12  throw = False,
13  andOr = True,
14  HLTPaths = [
15  "HLT_IsoMu*_v*"
16  ]
17 )
18 
20 disappMuonsSelection = disappearingMuonsSkimming.clone()
21 
22 EXODisappMuonSkimSequence = cms.Sequence(
23  exoDisappMuonsHLT+disappMuonsSelection
24 )