aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2010-03-26 10:42:36 +0100
committerThomas White <taw@physics.org>2010-03-26 10:42:36 +0100
commita6f27929be30c6713a8e929bf6c15f3566453a2a (patch)
tree55cea44fa2e4ccfdf69c491b22bc587dcbed87a7
parent24f39356872ec7e504ca8c7800066a61c030e5be (diff)
Uncomment species list
-rw-r--r--src/sfac.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/sfac.c b/src/sfac.c
index 28fa130b..dd722cc8 100644
--- a/src/sfac.c
+++ b/src/sfac.c
@@ -462,10 +462,10 @@ struct molecule *load_molecule()
centre_molecule(mol);
- //STATUS("There are %i species\n", mol->n_species);
+ STATUS("There are %i species\n", mol->n_species); fflush(stderr);
for ( i=0; i<mol->n_species; i++ ) {
- // STATUS("%3s : %6i\n", mol->species[i]->species,
- // mol->species[i]->n_atoms);
+ STATUS("%3s : %6i\n", mol->species[i]->species,
+ mol->species[i]->n_atoms);
}
if ( mol->cell == NULL ) {