Skip to content

Commit 76ce1c8

Browse files
committed
replace fillDescriptions with fillPSetDescription
1 parent 1ddc668 commit 76ce1c8

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

RecoLocalFastTime/FTLClusterizer/interface/MTDThresholdClusterizer.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ class MTDThresholdClusterizer : public MTDClusterizerBase {
5959
const MTDTopology* topo,
6060
FTLClusterCollection& output) override;
6161

62-
static void fillDescriptions(edm::ParameterSetDescription& desc);
62+
static void fillPSetDescription(edm::ParameterSetDescription& desc);
6363

6464
private:
6565
std::vector<FTLCluster::FTLHitPos> theSeeds; // cached seed pixels

RecoLocalFastTime/FTLClusterizer/plugins/MTDClusterProducer.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ void MTDClusterProducer::fillDescriptions(edm::ConfigurationDescriptions& descri
102102
desc.add<std::string>("BarrelClusterName", "FTLBarrel");
103103
desc.add<std::string>("EndcapClusterName", "FTLEndcap");
104104
desc.add<std::string>("ClusterMode", "MTDThresholdClusterizer");
105-
MTDThresholdClusterizer::fillDescriptions(desc);
105+
MTDThresholdClusterizer::fillPSetDescription(desc);
106106
descriptions.add("mtdClusterProducer", desc);
107107
}
108108

RecoLocalFastTime/FTLClusterizer/src/MTDThresholdClusterizer.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ MTDThresholdClusterizer::MTDThresholdClusterizer(edm::ParameterSet const& conf)
4747
MTDThresholdClusterizer::~MTDThresholdClusterizer() {}
4848

4949
// Configuration descriptions
50-
void MTDThresholdClusterizer::fillDescriptions(edm::ParameterSetDescription& desc) {
50+
void MTDThresholdClusterizer::fillPSetDescription(edm::ParameterSetDescription& desc) {
5151
desc.add<double>("HitThreshold", 0.);
5252
desc.add<double>("SeedThreshold", 0.);
5353
desc.add<double>("ClusterThreshold", 0.);

0 commit comments

Comments
 (0)