Ignore:
Timestamp:
03/22/01 12:24:47 (24 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars/mbase
Files:
8 edited

Legend:

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

    r604 r698  
    3939    void Eventloop(Int_t maxcnt=-1, const char *tlist="MTaskList");
    4040
    41     ClassDef(MEvtLoop, 1) // Class to execute the tasks in a tasklist
     41    ClassDef(MEvtLoop, 0) // Class to execute the tasks in a tasklist
    4242};
    4343
  • trunk/MagicSoft/Mars/mbase/MLog.h

    r609 r698  
    116116    }
    117117
    118     ClassDef(MLog, 1)
     118    ClassDef(MLog, 0)
    119119};
    120120
  • trunk/MagicSoft/Mars/mbase/MLogManip.h

    r654 r698  
    5353//
    5454#ifndef __CINT__
    55 #define dbginf        __FILE__ << " " << __LINE__ << ": "
     55#define dbginf        __FILE__ << " l." << __LINE__ << ": "
    5656#endif
    5757//
  • trunk/MagicSoft/Mars/mbase/MParList.cc

    r667 r698  
    2424ClassImp(MParList)
    2525
     26    //
     27    // FIXME: The Automatic created classes are NEVER deleted!!!!!
     28    //
     29
    2630MParList::MParList(const char *name, const char *title)
    2731{
     
    3236    *fName  = name  ? name  : "MParList";
    3337    *fTitle = title ? title : "List of Parameter Containers";
     38
     39    //
     40    // This sets a flag that the list is the owner, which means
     41    // that the destructor of the list deletes all it's objects
     42    //
     43    fAutodelete.SetOwner();
    3444}
    3545
     
    151161    AddToList(pcont);
    152162
     163    fAutodelete.Add(pcont);
     164
    153165    //
    154166    //  Find an object in the list.
  • trunk/MagicSoft/Mars/mbase/MParList.h

    r667 r698  
    2727private:
    2828    TOrdCollection fContainer;  // Collection of Parameter and Data Containers
     29    TOrdCollection fAutodelete; // All what this list contains is deleted in the destructor
    2930
    3031public:
     
    4546    void Print(Option_t *t = NULL);
    4647
    47     ClassDef(MParList, 1)       //list of parameter containers (MParContainer)
     48    ClassDef(MParList, 0) // list of parameter containers (MParContainer)
    4849};
    4950
  • trunk/MagicSoft/Mars/mbase/MReadTree.h

    r585 r698  
    3636    UInt_t GetEntries() {return fNumEntries;}
    3737
    38     ClassDef(MReadTree, 1)      // Reads one tree
     38    ClassDef(MReadTree, 0)      // Reads one tree
    3939};
    4040
  • trunk/MagicSoft/Mars/mbase/MTask.h

    r609 r698  
    2727    virtual Bool_t PostProcess();
    2828
    29     ClassDef(MTask, 1)          //Abstract base class for a task
     29    ClassDef(MTask, 0)          //Abstract base class for a task
    3030};
    3131
  • trunk/MagicSoft/Mars/mbase/MTaskList.h

    r609 r698  
    4141    void Print(Option_t *t = NULL);
    4242
    43     ClassDef(MTaskList, 1)      //collection of tasks to be performed in the eventloop
     43    ClassDef(MTaskList, 0)      //collection of tasks to be performed in the eventloop
    4444};
    4545
Note: See TracChangeset for help on using the changeset viewer.