-
Notifications
You must be signed in to change notification settings - Fork 4.7k
Phase2 Single_Tau_Trigger Path Added #49637
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,14 @@ | ||
| import FWCore.ParameterSet.Config as cms | ||
|
|
||
| hltHpsPFTau150LooseTauWPDeepTau = cms.EDFilter("HLT1PFTau", | ||
| MaxEta = cms.double(2.1), | ||
| MaxMass = cms.double(-1.0), | ||
| MinE = cms.double(-1.0), | ||
| MinEta = cms.double(-1.0), | ||
| MinMass = cms.double(-1.0), | ||
| MinN = cms.int32(1), | ||
| MinPt = cms.double(150.0), | ||
| inputTag = cms.InputTag("hltHpsSelectedPFTauLooseTauWPDeepTau"), | ||
| saveTags = cms.bool(True), | ||
| triggerType = cms.int32(84) | ||
| ) | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,41 @@ | ||
| import FWCore.ParameterSet.Config as cms | ||
|
|
||
| from ..sequences.HLTBeginSequence_cfi import * | ||
| from ..sequences.HLTRawToDigiSequence_cfi import * | ||
| from ..sequences.HLTTICLLocalRecoSequence_cfi import * | ||
| from ..sequences.HLTLocalrecoSequence_cfi import * | ||
| from ..sequences.HLTTrackingSequence_cfi import * | ||
| from ..sequences.HLTMuonsSequence_cfi import * | ||
| from ..sequences.HLTParticleFlowSequence_cfi import * | ||
| from ..sequences.HLTAK4PFJetsReconstruction_cfi import * | ||
| from ..sequences.HLTPFTauHPS_cfi import * | ||
| from ..sequences.HLTHPSDeepTauPFTauSequence_cfi import * | ||
| from ..sequences.HLTEndSequence_cfi import * | ||
| from ..modules.hltL1SingleNNTau150_cfi import * | ||
| from ..modules.hltParticleFlowRecHitECALUnseeded_cfi import * | ||
| from ..modules.hltParticleFlowClusterECALUncorrectedUnseeded_cfi import * | ||
| from ..modules.hltParticleFlowClusterECALUnseeded_cfi import * | ||
| from ..modules.hltAK4PFJetsForTaus_cfi import * | ||
| from ..modules.hltHpsSelectedPFTauLooseTauWPDeepTau_cfi import * | ||
| from ..modules.hltHpsPFTau150LooseTauWPDeepTau_cfi import * | ||
|
|
||
| HLT_LooseDeepTauPFTauHPS150_L2NN_eta2p1 = cms.Path( | ||
| HLTBeginSequence | ||
| + hltL1SingleNNTau150 | ||
| + HLTRawToDigiSequence | ||
| + HLTLocalrecoSequence | ||
| + HLTTICLLocalRecoSequence | ||
| + HLTTrackingSequence | ||
| + HLTMuonsSequence | ||
| + HLTParticleFlowSequence | ||
| + hltParticleFlowRecHitECALUnseeded | ||
| + hltParticleFlowClusterECALUncorrectedUnseeded | ||
| + hltParticleFlowClusterECALUnseeded | ||
| + HLTAK4PFJetsReconstruction | ||
| + hltAK4PFJetsForTaus | ||
| + HLTPFTauHPS | ||
| + HLTHPSDeepTauPFTauSequence | ||
| + hltHpsSelectedPFTauLooseTauWPDeepTau | ||
| + hltHpsPFTau150LooseTauWPDeepTau | ||
| + HLTEndSequence | ||
| ) | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. picky but newline is missing. |
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -2,9 +2,12 @@ | |
|
|
||
| from PhysicsTools.JetMCAlgos.AK4GenJetFlavourInfos_cfi import * | ||
| from PhysicsTools.JetMCAlgos.HadronAndPartonSelector_cfi import * | ||
| from PhysicsTools.JetMCAlgos.TauGenJetsDecayModeSelectorAllHadrons_cfi import * | ||
| from PhysicsTools.JetMCAlgos.TauGenJets_cfi import * | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @Chihwan-An this part of the changes was already integrated for convenience at #51103. |
||
| from PhysicsTools.NanoAOD.common_cff import * | ||
| from PhysicsTools.NanoAOD.jetMC_cff import * | ||
| from PhysicsTools.NanoAOD.genparticles_cff import * | ||
| from PhysicsTools.NanoAOD.taus_cff import * | ||
| from PhysicsTools.PatAlgos.slimming.genParticles_cff import * | ||
| from PhysicsTools.PatAlgos.slimming.packedGenParticles_cfi import * | ||
| from PhysicsTools.PatAlgos.slimming.prunedGenParticles_cfi import * | ||
|
|
@@ -41,6 +44,12 @@ | |
| + slimmedGenJetsFlavourInfos | ||
| + genJetTable | ||
| + genJetFlavourTable | ||
| + tauGenJets | ||
| + tauGenJetsForNano | ||
| + tauGenJetsSelectorAllHadrons | ||
| + tauGenJetsSelectorAllHadronsForNano | ||
| + genVisTaus | ||
| + genVisTauTable | ||
| ) | ||
|
|
||
| hltNanoProducer = cms.Sequence( | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
picky but newline is missing.