Changeset 3375
- Timestamp:
- 03/01/04 20:41:11 (21 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r3374 r3375 4 4 5 5 -*-*- 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 6 16 2004/03/01: Sebastian Raducci 7 17 -
trunk/MagicSoft/Mars/manalysis/MCerPhotEvt.cc
r3148 r3375 434 434 MCerPhotPix *pix; 435 435 while ((pix = (MCerPhotPix*)TObjArrayIter::Next())) 436 if ( pix->IsPixelUsed())436 if (!fUsedOnly || (fUsedOnly && pix->IsPixelUsed())) 437 437 return pix; 438 438 return pix;
Note:
See TracChangeset
for help on using the changeset viewer.