Skip to content

Commit

Permalink
fix input collections
Browse files Browse the repository at this point in the history
  • Loading branch information
ccaillol committed Oct 3, 2022
1 parent 206f707 commit 3aeb57b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions L1Trigger/L1TTrackMatch/plugins/L1TrackSelectionProducer.cc
Original file line number Diff line number Diff line change
Expand Up @@ -599,10 +599,10 @@ void L1TrackSelectionProducer::produce(edm::StreamID, edm::Event& iEvent, const
void L1TrackSelectionProducer::fillDescriptions(edm::ConfigurationDescriptions& descriptions) {
//L1TrackSelectionProducer
edm::ParameterSetDescription desc;
desc.add<edm::InputTag>("l1TracksInputTag", edm::InputTag("TTTracksFromTrackletEmulation", "Level1TTTracks"));
desc.addOptional<edm::InputTag>("l1VerticesInputTag", edm::InputTag("L1VertexFinder", "l1vertices"));
desc.add<edm::InputTag>("l1TracksInputTag", edm::InputTag("l1tTTTracksFromTrackletEmulation", "Level1TTTracks"));
desc.addOptional<edm::InputTag>("l1VerticesInputTag", edm::InputTag("l1tVertexFinder", "l1vertices"));
desc.addOptional<edm::InputTag>("l1VerticesEmulationInputTag",
edm::InputTag("L1VertexFinderEmulator", "l1verticesEmulation"));
edm::InputTag("l1tVertexFinderEmulator", "l1verticesEmulation"));
desc.add<std::string>("outputCollectionName", "Level1TTTracksSelected");
{
edm::ParameterSetDescription descCutSet;
Expand Down
4 changes: 2 additions & 2 deletions L1Trigger/Phase2L1Taus/plugins/HPSPFTauProducer.cc
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ void HPSPFTauProducer::fillDescriptions(edm::ConfigurationDescriptions& descript
desc.add<double>("minSeedJetPt", 30.0);
desc.add<double>("maxChargedRelIso", 1.0);
desc.add<double>("minSeedChargedPFCandPt", 5.0);
desc.add<edm::InputTag>("srcL1PFCands", edm::InputTag("l1ctLayer1", "PF"));
desc.add<edm::InputTag>("srcL1PFCands", edm::InputTag("l1tLayer1", "PF"));
desc.add<double>("stripSizeEta", 0.05);
desc.add<double>("maxLeadChargedPFCandEta", 2.4);
desc.add<double>("deltaRCleaning", 0.4);
Expand All @@ -230,7 +230,7 @@ void HPSPFTauProducer::fillDescriptions(edm::ConfigurationDescriptions& descript
desc.add<double>("maxSeedChargedPFCandEta", 2.4);
desc.add<bool>("applyPreselection", false);
desc.add<double>("isolationConeSize", 0.4);
desc.add<edm::InputTag>("srcL1Vertices", edm::InputTag("L1VertexFinderEmulator", "l1verticesEmulation"));
desc.add<edm::InputTag>("srcL1Vertices", edm::InputTag("l1tVertexFinderEmulator", "l1verticesEmulation"));
desc.add<double>("maxChargedIso", 1000.0);
{
edm::ParameterSetDescription psd0;
Expand Down

0 comments on commit 3aeb57b

Please sign in to comment.