Changeset 2100


Ignore:
Timestamp:
05/09/03 10:19:36 (22 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r2099 r2100  
    11                                                 -*-*- END OF LINE -*-*-
     2
     3 2003/05/09: Thomas Bretz
     4
     5   * mbase/MLog.cc:
     6     - do not underline if eNoColors is set
     7     
     8   * mbase/MLogManip.cc:
     9     - removed an obsolete comment
     10     
     11   * mfileio/MReadTree.cc:
     12     - print warning in case no files could be added to chain
     13     
     14   * mfilter/MFDataChain.h:
     15     - fixed code layout
     16     
     17   * mimage/MHHillasSrc.h:
     18     - added Paint
     19     
     20   * mimage/MHillasCalc.[h,cc]:
     21     - changed default title
     22
     23
    224
    325 2003/05/08: Thomas Bretz
  • trunk/MagicSoft/Mars/mbase/MLogManip.cc

    r1080 r2100  
    5050    //
    5151    MLog *log=(MLog*)lout.rdbuf();
    52 //    cout << " -" << i << "- ";
    5352    log->SetOutputLevel(i);
    5453    return lout;
  • trunk/MagicSoft/Mars/mfileio/MReadTree.cc

    r1936 r2100  
    240240        SetBit(kChainWasChanged);
    241241
     242    *fLog << warn << "WARNING: No files '" << fname << "' added to " << GetDescriptor() << endl;
     243
    242244    return numfiles;
    243245}
  • trunk/MagicSoft/Mars/mfilter/MFDataChain.h

    r1661 r2100  
    3232public:
    3333    MFDataChain(const char *member, const char type, const Double_t val,
    34                  const char *name=NULL, const char *title=NULL);
     34                const char *name=NULL, const char *title=NULL);
    3535
    3636    Bool_t IsExpressionTrue() const { return fResult; }
  • trunk/MagicSoft/Mars/mimage/MHHillasSrc.h

    r2043 r2100  
    3636
    3737    void Draw(Option_t *opt=NULL);
     38    void Paint(Option_t *opt);
     39
    3840
    3941    ClassDef(MHHillasSrc, 1) // Container which holds histograms for the source dependant parameters
  • trunk/MagicSoft/Mars/mimage/MHillasCalc.cc

    r2029 r2100  
    7878{
    7979    fName  = name  ? name  : "MHillasCalc";
    80     fTitle = title ? title : "Calculate Hillas parameters";
     80    fTitle = title ? title : "Calculate Hillas and other image parameters";
    8181}
    8282
  • trunk/MagicSoft/Mars/mimage/MHillasCalc.h

    r2027 r2100  
    6060    Bool_t TestFlag(CalcCont_t i) const { return fFlags&i; }
    6161
    62     ClassDef(MHillasCalc, 0)   // Task to calculate Hillas parameters
     62    ClassDef(MHillasCalc, 0) // Task to calculate Hillas and other image parameters
    6363};
    6464
Note: See TracChangeset for help on using the changeset viewer.