Changeset 3375


Ignore:
Timestamp:
03/01/04 20:41:11 (21 years ago)
Author:
tonello
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r3374 r3375  
    44
    55                                                 -*-*- END OF LINE -*-*-
     6
     7 2004/03/01: Nadia Tonello
     8
     9   * manalysis/MCerPhotEvt.cc
     10     - TObject *MCerPhotEvtIter::Next() now returns Used pixels
     11        only if fUsedonly=kTRUE, otherwise it returns all the pixels
     12        in the array 
     13 
     14
     15
    616 2004/03/01: Sebastian Raducci
    717
  • trunk/MagicSoft/Mars/manalysis/MCerPhotEvt.cc

    r3148 r3375  
    434434    MCerPhotPix *pix;
    435435    while ((pix = (MCerPhotPix*)TObjArrayIter::Next()))
    436         if (pix->IsPixelUsed())
     436        if (!fUsedOnly || (fUsedOnly && pix->IsPixelUsed()))
    437437            return pix;
    438438    return pix;
Note: See TracChangeset for help on using the changeset viewer.