Changeset 5502 for trunk/MagicSoft/Mars
- Timestamp:
- 11/29/04 15:15:06 (20 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r5499 r5502 22 22 23 23 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". 24 28 25 29 * msignal/MExtractor.cc -
trunk/MagicSoft/Mars/mpedestal/MPedestalPix.cc
r5464 r5502 127 127 // ------------------------------------------------------------------------ 128 128 // 129 // Return kTRUE if pedestal AND pedestalrms is valid (>=0)129 // Return kTRUE if pedestal rms is valid (>=0) 130 130 // 131 131 Bool_t MPedestalPix::IsValid() const 132 132 { 133 return fPedestal >=0 && fPedestalRms>=0;133 return fPedestalRms>=0; 134 134 }
Note:
See TracChangeset
for help on using the changeset viewer.