Skip to content

Commit 888fcc3

Browse files
committed
Please consider the following formatting changes
1 parent 6b15fd8 commit 888fcc3

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

PWGDQ/Tasks/dqEfficiency_withAssoc.cxx

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3795,7 +3795,7 @@ struct AnalysisDileptonTrack {
37953795
DefineHistograms(fHistMan, Form("MCTruthGen_%s", sig->GetName()), "");
37963796
DefineHistograms(fHistMan, Form("MCTruthGenSel_%s", sig->GetName()), "");
37973797
}
3798-
for (auto& sig: fRecMCSignals) {
3798+
for (auto& sig : fRecMCSignals) {
37993799
DefineHistograms(fHistMan, Form("MCTruthGenSelBR_%s", sig->GetName()), "");
38003800
DefineHistograms(fHistMan, Form("MCTruthGenSelBRAccepted_%s", sig->GetName()), "");
38013801
}
@@ -4213,11 +4213,13 @@ struct AnalysisDileptonTrack {
42134213
for (auto t1 : mcTrackIndices) {
42144214
auto track1 = mcTracks.rawIteratorAt(*(&t1));
42154215
for (auto t2 : mcTrackIndices) {
4216-
if (t1 == t2 || t2 < t1) continue;
4216+
if (t1 == t2 || t2 < t1)
4217+
continue;
42174218
auto track2 = mcTracks.rawIteratorAt(*(&t2));
42184219
for (auto t3 : mcTrackIndices) {
4219-
if (t3 == t1 || t3 == t2) continue;
4220-
auto track3 = mcTracks.rawIteratorAt(*(&t3));
4220+
if (t3 == t1 || t3 == t2)
4221+
continue;
4222+
auto track3 = mcTracks.rawIteratorAt(*(&t3));
42214223

42224224
for (auto& sig : fRecMCSignals) {
42234225
if (sig->CheckSignal(true, track1, track2, track3)) {

0 commit comments

Comments
 (0)