Changeset 1621


Ignore:
Timestamp:
12/10/18 17:49:35 (5 years ago)
Author:
oabramkina
Message:

r1621 and r1620:
Bugfix for domain zoom: local mask was not calculated for domain destination causing an error in certain cases (muliplte spacial filters with activated non-distributed transformation).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • XIOS/trunk/src/transformation/domain_algorithm_zoom.cpp

    r1609 r1621  
    108108  domainDest_->data_ni.setValue(niDest); 
    109109  domainDest_->data_nj.setValue(njDest); 
    110   domainDest_->data_ibegin.setValue(0);  // local position 
    111   domainDest_->data_jbegin.setValue(0);  // local position 
    112   domainDest_->data_i_index.resize(niDest*njDest); // local position 
    113   domainDest_->data_j_index.resize(niDest*njDest); // local position 
     110  domainDest_->data_ibegin.setValue(0); 
     111  domainDest_->data_jbegin.setValue(0); 
     112  domainDest_->data_i_index.resize(niDest*njDest); 
     113  domainDest_->data_j_index.resize(niDest*njDest); 
    114114 
    115115  domainDest_->domainMask.resize(niDest*njDest); 
     
    267267    } 
    268268  } 
    269  
     269  domainDest_->computeLocalMask(); 
    270270} 
    271271 
Note: See TracChangeset for help on using the changeset viewer.