Skip to content

Commit

Permalink
Merge pull request #13773 from mandrenguyen/peripheralHLTfilter81X
Browse files Browse the repository at this point in the history
Filter to select HLT paths corresponding to peripheral HI events
  • Loading branch information
cmsbuild committed Mar 23, 2016
2 parents 626afb0 + 61977c4 commit 114585c
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions RecoHI/Configuration/python/peripheralHLTFilter_cff.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
import FWCore.ParameterSet.Config as cms

import HLTrigger.HLTfilters.hltHighLevel_cfi
hltPerhiphHI = HLTrigger.HLTfilters.hltHighLevel_cfi.hltHighLevel.clone()
hltPerhiphHI.HLTPaths = ["HLT_HISinglePhoton*_Eta*_Cent50_100_*",
"HLT_HISinglePhoton*_Eta*_Cent30_100_*",
"HLT_HIFullTrack*_L1Centrality30100_*",
"HLT_HIPuAK4CaloJet*_Eta5p1_Cent50_100_v*",
"HLT_HIPuAK4CaloJet*_Eta5p1_Cent30_100_v*",
"HLT_HIDmesonHITrackingGlobal_Dpt*_Cent50_100_v*",
"HLT_HIDmesonHITrackingGlobal_Dpt*_Cent30_100_v*",
"HLT_HIL1Centralityext30100MinimumumBiasHF*",
"HLT_HIL1Centralityext50100MinimumumBiasHF*",
"HLT_HIQ2*005_Centrality3050_v*",
"HLT_HIQ2*005_Centrality5070_v*",
"HLT_HICastor*",
"HLT_HIL1Castor*",
"HLT_HIUPC*"]
hltPerhiphHI.throw = False
hltPerhiphHI.andOr = True

peripheralHLTFilterSequence = cms.Sequence( hltPerhiphHI )

0 comments on commit 114585c

Please sign in to comment.