Skip to content

Commit

Permalink
fix: rename l1ct objects
Browse files Browse the repository at this point in the history
  • Loading branch information
ccaillol committed Oct 12, 2022
1 parent dd73e28 commit af6bf9f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ void DeregionizerProducer::setRefs_(l1t::PFCandidate &pf, const l1ct::PuppiObjEm
void DeregionizerProducer::fillDescriptions(edm::ConfigurationDescriptions &descriptions) {
// DeregionizerProducer
edm::ParameterSetDescription desc;
desc.add<edm::InputTag>("RegionalPuppiCands", edm::InputTag("l1ctLayer1", "PuppiRegional"));
desc.add<edm::InputTag>("RegionalPuppiCands", edm::InputTag("l1tLayer1", "PuppiRegional"));
desc.add<unsigned int>("nPuppiFinalBuffer", 128);
desc.add<unsigned int>("nPuppiPerClk", 6);
desc.add<unsigned int>("nPuppiFirstBuffers", 12);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@


for det in "Barrel", "Barrel9", "HGCal", "HGCalNoTK", "HF":
l1pf = getattr(process, 'l1ctLayer1'+det)
l1pf = getattr(process, 'l1tLayer1'+det)
l1pf.dumpFileName = cms.untracked.string("TTbar_PU200_"+det+".dump")

process.source.fileNames = [ '/store/cmst3/group/l1tr/gpetrucc/11_1_0/NewInputs110X/110121.done/TTbar_PU200/inputs110X_%d.root' % i for i in (1,3,7,8,9) ]
Expand Down
2 changes: 1 addition & 1 deletion 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 Down

0 comments on commit af6bf9f

Please sign in to comment.