101 | | +----------+-------------+-------+-------+ |
102 | | | COUNT(*) | EffOnTime | ZdMin | ZdMax | |
103 | | +----------+-------------+-------+-------+ |
104 | | | 435 | 32.53992354 | 6.36 | 67.89 | |
105 | | +----------+-------------+-------+-------+ |
| 103 | +----------+-------------+-------+-------+---------+---------+ |
| 104 | | COUNT(*) | EffOnTime | MinZd | MaxZd | MinQ | MaxQ | |
| 105 | +----------+-------------+-------+-------+---------+---------+ |
| 106 | | 435 | 32.53992354 | 6.36 | 67.89 | 0.01477 | 1.10584 | |
| 107 | +----------+-------------+-------+-------+---------+---------+ |
109 | | So we have 435 data runs from Crab with a total effective observation time of 32.5 hrs in a zenith angle range between 6° and 68°. |
| 111 | So we have 435 data runs from Crab with a total effective observation time of 32.5 hours in a zenith angle range between 6° and 68° and a bad weather factor between 0.01 (really bad) to 1.1 (extremely good). |
| 112 | |
| 113 | Taking only good data by adding {{{AND fR750Cor/fR750Ref>0.9}}} to the WHERE-clause gives us |
| 114 | {{{ |
| 115 | +----------+-------------+-------+-------+---------+---------+ |
| 116 | | COUNT(*) | EffOnTime | ZdMin | ZdMax | MinQ | MaxQ | |
| 117 | +----------+-------------+-------+-------+---------+---------+ |
| 118 | | 328 | 24.58955887 | 6.36 | 67.86 | 0.90084 | 1.10584 | |
| 119 | +----------+-------------+-------+-------+---------+---------+ |
| 120 | 1 row in set (0.00 sec) |
| 121 | }}} |
| 122 | |
| 123 | But we also want to restrict ourselves to "good" zenith angles (zenith angles at which there is no significnat efficiency loss). So we add {{{AND fZenithDistanceMax<35}} to the WHERE-clause which yields |
| 124 | {{{ |
| 125 | +----------+-------------+-------+-------+---------+---------+ |
| 126 | | COUNT(*) | EffOnTime | ZdMin | ZdMax | MinQ | MaxQ | |
| 127 | +----------+-------------+-------+-------+---------+---------+ |
| 128 | | 244 | 19.06608557 | 6.36 | 34.90 | 0.90084 | 1.10584 | |
| 129 | +----------+-------------+-------+-------+---------+---------+ |
| 130 | 1 row in set (0.00 sec) |
| 131 | }}} |