Changeset 5883


Ignore:
Timestamp:
01/18/05 17:32:52 (20 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r5880 r5883  
    2121                                                 -*-*- END OF LINE -*-*-
    2222
     23 2005/01/18 Thomas Bretz
     24
     25   * mbase/MMath.cc:
     26     - added a check for s==0 in SignificanceLiMa, because otherwise the
     27       result is NaN
     28
     29   * mfbase/MF.cc:
     30     - removed an obsolete debugging output from the latest changes
     31
     32   * mhflux/MHAlpha.cc:
     33     - reset fHTime, too
     34
     35
     36
    2337 2005/01/18 Nicola Galante
    2438
     
    2640     - added parentesis to ensure bitwise operators priority
    2741       with respect to logical operators.
     42
    2843
    2944
     
    88103
    89104
     105
    90106 2005/01/17 Nadia Tonello and Markus Gaug
    91107
    92108   * mcalib/MCalibrationChargeCam.cc
    93109     - some fit improvements in the function GetAveragedConvFADC2PhotPerArea
     110
    94111
    95112
  • trunk/MagicSoft/Mars/mbase/MMath.cc

    r5836 r5883  
    7070//
    7171//  Returns -1 if sum<0 or alpha<0 or the argument of sqrt<0
    72 //  Returns  0 if s+b==0
     72//  Returns  0 if s+b==0 or s==0
    7373//
    7474Double_t MMath::SignificanceLiMa(Double_t s, Double_t b, Double_t alpha)
     
    7676    const Double_t sum = s+b;
    7777
    78     if (sum==0)
     78    if (s==0 || sum==0)
    7979        return 0;
    8080
  • trunk/MagicSoft/Mars/mfbase/MF.cc

    r5875 r5883  
    398398TString MF::GetDataMember() const
    399399{
    400     *fLog << dbg << "MF::GetDataMember" << endl;
    401400    return fF->GetDataMember();
    402401}
  • trunk/MagicSoft/Mars/mhflux/MHAlpha.cc

    r5832 r5883  
    221221    fHEnergy.Reset();
    222222    fHTheta.Reset();
     223    fHTime.Reset();
    223224
    224225    if (fName!=(TString)"MHAlphaOff" && fOffData==NULL)
Note: See TracChangeset for help on using the changeset viewer.