We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f6623ea commit 55f3eeaCopy full SHA for 55f3eea
1 file changed
Common/Tools/PID/pidTPCModule.h
@@ -283,7 +283,7 @@ class pidTPCModule
283
std::vector<std::string> devicesRequiringTPCOnlyPID = {"photon-conversion-builder"};
284
285
// Check 2: specific tasks that require TPC PID
286
- for (const std::string requiringDevice : devicesRequiringTPCOnlyPID) {
+ for (const std::string& requiringDevice : devicesRequiringTPCOnlyPID) {
287
if (device.name.compare(requiringDevice) == 0) {
288
LOGF(info, " ---> %s detected! ", requiringDevice);
289
LOGF(info, " ---> enabling TPC only track TPC PID calculations now.");
0 commit comments