CMS 3D CMS Logo

All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
PDWG_EXOMONOPOLE_cff.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 # Unprescale HLT_MET and HLT_SinglePhoton triggers
5 hltMonopole = HLTrigger.HLTfilters.hltHighLevel_cfi.hltHighLevel.clone()
6 hltMonopole.TriggerResultsTag = cms.InputTag( "TriggerResults", "", "HLT" )
7 hltMonopole.HLTPaths = cms.vstring(
8  "HLT_Photon175_v*",
9  "HLT_PFMET300_v*",
10  "HLT_PFMET170_HBHE_BeamHaloCleaned_v*"
11 )
12 hltMonopole.throw = False
13 hltMonopole.andOr = True
14 
15 from Configuration.EventContent.EventContent_cff import AODEventContent
16 EXOMonopoleSkimContent = AODEventContent.clone()
17 EXOMonopoleSkimContent.outputCommands.append('keep *_hybridSuperClusters_*_*')
18 EXOMonopoleSkimContent.outputCommands.append('keep *_multi5x5SuperClusters_multi5x5EndcapSuperClusters_*')
19 EXOMonopoleSkimContent.outputCommands.append('keep *_multi5x5SuperClusters_uncleanOnlyMulti5x5EndcapBasicClusters_*')
20 EXOMonopoleSkimContent.outputCommands.append('keep *_multi5x5SuperClusters_uncleanOnlyMulti5x5EndcapSuperClusters_*')
21 EXOMonopoleSkimContent.outputCommands.append('keep *_siStripClusters_*_*')
22 EXOMonopoleSkimContent.outputCommands.append('keep *_siPixelClusters_*_*')
23 EXOMonopoleSkimContent.outputCommands.append('drop *_generalTracks_*_*')
24 EXOMonopoleSkimContent.outputCommands.append('keep *_generalTracks_*_*')
25 EXOMonopoleSkimContent.outputCommands.append('drop *_generalTracks_QualityMasks_*')
26 EXOMonopoleSkimContent.outputCommands.append('keep *_ecalRecHit_EcalRecHitsEB_*')
27 EXOMonopoleSkimContent.outputCommands.append('keep *_ecalRecHit_EcalRecHitsEE_*')
28 EXOMonopoleSkimContent.outputCommands.append('keep *_hbhereco_*_*')
29 
30 # monopole skim sequence
31 EXOMonopoleSkimSequence = cms.Sequence(
32  hltMonopole
33  )