Changeset 1343
- Timestamp:
- 11/22/17 13:19:51 (7 years ago)
- Location:
- XIOS
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
XIOS/dev/XIOS_DEV_CMIP6/src/node/grid.hpp
r1330 r1343 376 376 << "Received data size = " << field.numElements() << " ] " 377 377 << "The data array does not have the right size! " 378 << "Grid = " << this-> GetName())378 << "Grid = " << this->getId()) 379 379 //#endif 380 380 this->storeField_arr(field.dataFirst(), stored); … … 390 390 << "Output data size = " << field.numElements() << " ] " 391 391 << "The ouput array does not have the right size! " 392 << "Grid = " << this-> GetName())392 << "Grid = " << this->getId()) 393 393 //#endif 394 394 this->restoreField_arr(stored, field.dataFirst()); … … 446 446 << "Local size of dimension " << i << " is " << eachDimSize[i] << "." << std::endl 447 447 << "Mask size for dimension " << i << " is " << gridMask.extent(i) << "." << std::endl 448 << "Grid = " << this-> GetName())448 << "Grid = " << this->getId()) 449 449 } 450 450 } … … 512 512 // << "Mask dimension is " << N << "." << std::endl 513 513 // << "Input dimension is " << eachDimSize.size() << "." << std::endl 514 // << "Grid = " << this-> GetName())514 // << "Grid = " << this->getId()) 515 515 } 516 516 CArrayBoolTraits<CArray<bool,N> >::resizeArray(gridMask,eachDimSize); -
XIOS/trunk/src/node/grid.hpp
r1078 r1343 305 305 << "Received data size = " << field.numElements() << " ] " 306 306 << "The data array does not have the right size! " 307 << "Grid = " << this-> GetName())307 << "Grid = " << this->getId()) 308 308 this->storeField_arr(field.dataFirst(), stored); 309 309 } … … 317 317 << "Output data size = " << field.numElements() << " ] " 318 318 << "The ouput array does not have the right size! " 319 << "Grid = " << this-> GetName())319 << "Grid = " << this->getId()) 320 320 this->restoreField_arr(stored, field.dataFirst()); 321 321 } … … 360 360 << "Local size of dimension " << i << " is " << eachDimSize[i] << "." << std::endl 361 361 << "Mask size for dimension " << i << " is " << gridMask.extent(i) << "." << std::endl 362 << "Grid = " << this-> GetName())362 << "Grid = " << this->getId()) 363 363 } 364 364 }
Note: See TracChangeset
for help on using the changeset viewer.