Changeset 4748 for trunk/MagicSoft/Mars/mbase
- Timestamp:
- 08/26/04 16:40:23 (20 years ago)
- Location:
- trunk/MagicSoft/Mars/mbase
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mbase/MArrayB.cc
r1080 r4748 15 15 ! * 16 16 ! 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> 18 18 ! 19 ! Copyright: MAGIC Software Development, 2000-200 119 ! Copyright: MAGIC Software Development, 2000-2004 20 20 ! 21 21 \* ======================================================================== */ … … 23 23 24 24 ////////////////////////////////////////////////////////////////////////////// 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 // 32 34 ////////////////////////////////////////////////////////////////////////////// 33 35 #include "MArrayB.h" -
trunk/MagicSoft/Mars/mbase/MArrayS.cc
r1080 r4748 16 16 ! 17 17 ! 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> 19 19 ! 20 ! Copyright: MAGIC Software Development, 2000-200 120 ! Copyright: MAGIC Software Development, 2000-2004 21 21 ! 22 22 ! … … 25 25 26 26 ////////////////////////////////////////////////////////////////////////////// 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 // 34 36 ////////////////////////////////////////////////////////////////////////////// 35 37 #include "MArrayS.h" -
trunk/MagicSoft/Mars/mbase/MGMap.cc
r4108 r4748 135 135 MGMap::~MGMap() 136 136 { 137 // fToolTip->Hide();138 // delete fToolTip;139 140 137 if (TestBit(kIsOwner)) 141 138 Delete(); … … 164 161 { 165 162 delete (TObject*)(key); 166 if (!val) 167 continue; 168 169 delete (TString*)(val); 163 if (val) 164 delete (TString*)(val); 170 165 /* 171 166 Long_t key2, val2;
Note:
See TracChangeset
for help on using the changeset viewer.