Ignore:
Timestamp:
12/14/20 09:59:23 (4 years ago)
Author:
ymipsl
Message:

Update to new transformation.
Source filter working again + reading
YM

File:
1 edited

Legend:

Unmodified
Added
Removed
  • XIOS/dev/dev_ym/XIOS_COUPLING/src/transformation/scalar_algorithm/scalar_algorithm_transformation.cpp

    r1985 r1988  
    1818namespace xios { 
    1919 
    20 CScalarAlgorithmTransformation::CScalarAlgorithmTransformation(CScalar* scalarDestination, CScalar* scalarSource) 
    21  : CGenericAlgorithmTransformation(), 
     20CScalarAlgorithmTransformation::CScalarAlgorithmTransformation(bool isSource, CScalar* scalarDestination, CScalar* scalarSource) 
     21 : CGenericAlgorithmTransformation(isSource), 
    2222   scalarDest_(scalarDestination), 
    2323   scalarSrc_(scalarSource), axisSrc_(0), domainSrc_(0) 
     
    2525} 
    2626 
    27 CScalarAlgorithmTransformation::CScalarAlgorithmTransformation(CScalar* scalarDestination, CAxis* axisSource) 
    28  : CGenericAlgorithmTransformation(), 
     27CScalarAlgorithmTransformation::CScalarAlgorithmTransformation(bool isSource, CScalar* scalarDestination, CAxis* axisSource) 
     28 : CGenericAlgorithmTransformation(isSource), 
    2929   scalarDest_(scalarDestination), 
    3030   scalarSrc_(0), axisSrc_(axisSource), domainSrc_(0) 
     
    3232} 
    3333 
    34 CScalarAlgorithmTransformation::CScalarAlgorithmTransformation(CScalar* scalarDestination, CDomain* domainSource) 
    35  : CGenericAlgorithmTransformation(), 
     34CScalarAlgorithmTransformation::CScalarAlgorithmTransformation(bool isSource, CScalar* scalarDestination, CDomain* domainSource) 
     35 : CGenericAlgorithmTransformation(isSource), 
    3636   scalarDest_(scalarDestination), 
    3737   scalarSrc_(0), axisSrc_(0), domainSrc_(domainSource) 
Note: See TracChangeset for help on using the changeset viewer.