From fdbcf5fc9c0ba2edde04fe758a03fac5d2cae357 Mon Sep 17 00:00:00 2001 From: swenzel Date: Thu, 20 Mar 2025 15:07:16 +0100 Subject: [PATCH] remove deprecated confkey value --- Common/SimConfig/include/SimConfig/SimParams.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Common/SimConfig/include/SimConfig/SimParams.h b/Common/SimConfig/include/SimConfig/SimParams.h index 2c103f43b2b04..cf3ee2b01cf2e 100644 --- a/Common/SimConfig/include/SimConfig/SimParams.h +++ b/Common/SimConfig/include/SimConfig/SimParams.h @@ -36,7 +36,6 @@ struct SimCutParams : public o2::conf::ConfigurableParamHelper { float maxRTrackingZDC = 50; // R-cut applied in the tunnel leading to ZDC when z > beampipeZ (custom stepping function) float tunnelZ = 1900; // Z-value from where we apply maxRTrackingZDC (default value taken from standard "hall" dimensions) - float globalDensityFactor = 1.f; // global factor that scales all material densities for systematic studies bool lowneut = false; O2ParamDef(SimCutParams, "SimCutParams"); }; @@ -44,7 +43,7 @@ struct SimCutParams : public o2::conf::ConfigurableParamHelper { // parameter influencing material manager struct SimMaterialParams : public o2::conf::ConfigurableParamHelper { // Local density value takes precedence over global density value, i.e. local values overwrite the global value. - float globalDensityFactor = 1.f; + float globalDensityFactor = 1.f; // global factor that scales all material densities for systematic studies std::string localDensityFactor; // Expected format: "SimMaterialParams.localDensityFactor=:,:,..." O2ParamDef(SimMaterialParams, "SimMaterialParams");