Skip to content
Merged
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
4 changes: 2 additions & 2 deletions Common/TableProducer/centralityTable.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@
TH1* mhMultSelCalib = nullptr;
float mMCScalePars[6] = {0.0};
TFormula* mMCScale = nullptr;
explicit CalibrationInfo(std::string name)

Check warning on line 151 in Common/TableProducer/centralityTable.cxx

View workflow job for this annotation

GitHub Actions / O2 linter

[name/function-variable]

Use lowerCamelCase for names of functions and variables.
: name(name),
mCalibrationStored(false),
mhMultSelCalib(nullptr),
Expand Down Expand Up @@ -590,9 +590,9 @@
estimator.mCalibrationStored = true;
estimator.isSane();
} else {
if(ccdbConfig.doNotCrashOnNull){
if (ccdbConfig.doNotCrashOnNull) {
LOGF(info, "Calibration information from %s for run %d not available, will fill this estimator with invalid values and continue (no crash).", estimator.name.c_str(), bc.runNumber());
}else{
} else {
LOGF(error, "Calibration information from %s for run %d not available", estimator.name.c_str(), bc.runNumber());
}
}
Expand Down
Loading