Skip to content

Commit 31079c2

Browse files
committed
Cleanup
1 parent f3c4f60 commit 31079c2

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

PWGDQ/Tasks/taskJPsiMu.cxx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -215,14 +215,14 @@ struct DqJPsiMuonCorrelations {
215215
// Dilepton kinematic cuts
216216
if ((dilepton.eta() < fConfigDileptonEtaMin || dilepton.eta() > fConfigDileptonEtaMax) ||
217217
(dilepton.pt() < fConfigDileptonPtMin || dilepton.pt() > fConfigDileptonPtMax)) {
218-
continue;
218+
continue;
219219
}
220220
// Dilepton leg kinematic cuts
221221
if ((dilepton.eta1() < fConfigMuonEtaMin || dilepton.eta1() > fConfigMuonEtaMax) ||
222222
(dilepton.pt1() < axisPt.value[1] || dilepton.pt1() > axisPt.value.back()) ||
223223
(dilepton.eta2() < fConfigMuonEtaMin || dilepton.eta2() > fConfigMuonEtaMax) ||
224224
(dilepton.pt2() < axisPt.value[1] || dilepton.pt2() > axisPt.value.back())) {
225-
continue;
225+
continue;
226226
}
227227

228228
// Fill invariant mass vs pT histogram for the dileptons and for trigger counting
@@ -308,7 +308,7 @@ double getWeight(const double pT, const std::vector<double>& pT_bins, const std:
308308
break;
309309
}
310310
}
311-
if ((efficiency[eff_bin] * (getRapidity(pT, eta_max) - getRapidity(pT, eta_min))) == 0) {
311+
if ((efficiency[eff_bin] * (getRapidity(pT, eta_max) - getRapidity(pT, eta_min))) == 0) {
312312
LOG(info) << "Efficiency correction factor is zero for pT: " << pT << ", efficiency: " << efficiency[eff_bin] << ", eta range: [" << eta_min << ", " << eta_max << "].";
313313
}
314314
return 1.0 / (efficiency[eff_bin] * (getRapidity(pT, eta_max) - getRapidity(pT, eta_min)));

0 commit comments

Comments
 (0)