diff options
author | tlatorre <tlatorre@uchicago.edu> | 2020-06-22 08:41:48 -0500 |
---|---|---|
committer | tlatorre <tlatorre@uchicago.edu> | 2020-06-22 08:41:48 -0500 |
commit | 251a4eb028493c0c56ba6ae1b9a0a6e4a40e39d3 (patch) | |
tree | 809736dc0a793acee93ba1b7d9f702a2c1aa4b5e | |
parent | f39436190a4066bd6d6ae4a0343e97381808b936 (diff) | |
download | sddm-251a4eb028493c0c56ba6ae1b9a0a6e4a40e39d3.tar.gz sddm-251a4eb028493c0c56ba6ae1b9a0a6e4a40e39d3.tar.bz2 sddm-251a4eb028493c0c56ba6ae1b9a0a6e4a40e39d3.zip |
update neck cut
This commit updates the neck cut to increase the number of neck PMT hits even
if the neck PMT hit time isn't calibrated correctly. This is because I was
looking at all muon events which didn't have an NHIT trigger fire and I noticed
the following events:
Run GTID
---- ----
10036 1462054
10040 2270713
10133 1096180
They all appear to be neck events, but the first one in particular has 4 neck
PMTs that got hit. When looking into it I realized that all 4 hits had ept
times of -9999.
several events:
-rw-r--r-- | src/dc.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -580,11 +580,11 @@ int is_neck_event(event *ev) switch (pmts[i].pmt_type) { case PMT_NECK: + n += 1; + /* Require good calibrations. */ if (ev->pmt_hits[i].ept <= -100) break; - n += 1; - /* FIXME: The SNOMAN companion says "Early if defined by the neck * tube having an ECA time 70ns or more before the average ECA time * of the PSUP PMTS with z les than 0." When does this change take |