1 | <html>
|
---|
2 | <head>
|
---|
3 | <meta name="Author" content="Daniela Dorner" />
|
---|
4 | <meta http-equiv="content-type" content="text/html; charset=utf-8" />
|
---|
5 | <title>FACT Project</title>
|
---|
6 | <link rel="StyleSheet" type="text/css" href="../style.css" />
|
---|
7 | </head>
|
---|
8 | <?php
|
---|
9 |
|
---|
10 | include ("dates.php");
|
---|
11 |
|
---|
12 | echo "<body>\n";
|
---|
13 | echo "<form name='formular' action='quality.php' METHOD='GET'>\n";
|
---|
14 | echo "quality plots for ";
|
---|
15 |
|
---|
16 | $date=GetDates($_GET["date"], "quality");
|
---|
17 | $date2=date("Ymd", strtotime($date));
|
---|
18 | $path="../quality/".date("Y/m/d", strtotime($date));
|
---|
19 |
|
---|
20 | echo "</form>\n";
|
---|
21 |
|
---|
22 | if (is_dir($path))
|
---|
23 | {
|
---|
24 | //printf("<a href='%s'>more files</a>\n",$path);
|
---|
25 | echo "<table>\n";
|
---|
26 | echo "<tr>\n";
|
---|
27 | printf("<td><img src='%s/%s.png' alt='quality'></td>\n", $path, $date2);
|
---|
28 | echo "</tr>\n";
|
---|
29 | // echo "<tr>\n";
|
---|
30 | // printf("<td><img src='%s/%s-quality.png' alt='quality3'></td>\n", $path, $date2);
|
---|
31 | // echo "</tr>\n";
|
---|
32 | echo "<tr>\n";
|
---|
33 | echo "</table>\n";
|
---|
34 | }
|
---|
35 | else
|
---|
36 | echo "No files available for ".$date.".\n";
|
---|
37 |
|
---|
38 | echo "<br>\n";
|
---|
39 | echo "<br>\n";
|
---|
40 | echo "<br>\n";
|
---|
41 | //echo "Some information on the plots:<br>\n";
|
---|
42 | echo "<u>From the top:</u> <br>\n";
|
---|
43 | echo "THRESHOLD: <br>\n ";
|
---|
44 | echo " threshold (RATE_CONTROL_THRESHOLD.fits threshold)<br>\n";
|
---|
45 | echo "CURRENT: <br>\n";
|
---|
46 | echo " blue: predicted currents <br>\n";
|
---|
47 | echo " black: measured (FEEDBACK_CALIBRATED_CURRENTS.fits Imed)<br>\n";
|
---|
48 | echo " gray: patch with highest current (FEEDBACK_CALIBRATED_CURRENTS.fits I[highest current])<br>\n";
|
---|
49 | echo " dark gray: patch with 4th highest current (FEEDBACK_CALIBRATED_CURRENTS.fits I[4th highest current])<br>\n";
|
---|
50 | echo " very dark gray: width of current distribution in camera (Imed+Idev)<br>\n";
|
---|
51 | echo "TRIGGER RATE: <br>\n ";
|
---|
52 | echo " black: trigger rate (FTM_CONTROL_TRIGGER_RATES.fits TriggerRate)<br>\n";
|
---|
53 | echo " red (one point per run):cleaning rate (AnalysisResultsRunLP.fNumEvtsAfterCleaning/AnalysisResultsRunLP.fOnTimeAfterCuts)<br>\n";
|
---|
54 | echo " blue (one point per run): rate after quality cuts (AnalysisResultsRunLP.fNumEvtsAfterQualCuts/AnalysisResultsRunLP.fOnTimeAfterCuts)<br>\n";
|
---|
55 | echo "RELATIVE ONTIME: <br>\n ";
|
---|
56 | echo " relative ontime (FTM_CONTROL_TRIGGER_RATES.fits OnTime/ElapsedTime)<br>\n";
|
---|
57 | echo "ELEVATION: <br>\n ";
|
---|
58 | echo " elevation (DRIVE_CONTROL_POINTING_POSITION.fits 90-Zd)<br>\n";
|
---|
59 | echo "TEMPERATURE: <br>\n ";
|
---|
60 | echo " black: sensor temperature (FSC_CONTROL_TEMPERATURE.fits T_sens)<br>\n";
|
---|
61 | echo " blue: outside temperature (MAGIC_WEATHER_DATA.fits T)<br>\n";
|
---|
62 | echo " red: container temperature (TEMPERATURE_DATA.fits T)<br>\n";
|
---|
63 | echo " green: minimum, average and maximum fad temperature (FAD_CONTROL_TEMPERATURE.fits Data1/temp)<br>\n";
|
---|
64 | echo "<br>\n";
|
---|
65 |
|
---|
66 | echo "HUMIDITY: <br>\n ";
|
---|
67 | echo " green: PFmini rel. hum sensor (most trusted sensor) <br>\n";
|
---|
68 | echo " azure: 4 rel. hum. sensors of the FSC board. <br>\n";
|
---|
69 | echo " orange line: if humidity crosses this line, please note it in the logbook. <br>\n";
|
---|
70 | echo " red line: if humidity crosses this line, please write a mail about it to fact-online. <br>\n";
|
---|
71 | echo "These limits are not carved in stone. If we find, the humidity never crosses the 37% limit, we might lower the red line substantially. <br>\n";
|
---|
72 | echo "<br>\n";
|
---|
73 |
|
---|
74 | echo "SQM: <br>\n ";
|
---|
75 | echo " black: magnitudes of the Unihedron SQM-LE, looking
|
---|
76 | close to the FoV of the telescope <br>\n";
|
---|
77 | echo "Magnitudes can be converted to photons per (s sr m^2) as: <br>\n";
|
---|
78 | echo "photon flux = 4.4e20 * 10^(-0.4*mag) <br>\n";
|
---|
79 | echo "<br>\n";
|
---|
80 |
|
---|
81 | echo "</body>\n";
|
---|
82 | echo "</html>\n";
|
---|
83 | ?>
|
---|