Skip to content
Merged
Changes from all 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
3 changes: 1 addition & 2 deletions Common/SimConfig/include/SimConfig/SimParams.h
Original file line number Diff line number Diff line change
Expand Up @@ -36,15 +36,14 @@ struct SimCutParams : public o2::conf::ConfigurableParamHelper<SimCutParams> {
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");
};

// parameter influencing material manager
struct SimMaterialParams : public o2::conf::ConfigurableParamHelper<SimMaterialParams> {
// 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=<mod1>:<value1>,<mod2>:<value2>,..."

O2ParamDef(SimMaterialParams, "SimMaterialParams");
Expand Down