Changeset 6949 for trunk/MagicSoft/Mars/mfbase
- Timestamp:
- 04/18/05 10:35:54 (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mfbase/MFEventSelector2.cc
r6916 r6949 481 481 { 482 482 // how many events do we still want to read in this bin 483 fNom[bin] -= 1;483 fNom[bin]--; 484 484 rc = kTRUE; 485 485 … … 491 491 492 492 // how many events are still pending to be read 493 fIs[bin] -= 1;493 fIs[bin]--; 494 494 495 495 return rc; … … 530 530 { 531 531 fResult = kFALSE; 532 fCounter[1] += 1;532 fCounter[1]++; 533 533 return kTRUE; 534 534 } … … 539 539 if (!fResult) 540 540 { 541 fCounter[2] += 1;541 fCounter[2]++; 542 542 return kTRUE; 543 543 } 544 544 545 fCounter[0] += 1;545 fCounter[0]++; 546 546 547 547 return kTRUE;
Note:
See TracChangeset
for help on using the changeset viewer.