Changeset 7804 for trunk/MagicSoft/Mars/mranforest
- Timestamp:
- 07/26/06 11:46:55 (18 years ago)
- Location:
- trunk/MagicSoft/Mars/mranforest
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mranforest/MRanTree.cc
r7730 r7804 34 34 #include <iostream> 35 35 36 #include <TVector.h>37 #include <TMatrix.h>38 36 #include <TRandom.h> 39 37 … … 691 689 } 692 690 693 Double_t MRanTree::TreeHad(const TMatrix Row&event)691 Double_t MRanTree::TreeHad(const TMatrixFRow_const &event) 694 692 { 695 693 return TreeHad(event.GetPtr()); -
trunk/MagicSoft/Mars/mranforest/MRanTree.h
r7697 r7804 14 14 #endif 15 15 16 class TMatrix; 16 #ifndef ROOT_TVector 17 #include <TVector.h> 18 #endif 19 20 #ifndef ROOT_TMatrix 21 #include <TMatrix.h> 22 #endif 23 17 24 class TMatrixRow; 18 class TVector;19 25 class TRandom; 20 26 … … 103 109 104 110 Double_t TreeHad(const TVector &event); 105 Double_t TreeHad(const TMatrix Row&event);111 Double_t TreeHad(const TMatrixFRow_const &event); 106 112 Double_t TreeHad(const TMatrix &m, Int_t ievt); 107 113
Note:
See TracChangeset
for help on using the changeset viewer.