Ignore:
Timestamp:
08/01/02 15:22:34 (22 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars/mbase
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mbase/MEvtLoop.h

    r1471 r1472  
    2222private:
    2323    MParList  *fParList;
    24     MTaskList *fTaskList;
     24    MTaskList *fTaskList;      //!
    2525
    26     TGProgressBar *fProgress;
     26    TGProgressBar *fProgress;  //!
    2727
    2828    enum { kIsOwner = BIT(14) };
     
    4848    void SavePrimitive(ofstream &out, Option_t *o="");
    4949
    50     ClassDef(MEvtLoop, 0) // Class to execute the tasks in a tasklist
     50    ClassDef(MEvtLoop, 1) // Class to execute the tasks in a tasklist
    5151};
    5252
  • trunk/MagicSoft/Mars/mbase/MParList.h

    r1471 r1472  
    2626private:
    2727    TOrdCollection *fContainer;  // Collection of Parameter and Data Containers
    28     TOrdCollection *fAutodelete; // All what this list contains is deleted in the destructor
     28    TOrdCollection *fAutodelete; //! All what this list contains is deleted in the destructor
    2929
    3030    static TString GetClassName(const char *classname);
     
    8080    void SavePrimitive(ofstream &out, Option_t *o="");
    8181
    82     ClassDef(MParList, 0) // list of parameter containers (MParContainer)
     82    ClassDef(MParList, 1) // list of parameter containers (MParContainer)
    8383};
    8484
  • trunk/MagicSoft/Mars/mbase/MTaskList.h

    r1471 r1472  
    2121{
    2222private:
    23     TList    *fTasks;   // Container for the ordered list of different tasks
     23    TList    *fTasks;       // Container for the ordered list of different tasks
    2424    TList    fTasksProcess; //!
    25     MParList *fParList;
     25    MParList *fParList;     //!
    2626
    27     UInt_t *fCntContinue;
    28     UInt_t *fCntTrue;
     27    UInt_t *fCntContinue;   //!
     28    UInt_t *fCntTrue;       //!
    2929
    3030    enum { kIsOwner = BIT(14) };
     
    6060    const TList *GetList() const { return fTasks; }
    6161
    62     ClassDef(MTaskList, 0)      //collection of tasks to be performed in the eventloop
     62    ClassDef(MTaskList, 1) //collection of tasks to be performed in the eventloop
    6363};
    6464
Note: See TracChangeset for help on using the changeset viewer.