diff options
Diffstat (limited to 'src/detector.h')
-rw-r--r-- | src/detector.h | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/src/detector.h b/src/detector.h index 92e10458..128332fd 100644 --- a/src/detector.h +++ b/src/detector.h @@ -22,15 +22,16 @@ struct image; struct panel { - int min_x; /* Smallest x value considered to be in this panel */ - int max_x; /* Largest x value considered to be in this panel */ - int min_y; /* ... and so on */ + int min_x; /* Smallest x value considered to be in this panel */ + int max_x; /* Largest x value considered to be in this panel */ + int min_y; /* ... and so on */ int max_y; - float cx; /* Location of centre */ + float cx; /* Location of centre */ float cy; - float clen; /* Camera length */ - float res; /* Resolution */ - char badrow; /* 'x' or 'y' */ + float clen; /* Camera length */ + float res; /* Resolution */ + char badrow; /* 'x' or 'y' */ + int no_index; /* Don't index peaks in this panel if non-zero */ }; struct detector |