We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 335e59b commit aba5a1bCopy full SHA for aba5a1b
PWGDQ/Tasks/dqEfficiency_withAssoc.cxx
@@ -4217,12 +4217,12 @@ struct AnalysisDileptonTrack {
4217
for (auto t1 : mcTrackIndices) {
4218
auto track1 = mcTracks.rawIteratorAt(*(&t1));
4219
for (auto t2 : mcTrackIndices) {
4220
- if (t1 == t2 || t2 < t1)
4221
- continue;
+ if (t1 == t2) continue;
+ if (t2 < t1) continue;
4222
auto track2 = mcTracks.rawIteratorAt(*(&t2));
4223
for (auto t3 : mcTrackIndices) {
4224
- if (t3 == t1 || t3 == t2)
4225
+ if (t3 == t1) continue;
+ if (t3 == t2) continue;
4226
auto track3 = mcTracks.rawIteratorAt(*(&t3));
4227
4228
for (auto& sig : fRecMCSignals) {
0 commit comments