Skip to content
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

remove plugin template HLTJetTagWithMatching #42617

Merged
merged 1 commit into from
Aug 22, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
import FWCore.ParameterSet.Config as cms

hltBTagPFPuppiDeepCSV0p865DoubleEta2p4 = cms.EDFilter("HLTPFJetTagWithMatching",
hltBTagPFPuppiDeepCSV0p865DoubleEta2p4 = cms.EDFilter("HLTPFJetTag",
JetTags = cms.InputTag("hltDeepCombinedSecondaryVertexBJetTagsPFPuppiModEta2p4","probb"),
Jets = cms.InputTag("hltPFPuppiJetForBtagEta2p4"),
MaxTag = cms.double(999999.0),
MinJets = cms.int32(2),
MinTag = cms.double(0.865),
TriggerType = cms.int32(86),
deltaR = cms.double(0.1),
MatchJetsByDeltaR = cms.bool(True),
MaxJetDeltaR = cms.double(0.1),
saveTags = cms.bool(True)
)
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
import FWCore.ParameterSet.Config as cms

hltBTagPFPuppiDeepFlavour0p935DoubleEta2p4 = cms.EDFilter("HLTPFJetTagWithMatching",
hltBTagPFPuppiDeepFlavour0p935DoubleEta2p4 = cms.EDFilter("HLTPFJetTag",
JetTags = cms.InputTag("hltPfDeepFlavourJetTagsModEta2p4","probb"),
Jets = cms.InputTag("hltPFPuppiJetForBtagEta2p4"),
MaxTag = cms.double(999999.0),
MinJets = cms.int32(2),
MinTag = cms.double(0.935),
TriggerType = cms.int32(86),
deltaR = cms.double(0.1),
MatchJetsByDeltaR = cms.bool(True),
MaxJetDeltaR = cms.double(0.1),
saveTags = cms.bool(True)
)
145 changes: 0 additions & 145 deletions HLTrigger/btau/plugins/HLTJetTagWithMatching.cc

This file was deleted.

52 changes: 0 additions & 52 deletions HLTrigger/btau/plugins/HLTJetTagWithMatching.h

This file was deleted.

7 changes: 0 additions & 7 deletions HLTrigger/btau/plugins/modules.cc
Original file line number Diff line number Diff line change
Expand Up @@ -76,13 +76,6 @@ typedef HLTSumJetTag<reco::PFJet> HLTSumPFJetTag;
DEFINE_FWK_MODULE(HLTSumCaloJetTag);
DEFINE_FWK_MODULE(HLTSumPFJetTag);

#include "HLTJetTagWithMatching.h"
#include "HLTJetTagWithMatching.cc"
typedef HLTJetTagWithMatching<reco::CaloJet> HLTCaloJetTagWithMatching;
typedef HLTJetTagWithMatching<reco::PFJet> HLTPFJetTagWithMatching;
DEFINE_FWK_MODULE(HLTCaloJetTagWithMatching);
DEFINE_FWK_MODULE(HLTPFJetTagWithMatching);

#include "HLTCollectionProducer.h"
typedef HLTCollectionProducer<reco::CaloJet> HLTCaloJetCollectionProducer;
typedef HLTCollectionProducer<reco::PFJet> HLTPFJetCollectionProducer;
Expand Down