Skip to content

Commit

Permalink
Add trackless anaysis
Browse files Browse the repository at this point in the history
  • Loading branch information
Jose Cupertino Ruiz Vargas committed May 28, 2016
1 parent 07c3f90 commit 2d45be4
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
import FWCore.ParameterSet.Config as cms

TracklessJetsPSet = cms.PSet(
hltPathsToCheck = cms.vstring(
"HLT_PFHT650_v",
),
recPFJetLabel = cms.InputTag("ak4PFJets"),
recCaloJetLabel = cms.InputTag("ak4CaloJets"),

minCandidates = cms.uint32(1),
# -- Analysis specific binnings
parametersTurnOn = cms.vdouble(0, 50, 100, 150, 200, 250, 300, 350, 400, 450, 470,
500, 550, 600, 650, 700, 800, 900, 1000
),

dropPt3 = cms.bool(True)
)
Original file line number Diff line number Diff line change
Expand Up @@ -206,6 +206,10 @@ def add_reco_strings(strings):
hltExoticaDSTMuons.subDirs = ['HLT/Exotica/DSTMuons']
hltExoticaDSTMuons.efficiencyProfile = efficiency_strings

hltExoticaTracklessJets = hltExoticaPostProcessor.clone()
hltExoticaTracklessJets.subDirs = ['HLT/Exotica/TracklessJets']
hltExoticaTracklessJets.efficiencyProfile = efficiency_strings

hltExoticaPostProcessors = cms.Sequence(
# Tri-lepton paths
hltExoticaPostLowPtTrimuon +
Expand Down Expand Up @@ -239,6 +243,7 @@ def add_reco_strings(strings):
hltExoticaEleMu +
hltExoticaPhotonMET +
hltExoticaHTDisplacedJets +
hltExoticaTracklessJets +
# scouting triggers
hltExoticaDSTJets +
hltExoticaDSTMuons
Expand Down
7 changes: 5 additions & 2 deletions HLTriggerOffline/Exotica/python/hltExoticaValidator_cfi.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@
from HLTriggerOffline.Exotica.analyses.hltExoticaSingleMuon_cff import SingleMuonPSet
from HLTriggerOffline.Exotica.analyses.hltExoticaDSTJets_cff import DSTJetsPSet
from HLTriggerOffline.Exotica.analyses.hltExoticaDSTMuons_cff import DSTMuonsPSet
from HLTriggerOffline.Exotica.analyses.hltExoticaTracklessJets_cff import TracklessJetsPSet

hltExoticaValidator = cms.EDAnalyzer(

Expand Down Expand Up @@ -80,7 +81,8 @@
"PhotonMET",
"HTDisplacedJets",
"DSTJets",
"DSTMuons"
"DSTMuons",
"TracklessJets"
),

# -- The instance name of the reco::GenParticles collection
Expand Down Expand Up @@ -235,5 +237,6 @@
PhotonMET = PhotonMETPSet,
HTDisplacedJets = HTDisplacedJetsPSet,
DSTJets = DSTJetsPSet,
DSTMuons = DSTMuonsPSet
DSTMuons = DSTMuonsPSet,
TracklessJets = TracklessJetsPSet
)

0 comments on commit 2d45be4

Please sign in to comment.