Ignore:
Timestamp:
03/02/01 13:43:09 (24 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars/mbase
Files:
2 edited

Legend:

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

    r666 r667  
    2424ClassImp(MParList)
    2525
    26 MParList::MParList()
     26MParList::MParList(const char *name, const char *title)
    2727{
    28   //
    29   //  default constructor
    30   //  creates an empty list
    31   //
    32 
     28    //
     29    //  default constructor
     30    //  creates an empty list
     31    //
     32    *fName  = name  ? name  : "MParList";
     33    *fTitle = title ? title : "List of Parameter Containers";
    3334}
    3435
    3536MParList::MParList(MParList &ts)
    3637{
    37   //
    38   // copy constructor
    39   //
     38    //
     39    // copy constructor
     40    //
    4041
    41   fContainer.AddAll(&ts.fContainer);
     42    fContainer.AddAll(&ts.fContainer);
    4243}
    4344
  • trunk/MagicSoft/Mars/mbase/MParList.h

    r666 r667  
    2929
    3030public:
    31     MParList();
     31    MParList(const char *name=NULL, const char *title=NULL);
    3232    MParList(MParList &ts);
    3333
Note: See TracChangeset for help on using the changeset viewer.