Ignore:
Timestamp:
10/20/03 15:21:17 (21 years ago)
Author:
tbretz
Message:
*** empty log message ***
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mhist/MHMatrix.cc

    r2328 r2406  
    216216    }
    217217
     218#if ROOT_VERSION_CODE < ROOT_VERSION(3,05,07)
    218219    TMatrix m(fM);
    219 
     220#endif
    220221    fM.ResizeTo(fM.GetNrows()*2, fData->GetNumEntries());
    221222
     223#if ROOT_VERSION_CODE < ROOT_VERSION(3,05,07)
    222224    TVector vold(fM.GetNcols());
    223225    for (int x=0; x<m.GetNrows(); x++)
    224226        TMatrixRow(fM, x) = vold = TMatrixRow(m, x);
     227#endif
    225228}
    226229
     
    11331136    }
    11341137
     1138#if ROOT_VERSION_CODE < ROOT_VERSION(3,05,07)
    11351139    const TMatrix m(fM);
     1140#endif
    11361141    fM.ResizeTo(num, fM.GetNcols());
    11371142
     1143#if ROOT_VERSION_CODE < ROOT_VERSION(3,05,07)
    11381144    TVector tmp(fM.GetNcols());
    11391145    for (UInt_t irow=0; irow<num; irow++)
    11401146        TMatrixRow(fM, irow) = tmp = TMatrixRow(m, irow);
     1147#endif
    11411148}
    11421149
Note: See TracChangeset for help on using the changeset viewer.