Ignore:
Timestamp:
01/22/02 20:50:06 (23 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars/mbase
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mbase/MFilter.cc

    r1080 r1211  
    7272ClassImp(MFilter);
    7373
     74MFilter::MFilter(const char *name, const char *title)
     75{
     76    fName  = name  ? name  : "MFilter";
     77    fTitle = title ? title : "Base Class for a filter";
     78}
     79
    7480// --------------------------------------------------------------------------
    7581//
  • trunk/MagicSoft/Mars/mbase/MFilter.h

    r1014 r1211  
    1111{
    1212public:
    13     MFilter() {}
    14     ~MFilter()
    15     {
    16     }
     13    MFilter(const char *name=NULL, const char *title=NULL);
    1714
    1815    virtual Bool_t IsExpressionTrue() const = 0;
  • trunk/MagicSoft/Mars/mbase/MParContainer.cc

    r1203 r1211  
    1818!   Author(s): Thomas Bretz  12/2000 <mailto:tbretz@uni-sw.gwdg.de>
    1919!
    20 !   Copyright: MAGIC Software Development, 2000-2001
     20!   Copyright: MAGIC Software Development, 2000-2002
    2121!
    2222!
  • trunk/MagicSoft/Mars/mbase/MParList.cc

    r1187 r1211  
    1818!   Author(s): Thomas Bretz  12/2000 <mailto:tbretz@uni-sw.gwdg.de>
    1919!
    20 !   Copyright: MAGIC Software Development, 2000-2001
     20!   Copyright: MAGIC Software Development, 2000-2002
    2121!
    2222!
  • trunk/MagicSoft/Mars/mbase/MReadMarsFile.cc

    r1203 r1211  
    1818!   Author(s): Thomas Bretz  12/2000 <mailto:tbretz@uni-sw.gwdg.de>
    1919!
    20 !   Copyright: MAGIC Software Development, 2000-2001
     20!   Copyright: MAGIC Software Development, 2000-2002
    2121!
    2222!
  • trunk/MagicSoft/Mars/mbase/MReadTree.cc

    r1203 r1211  
    1818!   Author(s): Thomas Bretz  12/2000 <mailto:tbretz@uni-sw.gwdg.de>
    1919!
    20 !   Copyright: MAGIC Software Development, 2000-2001
     20!   Copyright: MAGIC Software Development, 2000-2002
    2121!
    2222!
     
    577577    // will be fixed in 3.03
    578578    //
     579#if ROOT_VERSION_CODE < ROOT_VERSION(3,03,01)
    579580    if (fNumEntry >= fNumEntries)
    580581        return kFALSE;
     582#endif
    581583
    582584#if ROOT_VERSION_CODE < ROOT_VERSION(3,02,06)
Note: See TracChangeset for help on using the changeset viewer.