Ignore:
Timestamp:
07/20/01 16:44:11 (23 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

    r890 r891  
    6969// --------------------------------------------------------------------------
    7070//
    71 // copy constructor
     71//  Copy constructor. It copies all entries of the parameter list, but it
     72//  takes care of, that the automatically created entries are only deleted
     73//  once. (doesn't copy the list which holds the automatically created
     74//  entries)
    7275//
    7376MParList::MParList(MParList &ts)
     
    7881// --------------------------------------------------------------------------
    7982//
    80 //  create the Iterator over the tasklist
     83//  Set the logging streamer of the parameter list and all contained
     84//  parameter containers
    8185//
    8286void MParList::SetLogStream(MLog *log)
  • trunk/MagicSoft/Mars/mbase/MParList.h

    r858 r891  
    2929    TOrdCollection fAutodelete; // All what this list contains is deleted in the destructor
    3030
     31    static TString GetClassName(const char *classname);
     32    static TString GetObjectName(const char *classname, const char *objname);
     33
    3134public:
    3235    MParList(const char *name=NULL, const char *title=NULL);
     
    3841
    3942    Bool_t AddToList(MParContainer *obj, MParContainer *where = NULL);
     43    void   AddToList(TObjArray *list);
    4044
    4145    void SetLogStream(MLog *log);
     
    4448    TObject       *FindObject(TObject *obj) const;
    4549    MParContainer *FindCreateObj(const char *classname, const char *objname=NULL);
     50
     51    TObjArray FindObjectList(const char *name, const UInt_t from, const UInt_t to=0) const;
     52    TObjArray FindCreateObjList(const char *cname, const UInt_t from, const UInt_t to=0, const char *oname=NULL);
     53
     54    static TObjArray CreateObjList(const char *cname, const UInt_t from, const UInt_t to=0, const char *oname=NULL);
    4655
    4756    void Reset();
Note: See TracChangeset for help on using the changeset viewer.