Ignore:
Timestamp:
02/16/16 10:14:23 (8 years ago)
Author:
mhnguyen
Message:

Implementing grid destination clone in case of two grid source

+) Clone attributes of grid destination as well as its transformation
+) Clean some redundant codes

Test
+) All tests pass

File:
1 edited

Legend:

Unmodified
Added
Removed
  • XIOS/trunk/src/node/domain.cpp

    r821 r823  
    19471947  } 
    19481948 
     1949  void CDomain::duplicateTransformation(CDomain* src) 
     1950  { 
     1951    if (src->hasTransformation()) 
     1952    { 
     1953      this->setTransformations(src->getAllTransformations()); 
     1954    } 
     1955  } 
     1956 
    19491957  /*! 
    19501958   * Go through the hierarchy to find the domain from which the transformations must be inherited 
Note: See TracChangeset for help on using the changeset viewer.