Skip to content
Snippets Groups Projects
Commit fff8c99a authored by Uwe Schulzweida's avatar Uwe Schulzweida
Browse files

cleanup

parent 0c82348d
No related branches found
No related tags found
1 merge request!331M214003/develop
......@@ -27,26 +27,26 @@ RemapGrid
// clang-format on
{
std::string name;
RemapGridType type = RemapGridType::Undefined;
int gridID = -1;
int tmpgridID = -1;
int rank = 0; // rank of the grid
size_t size = 0; // total points on the grid
size_t numCorners = 0; // number of corners for each grid cell
RemapGridType type{ RemapGridType::Undefined };
int gridID{ -1 };
int tmpgridID{ -1 };
int rank{ 0 }; // rank of the grid
size_t size{ 0 }; // total points on the grid
size_t numCorners{ 0 }; // number of corners for each grid cell
int nside = 0;
HpOrder order = HpOrder::Undef;
int nside{ 0 };
HpOrder order{ HpOrder::Undef };
HpParams hpParams;
bool needCellCorners = false;
bool useCellCorners = false; // use corners for bounding boxes
bool needCellCorners{ false };
bool useCellCorners{ false }; // use corners for bounding boxes
bool doExtrapolate = false;
bool isCyclic = false;
bool doExtrapolate{ false };
bool isCyclic{ false };
size_t dims[2] = { 0, 0 }; // size of grid dimension
int nvgp = 0; // size of vgpm
int nvgp{ 0 }; // size of vgpm
Varray<int> vgpm; // flag which cells are valid
Vmask mask; // flag which cells participate
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment