Changeset 8561 for trunk/MagicSoft


Ignore:
Timestamp:
06/15/07 14:01:51 (17 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r8560 r8561  
    1919                                                 -*-*- END OF LINE -*-*-
    2020
     21 2007/06/15 Thomas Bretz
     22
     23   * mpedestal/MPedestalSubtractedEvt.cc:
     24     - fixed a bug in the determination of the maximum slice. Only
     25       each second slice was checked. This has been introduced with
     26       the last change four weeks ago.
     27
     28
     29
    2130 2007/06/15 Daniela Dorner
    2231
     
    130139   * mjobs/MJob.cc:
    131140     - one more sanity check if MEnv is not valid
     141
     142   * Makefile:
     143     - first compile the programs source code and then link the library
     144       this make it much faster to debug the code of the program sources.
    132145
    133146
  • trunk/MagicSoft/Mars/mpedestal/MPedestalSubtractedEvt.cc

    r8519 r8561  
    11/* ======================================================================== *\
    2 ! $Name: not supported by cvs2svn $:$Id: MPedestalSubtractedEvt.cc,v 1.4 2007-05-16 13:56:17 tbretz Exp $
     2! $Name: not supported by cvs2svn $:$Id: MPedestalSubtractedEvt.cc,v 1.5 2007-06-15 12:58:57 tbretz Exp $
    33! --------------------------------------------------------------------------
    44!
     
    150150
    151151    for (const Float_t *ptr=beg+1; ptr<=sam+last; ptr++)
    152         if (*++ptr>*max)
     152        if (*ptr>*max)
    153153            max = ptr;
    154154
     
    178178
    179179    for (const Byte_t *ptr=beg+1; ptr<=sam+last; ptr++)
    180         if (*++ptr>*max)
     180        if (*ptr>*max)
    181181            max = ptr;
    182182
Note: See TracChangeset for help on using the changeset viewer.