Skip to content

Commit 22c8443

Browse files
committed
Please consider the following formatting changes
1 parent 68a8f3c commit 22c8443

File tree

1 file changed

+10
-7
lines changed

1 file changed

+10
-7
lines changed

PWGDQ/Tasks/dqEfficiency_withAssoc.cxx

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4217,12 +4217,15 @@ struct AnalysisDileptonTrack {
42174217
for (auto t1 : mcTrackIndices) {
42184218
auto track1 = mcTracks.rawIteratorAt(*(&t1));
42194219
for (auto t2 : mcTrackIndices) {
4220-
if (t1 == t2) continue;
4221-
//if (t2 < t1) continue;
4220+
if (t1 == t2)
4221+
continue;
4222+
// if (t2 < t1) continue;
42224223
auto track2 = mcTracks.rawIteratorAt(*(&t2));
42234224
for (auto t3 : mcTrackIndices) {
4224-
if (t3 == t1) continue;
4225-
if (t3 == t2) continue;
4225+
if (t3 == t1)
4226+
continue;
4227+
if (t3 == t2)
4228+
continue;
42264229
auto track3 = mcTracks.rawIteratorAt(*(&t3));
42274230

42284231
for (auto& sig : fRecMCSignals) {
@@ -4341,9 +4344,9 @@ void DefineHistograms(HistogramManager* histMan, TString histClasses, const char
43414344
dqhistograms::DefineHistograms(histMan, objArray->At(iclass)->GetName(), "mctruth_track");
43424345
}
43434346

4344-
//if (classStr.Contains("MCTruthGen")) {
4345-
// dqhistograms::DefineHistograms(histMan, objArray->At(iclass)->GetName(), "mctruth_track");
4346-
//}
4347+
// if (classStr.Contains("MCTruthGen")) {
4348+
// dqhistograms::DefineHistograms(histMan, objArray->At(iclass)->GetName(), "mctruth_track");
4349+
// }
43474350

43484351
if (classStr.Contains("DileptonsSelected")) {
43494352
dqhistograms::DefineHistograms(histMan, objArray->At(iclass)->GetName(), "pair", "barrel,vertexing");

0 commit comments

Comments
 (0)