Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 1 addition & 4 deletions Common/Tasks/zdcExtraTableReader.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,6 @@ double getMeanQFromMap(THn* h, double cent, double vx, double vy, double vz)

int idx[4] = {binCent, binVx, binVy, binVz};
return h->GetBinContent(idx);

}

// Helper for 1D recentering maps: returns mean Q for coordinate x
Expand Down Expand Up @@ -548,8 +547,7 @@ struct ZdcExtraTableReader {
if (lst) {
hMeanVx = safeClone<TH1>(lst->FindObject("hMeanVx"));
hMeanVy = safeClone<TH1>(lst->FindObject("hMeanVy"));
} else
{
} else {
LOGF(error, " >> CCDB TList is NULL for path: %s. Check object type (TList vs TFile).", folder.c_str());
}
}
Expand All @@ -574,7 +572,6 @@ struct ZdcExtraTableReader {
calibCache[stepIdx].hMeanQyZNA = safeClone<THn>(lstBase->FindObject("hMeanQyZNA"));
calibCache[stepIdx].hMeanQxZNC = safeClone<THn>(lstBase->FindObject("hMeanQxZNC"));
calibCache[stepIdx].hMeanQyZNC = safeClone<THn>(lstBase->FindObject("hMeanQyZNC"));


// Load 1D (Refine)
if ((step != calibrationStep) || isFineCalibrationStep) {
Expand Down
Loading