Changeset 4647 for trunk/MagicSoft
- Timestamp:
- 08/17/04 13:10:13 (20 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r4645 r4647 27 27 with Florian 28 28 29 30 29 31 2004/08/17: Thomas Bretz 30 32 … … 50 52 * mraw/MRawEvtPixelIter.[h,cc]: 51 53 - fixed behaviour or fABFlags in case the array is empty 54 - changed Char_t data member to Byte_t according to change 55 in MRawEvtData 56 57 * mraw/MRawEvtData.[h,cc]: 58 - changed TArrayC data member to MArrayB to get rid of a memory 59 leak which resulted in huge memory usage when reading 60 MRawEvtData 61 62 * mhbase/MHMatrix.[h,cc], mranforest/MRanTree.cc, 63 mtools/MHSimmulatedAnnealing.h, mtools/MSimmulatedAnnealing.h: 64 - changed to compile with root-4.00/08 52 65 53 66 -
trunk/MagicSoft/Mars/mranforest/MRanTree.cc
r2728 r4647 487 487 Double_t MRanTree::TreeHad(const TMatrix &m, Int_t ievt) 488 488 { 489 #if ROOT_VERSION_CODE < ROOT_VERSION(4,00,8) 489 490 return TreeHad(TMatrixRow(m, ievt)); 491 #else 492 return TreeHad(TMatrixFRow_const(m, ievt)); 493 #endif 490 494 } 491 495 -
trunk/MagicSoft/Mars/mtools/MHSimulatedAnnealing.h
r2817 r4647 14 14 #include <TH2.h> 15 15 #endif 16 17 class TMatrix; 18 class TVector; 16 19 17 20 class MHSimulatedAnnealing : public MH
Note:
See TracChangeset
for help on using the changeset viewer.