Ignore:
Timestamp:
01/23/05 19:24:00 (19 years ago)
Author:
kil064
Message:

add insitu version of function veliocityAlignment

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/SDMathWrapper.cc

    r262 r268  
    228228}
    229229
     230void SDMathWrapper::velocityAlignmentInSitu (SDMemTableWrapper& in)
     231{
     232  SDMemTable* pIn = in.getPtr();
     233  SDMath sdm;
     234  SDMemTable* pOut = sdm.velocityAlignment(*pIn);
     235  *pIn = *pOut;
     236  delete pOut;
     237}
     238
     239
    230240SDMemTableWrapper SDMathWrapper::velocityAlignment (const SDMemTableWrapper& in)
    231241{
Note: See TracChangeset for help on using the changeset viewer.