diff options
author | Thomas White <taw@bitwiz.org.uk> | 2010-10-21 11:53:32 -0700 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2012-02-22 15:27:03 +0100 |
commit | f7d612eb193e718490276b05b55af72cc3e70aac (patch) | |
tree | d870de57986f3e80a3350425bc58e72225c364ff /src/image.h | |
parent | 66d003e06152b1da64f28658818771ffa5999286 (diff) |
s/hit/cpeak/
Avoid confusion over the use of the word 'hit'.
Diffstat (limited to 'src/image.h')
-rw-r--r-- | src/image.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/image.h b/src/image.h index 71bf0d3a..4f5052bb 100644 --- a/src/image.h +++ b/src/image.h @@ -58,7 +58,8 @@ struct imagefeature { typedef struct _imagefeaturelist ImageFeatureList; -struct reflhit { +/* This structure represents a predicted peak in an image */ +struct cpeak { signed int h; signed int k; signed int l; @@ -79,8 +80,8 @@ struct image { int ncells; struct detector *det; char *filename; - struct reflhit *hits; - int n_hits; + struct cpeak *cpeaks; + int n_cpeaks; int id; /* ID number of the thread * handling this image */ |