Changeset 19566 for trunk/www/dch/db_explorer.php
- Timestamp:
- 07/23/19 23:04:58 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/www/dch/db_explorer.php
r19502 r19566 82 82 $thfactor="(1-0.00124/1.21*(fThresholdMinSet-500)*(fThresholdMinSet>=500))"; 83 83 // ETh: 715 GeV 84 $crabflux=" 3.6";84 $crabflux="1.81"; 85 85 break; 86 86 case "ISDC": … … 88 88 $thfactor="(1.18-IF(ISNULL(fThresholdMinSet),fThresholdMedian,fThresholdMinSet)*0.00062)"; 89 89 // ETh: 764 GeV 90 $crabflux=" 3.3";90 $crabflux="1.89"; 91 91 break; 92 92 case "CutsLC": … … 94 94 $thfactor="(1.37-IF(ISNULL(fThresholdMinSet),fThresholdMedian,fThresholdMinSet)*0.00118)"; 95 95 // ETh: 543 GeV 96 $crabflux=" 5.7";96 $crabflux="3.14"; 97 97 break; 98 98 default: … … 407 407 $selecterr="EXCERR(SUM(fNumSigEvts), SUM(fNumBgEvts))/SUM(TIME_TO_SEC(TIMEDIFF(fRunStop,fRunStart))*fEffectiveOn)*3600*SUM(fNumExcEvts/".$zdfactor."/".$thfactor.")/SUM(fNumExcEvts)"; 408 408 $isnull="AND NOT ISNULL(fNumExcEvts) AND NOT ISNULL(fEffectiveOn) AND NOT ISNULL(fZenithDistanceMean) AND NOT (ISNULL(fThresholdMinSet) AND ISNULL(fThresholdMedian)) "; 409 $sqlhaving =" AND abs(e) < 1000 ";409 $sqlhaving.=" AND abs(e) < 1000 "; 410 410 $titley="Corrected excess rate"; 411 411 $unity="[1/h]"; … … 416 416 $selecterr="EXCERR(SUM(fNumSigEvts), SUM(fNumBgEvts))/SUM(TIME_TO_SEC(TIMEDIFF(fRunStop,fRunStart))*fEffectiveOn)*3600*SUM(fNumExcEvts/".$zdfactor."/".$thfactor."/fCU)/SUM(fNumExcEvts)"; 417 417 $isnull="AND NOT ISNULL(fNumExcEvts) AND NOT ISNULL(fEffectiveOn) AND NOT ISNULL(fZenithDistanceMean) AND NOT (ISNULL(fThresholdMinSet) AND ISNULL(fThresholdMedian)) "; 418 $sqlhaving =" AND abs(e) < 1000 ";418 $sqlhaving.=" AND abs(e) < 10 "; 419 419 $titley="Flux"; 420 420 $unity="[CU]"; … … 425 425 $selecterr=$crabflux." * EXCERR(SUM(fNumSigEvts), SUM(fNumBgEvts))/SUM(TIME_TO_SEC(TIMEDIFF(fRunStop,fRunStart))*fEffectiveOn)*3600*SUM(fNumExcEvts/".$zdfactor."/".$thfactor."/fCU)/SUM(fNumExcEvts)"; 426 426 $isnull="AND NOT ISNULL(fNumExcEvts) AND NOT ISNULL(fEffectiveOn) AND NOT ISNULL(fZenithDistanceMean) AND NOT (ISNULL(fThresholdMinSet) AND ISNULL(fThresholdMedian)) "; 427 $sqlhaving =" AND abs(e) < 1000 ";427 $sqlhaving.=" AND abs(e) < 1000 "; 428 428 $titley="Flux"; 429 429 $unity="[10^-11/cm2/s]";
Note:
See TracChangeset
for help on using the changeset viewer.