Ignore:
Timestamp:
03/02/04 09:22:13 (21 years ago)
Author:
tbretz
Message:
*** empty log message ***
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/manalysis/MCerPhotEvt.cc

    r3377 r3378  
    432432TObject *MCerPhotEvtIter::Next()
    433433{
     434    if (!fUsedOnly)
     435        return TObjArrayIter::Next();
     436
    434437    MCerPhotPix *pix;
    435438    while ((pix = (MCerPhotPix*)TObjArrayIter::Next()))
    436         if (!fUsedOnly || pix->IsPixelUsed())
     439        if (pix->IsPixelUsed())
    437440            return pix;
    438441    return pix;
Note: See TracChangeset for help on using the changeset viewer.