We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a3da58d commit 36c2e9cCopy full SHA for 36c2e9c
1 file changed
Common/Tasks/centralityStudypp.cxx
@@ -223,12 +223,12 @@ struct centralityStudypp {
223
224
// won't capture null pointers -> explicitly check for those when attempting to evaluate
225
auto reportSuccess = [](TH1* a, std::string name) {
226
- if(!a){
+ if (!a) {
227
LOGF(info, "Calibration missing for %s", name);
228
- }else{
+ } else {
229
LOGF(info, "Calibration loaded for %s", name);
230
}
231
- };
+ };
232
233
reportSuccess(hCentralityFV0A, "FV0A");
234
reportSuccess(hCentralityFT0A, "FT0A");
0 commit comments