Changeset 7504 for trunk/MagicSoft
- Timestamp:
- 02/14/06 16:35:24 (19 years ago)
- Location:
- trunk/MagicSoft/Mars/datacenter/db
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/datacenter/db/magicdefs.php
r7484 r7504 183 183 "fEffOnTime/3600" => "EffOn<br>Time<br>[h]", 184 184 "fMuonRate" => "Muon<br>Rate<br>[Hz]", 185 "fInhomogeneity" => "Inhom", 185 186 "fDataRate" => "Img.<br>Rate<br>[Hz]", 186 187 "fMaxHumidity" => "Max<br>Hum<br>[%]", … … 275 276 $alias["fEffOnTime/3600"] => "1", 276 277 $alias["fMuonRate"] => "1", 278 $alias["fInhomogeneity"] => "1", 277 279 $alias["fDataRate"] => "1", 278 280 $alias["fMaxHumidity"] => "1", … … 411 413 // "fEffOnTime" => $fromtable . ".fEffOnTime", 412 414 "fMuonRate" => "Star.fMuonRate", 415 "fInhomogeneity" => "Star.fInhomogeneity", 413 416 "fDataRate" => "Star.fDataRate", 414 417 "fMaxHumidity" => "Star.fMaxHumidity", -
trunk/MagicSoft/Mars/datacenter/db/querystar.php
r7484 r7504 64 64 $_GET["fMuonRate"]=$first?"On":""; 65 65 66 if (empty($_GET["fInhomogeneity"])) 67 $_GET["fInhomogeneity"]=$first?"On":""; 68 66 69 if (empty($_GET["fDataRate"])) 67 70 $_GET["fDataRate"]=$first?"On":""; … … 82 85 CheckBox("fPSF", "PSF"); 83 86 CheckBox("fRatio", "Ratio"); 87 88 printf(" </tr><tr>\n"); 89 84 90 CheckBox("fMuonRate", "MuonRate"); 85 86 printf(" </tr><tr>\n");87 88 91 CheckBox("fMuonNumber", "MuonNumber"); 89 92 CheckBox("fEffOnTime", "EffOnTime"); 93 94 printf(" </tr><tr>\n"); 95 90 96 CheckBox("fMaxHumidity", "MaxHumidity"); 91 97 CheckBox("fDataRate", "CleanedEvtRate"); 98 CheckBox("fInhomogeneity", "Inhomogeneity"); 92 99 93 100 printf(" </tr>\n"); -
trunk/MagicSoft/Mars/datacenter/db/sequinfo.php
r7484 r7504 367 367 $_GET["fMuonRate"]="Off"; 368 368 369 if (empty($_GET["fInhomogeneity"])) 370 $_GET["fInhomogeneity"]="Off"; 371 369 372 if (empty($_GET["fDataRate"])) 370 373 $_GET["fDataRate"]="Off"; … … 451 454 CheckBox("fPSF", "PSF"); 452 455 CheckBox("fRatio", "Ratio"); 456 457 printf(" </tr><tr>\n"); 458 453 459 CheckBox("fMuonRate", "MuonRate"); 454 455 printf(" </tr><tr>\n");456 457 460 CheckBox("fMuonNumber", "MuonNumber"); 458 461 CheckBox("fEffOnTime", "EffOnTime"); 462 463 printf(" </tr><tr>\n"); 464 459 465 CheckBox("fMaxHumidity", "MaxHumidity"); 460 466 CheckBox("fDataRate", "CleanedEvtRate"); 467 CheckBox("fInhomogeneity", "Inhomogeneity"); 461 468 462 469 printf(" </tr>\n");
Note:
See TracChangeset
for help on using the changeset viewer.