Ignore:
Timestamp:
10/02/06 09:17:46 (19 years ago)
Author:
tbretz
Message:
*** empty log message ***
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mdata/MDataElement.cc

    r3572 r8001  
    5959    : fMatrixName(member), fNumCol(col), fMatrix(NULL)
    6060{
     61    if (fNumCol>=0)
     62        return;
     63
     64    const Int_t pos = fMatrixName.First('[');
     65    if (pos<=0)
     66        return;
     67
     68    fNumCol     = atoi(fMatrixName.Data()+pos+1);
     69    fMatrixName = fMatrixName(0, pos);
    6170}
    6271
Note: See TracChangeset for help on using the changeset viewer.