Skip to content

Commit

Permalink
Lowercase module instances
Browse files Browse the repository at this point in the history
  • Loading branch information
lecriste committed May 22, 2020
1 parent d61c84c commit fc6c8aa
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
Expand Up @@ -54,7 +54,7 @@ void LayerClusterAssociatorByEnergyScoreProducer::produce(edm::StreamID,

void LayerClusterAssociatorByEnergyScoreProducer::fillDescriptions(edm::ConfigurationDescriptions &cfg) {
edm::ParameterSetDescription desc;
desc.add<edm::InputTag>("hitMapTag", edm::InputTag("HGCRecHitMapProducer"));
desc.add<edm::InputTag>("hitMapTag", edm::InputTag("hgcRecHitMapProducer"));
desc.add<bool>("hardScatterOnly", true);

cfg.add("layerClusterAssociatorByEnergyScore", desc);
Expand Down
@@ -1,3 +1,3 @@
from SimCalorimetry.HGCalAssociatorProducers.layerClusterAssociatorByEnergyScore_cfi import layerClusterAssociatorByEnergyScore as LCAssocByEnergyScoreProducer
from SimCalorimetry.HGCalAssociatorProducers.layerClusterAssociatorByEnergyScore_cfi import layerClusterAssociatorByEnergyScore as lcAssocByEnergyScoreProducer

from RecoLocalCalo.HGCalRecProducers.hgcalRecHitMapProducer_cfi import hgcalRecHitMapProducer as HGCRecHitMapProducer
from RecoLocalCalo.HGCalRecProducers.hgcalRecHitMapProducer_cfi import hgcalRecHitMapProducer as hgcRecHitMapProducer
4 changes: 2 additions & 2 deletions Validation/Configuration/python/hgcalSimValid_cff.py
Expand Up @@ -14,8 +14,8 @@
VariablePtBins=[10., 30., 80., 120., 250., 600.],
DeltaPtOvPtHistoParameter = dict(EROn=True,EREtaMax=3.0, EREtaMin=1.6, slicingOn=True))

hgcalAssociators = cms.Task(HGCRecHitMapProducer
, LCAssocByEnergyScoreProducer)
hgcalAssociators = cms.Task(hgcRecHitMapProducer
, lcAssocByEnergyScoreProducer)

hgcalValidation = cms.Sequence(hgcalSimHitValidationEE
+ hgcalSimHitValidationHEF
Expand Down
2 changes: 1 addition & 1 deletion Validation/HGCalValidation/plugins/HGCalValidator.cc
Expand Up @@ -36,7 +36,7 @@ HGCalValidator::HGCalValidator(const edm::ParameterSet& pset)
}

LCAssocByEnergyScoreProducer_ =
consumes<hgcal::LayerClusterToCaloParticleAssociator>(edm::InputTag("LCAssocByEnergyScoreProducer"));
consumes<hgcal::LayerClusterToCaloParticleAssociator>(edm::InputTag("lcAssocByEnergyScoreProducer"));

cpSelector = CaloParticleSelector(pset.getParameter<double>("ptMinCP"),
pset.getParameter<double>("ptMaxCP"),
Expand Down

0 comments on commit fc6c8aa

Please sign in to comment.