Skip to content

Commit

Permalink
added EXOLLPJetHCAL skim (initial version)
Browse files Browse the repository at this point in the history
  • Loading branch information
Kiley Kennedy committed Mar 23, 2023
1 parent 2171367 commit cb11610
Show file tree
Hide file tree
Showing 3 changed files with 429 additions and 0 deletions.
15 changes: 15 additions & 0 deletions Configuration/Skimming/python/PDWG_EXOLLPJetHCAL_cff.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
import FWCore.ParameterSet.Config as cms

import HLTrigger.HLTfilters.hltHighLevel_cfi as _hltHighLevel
hltLLPJetHCAL = _hltHighLevel.hltHighLevel.clone(
throw = False,
andOr = True,
HLTPaths = [
"HLT*_L1SingleLLPJet_*",
]
)

# disappTrk skim sequence
EXOLLPJetHCALSkimSequence = cms.Sequence(
hltLLPJetHCAL
)
11 changes: 11 additions & 0 deletions Configuration/Skimming/python/Skims_PDWG_cff.py
Original file line number Diff line number Diff line change
Expand Up @@ -293,6 +293,17 @@
dataTier = cms.untracked.string('AOD')
)

from Configuration.Skimming.PDWG_EXOLLPJetHCAL_cff import *
EXOLLPJetHCALPath = cms.Path(EXOLLPJetHCALSkimSequence)
SKIMStreamEXOLLPJetHCAL = cms.FilteredStream(
responsible = 'PDWG',
name = 'EXOLLPJetHCAL',
paths = (EXOLLPJetHCALPath),
content = skimRawAODContent.outputCommands+['keep *_hbhereco__*'],
selectEvents = cms.untracked.PSet(),
dataTier = cms.untracked.string('AOD')
)

from Configuration.Skimming.PDWG_EXODTCluster_cff import *
EXODTClusterPath = cms.Path(EXODTClusterSkimSequence)
SKIMStreamEXODTCluster = cms.FilteredStream(
Expand Down
Loading

0 comments on commit cb11610

Please sign in to comment.