diff options
author | Thomas White <taw@physics.org> | 2010-02-03 12:24:52 +0100 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2010-02-03 12:24:52 +0100 |
commit | bb8cd0371f2cba96126112cbb720c2149c283c78 (patch) | |
tree | 9c3a7727e1f736b512618eee150688f513a08248 /src/sfac.c | |
parent | 7df59f9bc7acedb5f8aa01ad12f2f22d271a0f58 (diff) |
Remove many debug messages
Diffstat (limited to 'src/sfac.c')
-rw-r--r-- | src/sfac.c | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -303,8 +303,8 @@ static void centre_molecule(struct molecule *mol) } - STATUS("Molecule was shifted by %5.3f, %5.3f, %5.3f nm\n", - mol->xc*1e9, mol->yc*1e9, mol->zc*1e9); + //STATUS("Molecule was shifted by %5.3f, %5.3f, %5.3f nm\n", + // mol->xc*1e9, mol->yc*1e9, mol->zc*1e9); } @@ -420,10 +420,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); 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); } return mol; |