Skip to content

Commit be7e771

Browse files
authored
[PWGLF,PWGMM] mftReassociationValidation.cxx : more log improvement (#15983)
1 parent c90fe0f commit be7e771

1 file changed

Lines changed: 0 additions & 7 deletions

File tree

PWGMM/Mult/Tasks/mftReassociationValidation.cxx

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -813,26 +813,19 @@ struct MftReassociationValidation {
813813
{
814814

815815
grpmag = ccdb->getForTimeStamp<o2::parameters::GRPMagField>(configTask.grpmagPath, bc.timestamp());
816-
LOG(info) << "Setting magnetic field to current " << grpmag->getL3Current()
817-
<< " A for run " << bc.runNumber()
818-
<< " from its GRPMagField CCDB object";
819816
o2::base::Propagator::initFieldFromGRP(grpmag);
820817

821818
o2::field::MagneticField* field = static_cast<o2::field::MagneticField*>(TGeoGlobalMagField::Instance()->GetField());
822819
bZ = field->getBz(CcenterMFT);
823-
LOG(info) << "The field at the center of the MFT is bZ = " << bZ;
824820

825821
if (configTask.cfgApplyZShiftFromCCDB) {
826822
auto* zShift = ccdb->getForTimeStamp<std::vector<float>>(configTask.cfgZShiftPath, bc.timestamp());
827823
if (zShift != nullptr && !zShift->empty()) {
828-
LOGF(info, "reading z shift %f from %s", (*zShift)[0], configTask.cfgZShiftPath.value);
829824
mZShift = (*zShift)[0];
830825
} else {
831-
LOGF(info, "z shift is not found in ccdb path %s. set to 0 cm", configTask.cfgZShiftPath.value);
832826
mZShift = 0;
833827
}
834828
} else {
835-
LOGF(info, "z shift is manually set to %f cm", configTask.cfgManualZShift.value);
836829
mZShift = configTask.cfgManualZShift;
837830
}
838831
}

0 commit comments

Comments
 (0)