Changeset 2450
- Timestamp:
- 01/03/23 11:24:00 (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
XIOS2/trunk/src/io/nc4_data_input.cpp
r2449 r2450 144 144 // Verify the compatibility of dimension of declared grid and real grid in file 145 145 int realGridDim = 1; 146 bool isUnstructuredGrid ;146 bool isUnstructuredGrid(true); 147 147 bool domainNotExplicitelyDefined(false); 148 148 for (int idom=0;idom<domainP.size();idom++) 149 149 { 150 if ( (!domainP[idom]->type.isEmpty())&& ( !domainP[idom]->type.getValue()!=CDomain::type_attr::unstructured))150 if ( (!domainP[idom]->type.isEmpty())&& (domainP[idom]->type.getValue()!=CDomain::type_attr::unstructured)) 151 151 { 152 152 isUnstructuredGrid = false;
Note: See TracChangeset
for help on using the changeset viewer.