@@ -607,7 +607,7 @@ struct JetSpectraEseTask {
607607 if (cfg.hEff == nullptr ) {
608608 LOGF (fatal, " Could not find %s as TH1F in track efficiency list %s" , efficiencyName.c_str (), cfgEfficiency.value .c_str ());
609609 }
610- LOGF (info, " Loaded tracking efficiency %s from %s (%p) " , efficiencyName.c_str (), cfgEfficiency.value .c_str (), static_cast < void *>(cfg. hEff ));
610+ LOGF (info, " Loaded tracking efficiency %s from %s" , efficiencyName.c_str (), cfgEfficiency.value .c_str ());
611611 }
612612 if (!cfgEfficiency3D.value .empty ()) {
613613 cfg.h3EffList = ccdb->getForTimeStamp <TList>(cfgEfficiency3D, timestamp);
@@ -618,7 +618,7 @@ struct JetSpectraEseTask {
618618 if (cfg.h3Eff == nullptr ) {
619619 LOGF (fatal, " Could not find %s as TH3F in 3D track efficiency list %s" , efficiencyName.c_str (), cfgEfficiency3D.value .c_str ());
620620 }
621- LOGF (info, " Loaded 3D tracking efficiency %s from %s (%p) " , efficiencyName.c_str (), cfgEfficiency3D.value .c_str (), static_cast < void *>(cfg. h3Eff ));
621+ LOGF (info, " Loaded 3D tracking efficiency %s from %s" , efficiencyName.c_str (), cfgEfficiency3D.value .c_str ());
622622 cfg.is3D = true ;
623623 }
624624 cfg.isLoaded = true ;
@@ -1482,7 +1482,8 @@ struct JetSpectraEseTask {
14821482 auto cDF = 1 . - TMath::Gamma (nDF, chi2);
14831483 if constexpr (fillHist)
14841484 registry.fill (HIST (" eventQA/hRhoPhiCheck" ), 0.5 );
1485- if (cfgRhoPhiPvalCriteria && cDF < 0.01 ) {
1485+ const float pValue = 0.01 ;
1486+ if (cfgRhoPhiPvalCriteria && cDF < pValue) {
14861487 const float noFlow = 0 .0f ;
14871488 modulationFit->SetParameter (1 , noFlow); // o2-linter: disable=magic-number (fit params)
14881489 modulationFit->SetParameter (3 , noFlow); // o2-linter: disable=magic-number (fit params)
0 commit comments