Changeset 5502 for trunk/MagicSoft/Mars


Ignore:
Timestamp:
11/29/04 15:15:06 (20 years ago)
Author:
gaug
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r5499 r5502  
    2222
    2323 2004/11/28: Markus Gaug
     24
     25   * mpedestal/MPedestalPix.cc
     26     - removed (fPedestal>=0) in the IsValid() function since now, there
     27       can be valid pedestal Pix's with negative "pedestal".
    2428
    2529   * msignal/MExtractor.cc
  • trunk/MagicSoft/Mars/mpedestal/MPedestalPix.cc

    r5464 r5502  
    127127// ------------------------------------------------------------------------
    128128//
    129 // Return kTRUE if pedestal AND pedestal rms is valid (>=0)
     129// Return kTRUE if pedestal rms is valid (>=0)
    130130//
    131131Bool_t MPedestalPix::IsValid() const
    132132{
    133     return fPedestal>=0 && fPedestalRms>=0;
     133    return fPedestalRms>=0;
    134134}
Note: See TracChangeset for help on using the changeset viewer.