diff options
author | Thomas White <taw@physics.org> | 2010-03-26 15:07:18 +0100 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2010-03-26 15:07:18 +0100 |
commit | 6a9811f69425e47b061f4987970681dbbf27a2bd (patch) | |
tree | 0a84dd3e7f13b5ad60c6a1dd3dce453f9140bfc6 /src/get_hkl.c | |
parent | a6f27929be30c6713a8e929bf6c15f3566453a2a (diff) |
Don't try to render PDBs, part I
Diffstat (limited to 'src/get_hkl.c')
-rw-r--r-- | src/get_hkl.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/get_hkl.c b/src/get_hkl.c index 0240826c..29ff0786 100644 --- a/src/get_hkl.c +++ b/src/get_hkl.c @@ -110,6 +110,8 @@ int main(int argc, char *argv[]) char *output = NULL; unsigned int *counts; signed int h, k, l; + FILE *fh; + char *rval; /* Long options */ const struct option longopts[] = { @@ -154,7 +156,7 @@ int main(int argc, char *argv[]) mol = load_molecule(); get_reflections_cached(mol, eV_to_J(1790.0)); - ideal_ref = ideal_intensities(mol->reflections); + counts = new_list_count(); if ( template != NULL ) { |