Ignore:
Timestamp:
08/26/04 16:40:23 (20 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars/mbase
Files:
3 edited

Legend:

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

    r1080 r4748  
    1515! *
    1616!
    17 !   Author(s): Thomas Bretz  12/2000 (tbretz@uni-sw.gwdg.de)
     17!   Author(s): Thomas Bretz  12/2000 <mailto:tbretz@astro.uni-wuerzburg.de>
    1818!
    19 !   Copyright: MAGIC Software Development, 2000-2001
     19!   Copyright: MAGIC Software Development, 2000-2004
    2020!
    2121\* ======================================================================== */
     
    2323
    2424//////////////////////////////////////////////////////////////////////////////
    25 //                                                                          //
    26 // MArrayB                                                                  //
    27 //                                                                          //
    28 // Array of Byte_t. It is almost the same than TArrayC, but it containes    //
    29 // Byte_t instead of Char_t and it can be stored with splitlevel=1 to a     //
    30 // a root-file because of it's derivement from MArray (TObject)             //                                                                       //
    31 //                                                                          //
     25//
     26// MArrayB
     27//
     28// Array of Byte_t. It is almost the same than TArrayC, but it containes
     29// Byte_t instead of Char_t and it can be stored with splitlevel=1 to a
     30// a root-file because of it's derivement from MArray (TObject)                                                                                    //
     31//
     32// Another advantage is: operator[] has no range check!
     33//
    3234//////////////////////////////////////////////////////////////////////////////
    3335#include "MArrayB.h"
  • trunk/MagicSoft/Mars/mbase/MArrayS.cc

    r1080 r4748  
    1616!
    1717!
    18 !   Author(s): Thomas Bretz  12/2000 <mailto:tbretz@uni-sw.gwdg.de>
     18!   Author(s): Thomas Bretz  12/2000 <mailto:tbretz@astro.uni-wuerzburg.de>
    1919!
    20 !   Copyright: MAGIC Software Development, 2000-2001
     20!   Copyright: MAGIC Software Development, 2000-2004
    2121!
    2222!
     
    2525
    2626//////////////////////////////////////////////////////////////////////////////
    27 //                                                                          //
    28 // MArrayS                                                                  //
    29 //                                                                          //
    30 // Array of UShort_t. It is almost the same than TArrayS, but it containes  //
    31 // UShort_t instead of Short_t and it can be stored with splitlevel=1 to a  //
    32 // a root-file because of it's derivement from MArray (TObject)             //                                                                       //
    33 //                                                                          //
     27//
     28// MArrayS
     29//
     30// Array of UShort_t. It is almost the same than TArrayS, but it containes
     31// UShort_t instead of Short_t and it can be stored with splitlevel=1 to a
     32// a root-file because of it's derivement from MArray (TObject)                                                                                    //
     33//
     34// Another advantage is: operator[] has no range check!
     35//
    3436//////////////////////////////////////////////////////////////////////////////
    3537#include "MArrayS.h"
  • trunk/MagicSoft/Mars/mbase/MGMap.cc

    r4108 r4748  
    135135MGMap::~MGMap()
    136136{
    137 //    fToolTip->Hide();
    138 //    delete fToolTip;
    139 
    140137    if (TestBit(kIsOwner))
    141138        Delete();
     
    164161    {
    165162        delete (TObject*)(key);
    166         if (!val)
    167             continue;
    168 
    169         delete (TString*)(val);
     163        if (val)
     164            delete (TString*)(val);
    170165        /*
    171166         Long_t key2, val2;
Note: See TracChangeset for help on using the changeset viewer.