Ignore:
Timestamp:
06/22/15 13:36:12 (9 years ago)
Author:
mhnguyen
Message:

Implementing the first prototype of filter

+) Create new class filter
+) Implement class for specific algorithm
+) Implement inversing algorithm

Test
+) On Curie
+) Grid with one axis: passed

File:
1 edited

Legend:

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

    r598 r619  
    894894       { 
    895895         const std::pair<StdString, StdString>& prDomAxisId = enabledFields[j]->getRefDomainAxisIds(); 
    896          domainIds.insert(prDomAxisId.first); 
    897          axisIds.insert(prDomAxisId.second); 
     896         if ("" != prDomAxisId.first) domainIds.insert(prDomAxisId.first); 
     897         if ("" != prDomAxisId.second) axisIds.insert(prDomAxisId.second); 
    898898       } 
    899899     } 
Note: See TracChangeset for help on using the changeset viewer.