Skip to content

Commit 5504ec4

Browse files
authored
Deleting unused variables
1 parent 6f83cd1 commit 5504ec4

File tree

1 file changed

+0
-10
lines changed

1 file changed

+0
-10
lines changed

PWGUD/Tasks/fwdMuonsUPC.cxx

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -410,9 +410,6 @@ struct fwdMuonsUPC {
410410
std::unordered_map<int32_t, ZDCinfo> zdcPerCand;
411411
collectCandZDCInfo(zdcPerCand, ZDCs);
412412

413-
int match = 0;
414-
int tot = 0;
415-
416413
// loop over the candidates
417414
for (const auto& item : tracksPerCand) {
418415
int32_t trId1 = item.second[0];
@@ -422,10 +419,6 @@ struct fwdMuonsUPC {
422419
auto tr1 = fwdTracks.iteratorAt(trId1);
423420
auto tr2 = fwdTracks.iteratorAt(trId2);
424421

425-
// see number of events that have ZDC info
426-
match = match + zdcPerCand.count(candID);
427-
tot++;
428-
429422
ZDCinfo zdc;
430423

431424
if (zdcPerCand.count(candID) != 0) {
@@ -439,9 +432,6 @@ struct fwdMuonsUPC {
439432

440433
processCand(cand, tr1, tr2, zdc);
441434
}
442-
443-
// LOGP(info,"my matches = {}",match);
444-
// LOGP(info,"tot = {}",tot);
445435
}
446436

447437
PROCESS_SWITCH(fwdMuonsUPC, process, "", false);

0 commit comments

Comments
 (0)