Skip to content
Closed
Show file tree
Hide file tree
Changes from 4 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
Expand Up @@ -2191,7 +2191,7 @@ def condition(self, fragment, stepList, key, hasHarvest):
},
'2026D88' : {
'Geom' : 'Extended2026D88',
'HLTmenu': '@fake2',
'HLTmenu': '@relval2026',
'GT' : 'auto:phase2_realistic_T21',
'Era' : 'Phase2C17I13M9',
'ScenToRun' : ['GenSimHLBeamSpot','DigiTrigger','RecoGlobal', 'HARVESTGlobal'],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,6 @@
maxNumberClusters = cms.uint32(0),
src = cms.InputTag("mix","Tracker")
)

from Configuration.ProcessModifiers.premix_stage2_cff import premix_stage2
premix_stage2.toModify(siPhase2Clusters, src = "mixData:Tracker")
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The following

import FWCore.ParameterSet.Config as cms

from RecoLocalTracker.SiPhase2Clusterizer.phase2TrackerClusterizer_cfi import siPhase2Clusters as _siPhase2Clusters
siPhase2Clusters = _siPhase2Clusters.clone()

should be equivalent, and would be easier to maintain, and less error-prone.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sure, I can do that. Thanks for suggestion.

I tried to make very minimal change as much as possible without touching original code. I assume we have hard-copy coding around for 75e33 menu. I will fix it together with configuration when this comment, #39450 (comment), is confirmed.

Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,6 @@
doseMap = cms.string(''),
scaleByDose = cms.bool(False),
scaleByDoseAlgo = cms.uint32(0),
scaleByDoseFactor = cms.double(1),
values = cms.vdouble(0.32041012, 0.384492144, 0.32041012)
)
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,9 @@
doseMap = cms.string(''),
noise_MIP = cms.double(0.01),
scaleByDose = cms.bool(False),
scaleByDoseAlgo = cms.uint32(0)
scaleByDoseAlgo = cms.uint32(0),
scaleByDoseFactor = cms.double(1),
sipmMap = cms.string(""),
referenceIdark = cms.double(-1),
referenceXtalk = cms.double(-1)
)
2 changes: 1 addition & 1 deletion L1Trigger/Phase2L1Taus/plugins/HPSPFTauProducer.cc
Original file line number Diff line number Diff line change
Expand Up @@ -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