| 30 | === Selection by zenith angle === |
| 31 | |
| 32 | Ideally, if you select events from a certain zenith angle range (e.g. 10°-50°), you don't want events outside of that range. So, ideally the lower bound is cut on `fZenithAngleMin` and the upper bound on `fZenithAngleMax` like |
| 33 | |
| 34 | {{{#!sql |
| 35 | fZenithAngleMin>10 AND fZenithAngleMax<50 |
| 36 | }}} |
| 37 | |
| 38 | === Threshold setting === |
| 39 | |
| 40 | To select data by threshold, the ideal values is usually `fThresholdMinSet`. It reflects the value obtained as minimum threshold during a run from the currents at its beginning. While some trigger patches could have a significantly higher threshold during a run (which affects the mean value over all patches) the MinSet value reflects usually the majority of the patch thresholds and should be similar (or in most cases identical) to the average (over all events) median (over the camera). |
| 41 | |
| 42 | |