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 30, 2016
1 parent bc82047 commit b85e834
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 2 deletions.
@@ -0,0 +1,22 @@
import FWCore.ParameterSet.Config as cms

TracklessJetsPSet = cms.PSet(
hltPathsToCheck = cms.vstring(
"HLT_SingleCentralPFJet170_CFMax0p1_v",
"HLT_DiCentralPFJet170_CFMax0p1_v",
"HLT_DiCentralPFJet220_CFMax0p3_v",
"HLT_DiCentralPFJet330_CFMax0p5_v",
"HLT_DiCentralPFJet170_v",
"HLT_DiCentralPFJet430_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)
)
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
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 b85e834

Please sign in to comment.