Skip to content

Commit

Permalink
Merge pull request cms-sw#1239 from aloeliger/GMT_Name_Update
Browse files Browse the repository at this point in the history
Update prompt and displaced muon names to reflect GMT changes
  • Loading branch information
aloeliger committed Apr 2, 2024
2 parents 8fd467b + f8d822c commit b43185f
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions L1Trigger/Phase2L1GT/python/l1tGTProducer_cff.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
GTTPromptJets = cms.InputTag("l1tTrackJetsEmulation", "L1TrackJets"),
GTTDisplacedJets = cms.InputTag("l1tTrackJetsExtendedEmulation", "L1TrackJetsExtended"),
GTTPrimaryVert = cms.InputTag("l1tVertexFinderEmulator", "L1VerticesEmulation"),
GMTSaPromptMuons = cms.InputTag("l1tSAMuonsGmt", "promptSAMuons"),
GMTSaDisplacedMuons = cms.InputTag("l1tSAMuonsGmt", "displacedSAMuons"),
GMTSaPromptMuons = cms.InputTag("l1tSAMuonsGmt", "prompt"),
GMTSaDisplacedMuons = cms.InputTag("l1tSAMuonsGmt", "displaced"),
GMTTkMuons = cms.InputTag("l1tTkMuonsGmt"),
CL2Jets = cms.InputTag("l1tSC4PFL1PuppiCorrectedEmulator"),
CL2Electrons = cms.InputTag("l1tLayer2EG", "L1CtTkElectron"),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -346,7 +346,7 @@ void L1TCorrelatorLayer1Producer::fillDescriptions(edm::ConfigurationDescription
edm::ParameterSetDescription desc;
// Inputs and cuts
desc.add<edm::InputTag>("tracks", edm::InputTag(""));
desc.add<edm::InputTag>("muons", edm::InputTag("l1tSAMuonsGmt", "promptSAMuons"));
desc.add<edm::InputTag>("muons", edm::InputTag("l1tSAMuonsGmt", "prompt"));
desc.add<std::vector<edm::InputTag>>("emClusters", std::vector<edm::InputTag>());
desc.add<std::vector<edm::InputTag>>("hadClusters", std::vector<edm::InputTag>());
desc.add<edm::InputTag>("vtxCollection", edm::InputTag("l1tVertexFinderEmulator", "L1VerticesEmulation"));
Expand Down
8 changes: 4 additions & 4 deletions L1Trigger/Phase2L1ParticleFlow/python/l1ctLayer1_cff.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

l1tLayer1Barrel = cms.EDProducer("L1TCorrelatorLayer1Producer",
tracks = cms.InputTag('l1tPFTracksFromL1Tracks'),
muons = cms.InputTag('l1tSAMuonsGmt','promptSAMuons'),
muons = cms.InputTag('l1tSAMuonsGmt','prompt'),
emClusters = cms.VInputTag(cms.InputTag('l1tPFClustersFromL1EGClusters:selected')),
hadClusters = cms.VInputTag(cms.InputTag('l1tPFClustersFromCombinedCaloHCal:calibrated')),
vtxCollection = cms.InputTag("l1tVertexFinderEmulator","L1VerticesEmulation"),
Expand Down Expand Up @@ -132,7 +132,7 @@

l1tLayer1HGCal = cms.EDProducer("L1TCorrelatorLayer1Producer",
tracks = cms.InputTag('l1tPFTracksFromL1Tracks'),
muons = cms.InputTag('l1tSAMuonsGmt','promptSAMuons'),
muons = cms.InputTag('l1tSAMuonsGmt','prompt'),
emClusters = cms.VInputTag(cms.InputTag('l1tPFClustersFromHGC3DClusters:egamma')), # used only for E/gamma
hadClusters = cms.VInputTag(cms.InputTag('l1tPFClustersFromHGC3DClusters')),
vtxCollection = cms.InputTag("l1tVertexFinderEmulator","L1VerticesEmulation"),
Expand Down Expand Up @@ -268,7 +268,7 @@
)

l1tLayer1HGCalNoTK = cms.EDProducer("L1TCorrelatorLayer1Producer",
muons = cms.InputTag('l1tSAMuonsGmt','promptSAMuons'),
muons = cms.InputTag('l1tSAMuonsGmt','prompt'),
emClusters = cms.VInputTag(cms.InputTag('l1tPFClustersFromHGC3DClusters:egamma')), # used only for E/gamma
hadClusters = cms.VInputTag(cms.InputTag('l1tPFClustersFromHGC3DClusters')),
vtxCollection = cms.InputTag("l1tVertexFinderEmulator","L1VerticesEmulation"),
Expand Down Expand Up @@ -360,7 +360,7 @@
)

l1tLayer1HF = cms.EDProducer("L1TCorrelatorLayer1Producer",
muons = cms.InputTag('l1tSAMuonsGmt','promptSAMuons'),
muons = cms.InputTag('l1tSAMuonsGmt','prompt'),
hadClusters = cms.VInputTag(cms.InputTag('l1tPFClustersFromCombinedCaloHF:calibrated')),
vtxCollection = cms.InputTag("l1tVertexFinderEmulator","L1VerticesEmulation"),
nVtx = cms.int32(1),
Expand Down

0 comments on commit b43185f

Please sign in to comment.