aboutsummaryrefslogtreecommitdiff
path: root/src/pmt.h
diff options
context:
space:
mode:
authortlatorre <tlatorre@uchicago.edu>2019-06-10 11:50:17 -0500
committertlatorre <tlatorre@uchicago.edu>2019-06-10 11:50:17 -0500
commit625dfc21d9588ec589bd28c009f56ce1d4792984 (patch)
tree28f72ae15b7cd796da6dc74f07356a84f4c30745 /src/pmt.h
parent3398cdfd9f096e0f20b09746caeb48e424d85eb3 (diff)
downloadsddm-625dfc21d9588ec589bd28c009f56ce1d4792984.tar.gz
sddm-625dfc21d9588ec589bd28c009f56ce1d4792984.tar.bz2
sddm-625dfc21d9588ec589bd28c009f56ce1d4792984.zip
update get_event() to include all PMT types
This commit updates get_event() to include OWL, LG, FECD, BUTT, and NECK tubes.
Diffstat (limited to 'src/pmt.h')
-rw-r--r--src/pmt.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/pmt.h b/src/pmt.h
index 6f5cb10..3bccedb 100644
--- a/src/pmt.h
+++ b/src/pmt.h
@@ -32,7 +32,7 @@
#define PMT_LG 3
#define PMT_BUTT 4
#define PMT_NECK 5
-#define PMT_CALIBRATION 5
+#define PMT_CALIBRATION 6
#define PMT_SPARE 10
#define PMT_INVALID 11
@@ -47,6 +47,7 @@ typedef struct pmt {
extern pmt pmts[MAX_PMTS];
+void get_pmt_type_string(int pmt_type, char *s);
int load_pmt_info();
#endif