Skip to content

Commit 091df10

Browse files
author
Mattia Faggin
committed
Add comment.
1 parent d0be0f7 commit 091df10

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

Common/Tools/TrackTuner.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -467,6 +467,7 @@ struct TrackTuner : o2::framework::ConfigurableGroup {
467467
// get the DCA correction file from CCDB if not yet downloaded before
468468
struct stat sbDca; // search utility
469469
if (stat(fullNameInputFile.c_str(), &sbDca) == 0) {
470+
// file found
470471
LOG(info) << " [TrackTuner] File " << fullNameInputFile << " already downloaded. Not downloading it anymore";
471472
} else {
472473
LOG(info) << "[TrackTuner] downloading input file " << nameInputFile << " from CCDB...";
@@ -478,6 +479,7 @@ struct TrackTuner : o2::framework::ConfigurableGroup {
478479
// get the Q/Pt correction file from CCDB if not yet downloaded before
479480
struct stat sbQoverPt; // search utility
480481
if (stat(fullNameFileQoverPt.c_str(), &sbQoverPt) == 0) {
482+
// file found
481483
LOG(info) << " [TrackTuner] File " << fullNameFileQoverPt << " already downloaded. Not downloading it anymore";
482484
} else {
483485
LOG(info) << "[TrackTuner] downloading input file " << nameFileQoverPt << " from CCDB...";

0 commit comments

Comments
 (0)