aboutsummaryrefslogtreecommitdiff
path: root/src/AmrUcdGridHierarchy.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/AmrUcdGridHierarchy.cc')
-rw-r--r--src/AmrUcdGridHierarchy.cc10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/AmrUcdGridHierarchy.cc b/src/AmrUcdGridHierarchy.cc
index adaf8e5..479e9ef 100644
--- a/src/AmrUcdGridHierarchy.cc
+++ b/src/AmrUcdGridHierarchy.cc
@@ -197,7 +197,7 @@ void AmrUcdGridHierarchy::buildNodeHierarchy(){
}
void AmrUcdGridHierarchy::print(){
- //************Print Some Results***********************
+ // ************Print Some Results***********************
for(int i=0;i<levelinfo.getSize();i++){
AmrUcdGrid *grid;
printf("Level %u\n",i);
@@ -254,7 +254,7 @@ void AmrUcdGridHierarchy::buildUCD(FlexArray<AmrNode*> &nodes,FlexArray<int> &ce
// also set index for all parents recursively. (have recursive setindex in
// as a static member function of each node)
int ctr,i;
- //**** Init all node indexes to -1
+ // **** Init all node indexes to -1
printf("AmrUcdGridHierarchy::buildUCD(): Initialize UCD\n");
for(i=0;i<levelinfo.getSize();i++){
AmrUcdGrid *grid;
@@ -265,7 +265,7 @@ void AmrUcdGridHierarchy::buildUCD(FlexArray<AmrNode*> &nodes,FlexArray<int> &ce
}
}
// print();
- //**** Top-down assignment of indices for each node without child
+ // **** Top-down assignment of indices for each node without child
// If a node has a child, then the child will be superceding it
// for indices
printf("\ttop-down assign indices\n");
@@ -285,7 +285,7 @@ void AmrUcdGridHierarchy::buildUCD(FlexArray<AmrNode*> &nodes,FlexArray<int> &ce
}
printf("Number of nodes in all = %u\n",nodes.getSize());
// OK, nows the time in schprockets when we dance...
- //**** Top-down building of Hexahedral cells
+ // **** Top-down building of Hexahedral cells
//printf("now build hexahedral cells\n");
for(i=levelinfo.getSize()-1;i>=0;i--){
printf("\tL%u\n",i);
@@ -313,7 +313,7 @@ void AmrUcdGridHierarchy::buildUCD(FlexArray<AmrNode*> &nodes,FlexArray<int> &ce
nodeindices[idx]+=ystep;
nodeindices[idx+3]+=ystep;
}
- //***** Build the Cell list
+ // ***** Build the Cell list
for(z=0;z<(dims[2]-1);z++){
//printf("\t\tZ%u\n",z);
for(y=0;y<(dims[1]-1);y++){