diff options
author | tlatorre <tlatorre@uchicago.edu> | 2019-06-23 17:11:21 -0500 |
---|---|---|
committer | tlatorre <tlatorre@uchicago.edu> | 2019-06-23 17:11:21 -0500 |
commit | df9cb671a0828bd2182aaabf4be9203f0592b4f9 (patch) | |
tree | 6c1aef7494e2c832ae5981c308d26e71626219f0 /src/dc.h | |
parent | f3336bbeed4258d4b6e009d361329d4518aadc86 (diff) | |
download | sddm-df9cb671a0828bd2182aaabf4be9203f0592b4f9.tar.gz sddm-df9cb671a0828bd2182aaabf4be9203f0592b4f9.tar.bz2 sddm-df9cb671a0828bd2182aaabf4be9203f0592b4f9.zip |
update how neck events are flagged
This commit updates the is_neck_event() function to include the requirement
that 50% of the normal PMTs in the event must have z <= -425.0.
Diffstat (limited to 'src/dc.h')
-rw-r--r-- | src/dc.h | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -33,6 +33,12 @@ #define DC_OWL_TRIGGER 0x100 #define DC_FTS 0x200 +/* Height of PMTs which are considered to be at the "bottom" of the detector + * for the neck cut. Comes from the SNOOP definition of a neck event in SNO. */ +#define NECK_BOTTOM_HEIGHT -425.0 +/* Fraction of normal PMT hits which must be below NECK_BOTTOM_HEIGHT. */ +#define NECK_BOTTOM_FRACTION 0.5 + /* Delta-t threshold for PMT pairs in the FTS cut (ns). */ #define FTS_DT_THRESH 25.0 /* Distance threshold for PMT pairs in the FTS cut (cm). */ |