Skip to content

Commit 69169ba

Browse files
committed
GPU: debugLevel is now only a runtime variable, not needed in compile-time parameters any more
1 parent 52937ed commit 69169ba

File tree

2 files changed

+0
-3
lines changed

2 files changed

+0
-3
lines changed

GPU/GPUTracking/Base/GPUParam.cxx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,6 @@ void GPUParam::SetDefaults(float solenoidBz)
114114
par.continuousTracking = false;
115115
continuousMaxTimeBin = 0;
116116
tpcCutTimeBin = 0;
117-
par.debugLevel = 0;
118117
par.earlyTpcTransform = false;
119118
}
120119

@@ -131,7 +130,6 @@ void GPUParam::UpdateSettings(const GPUSettingsGRP* g, const GPUSettingsProcessi
131130
par.earlyTpcTransform = rec.tpc.forceEarlyTransform == -1 ? (!par.continuousTracking) : rec.tpc.forceEarlyTransform;
132131
qptB5Scaler = CAMath::Abs(bzkG) > 0.1f ? CAMath::Abs(bzkG) / 5.006680f : 1.f; // Repeat here, since passing in g is optional
133132
if (p) {
134-
par.debugLevel = p->debugLevel;
135133
UpdateRun3ClusterErrors(p->param.tpcErrorParamY, p->param.tpcErrorParamZ);
136134
}
137135
if (w) {

GPU/GPUTracking/Definitions/GPUSettingsList.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -657,7 +657,6 @@ AddVariableRTC(toyMCEventsFlag, int8_t, 0) // events were build with home-mad
657657
AddVariableRTC(continuousTracking, int8_t, 0) // Continuous tracking, estimate bz and errors for abs(z) = 125cm during seeding
658658
AddVariableRTC(dodEdx, int8_t, 0) // Do dEdx computation
659659
AddVariableRTC(earlyTpcTransform, int8_t, 0) // do Early TPC transformation
660-
AddVariableRTC(debugLevel, int8_t, 0) // Debug level
661660
EndConfig()
662661

663662
EndNamespace() // gpu

0 commit comments

Comments
 (0)