File tree Expand file tree Collapse file tree 1 file changed +2
-0
lines changed
Expand file tree Collapse file tree 1 file changed +2
-0
lines changed Original file line number Diff line number Diff 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..." ;
You can’t perform that action at this time.
0 commit comments