Changeset 7504 for trunk/MagicSoft


Ignore:
Timestamp:
02/14/06 16:35:24 (19 years ago)
Author:
hoehne
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars/datacenter/db
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/datacenter/db/magicdefs.php

    r7484 r7504  
    183183     "fEffOnTime/3600"                  => "EffOn<br>Time<br>[h]",
    184184     "fMuonRate"                        => "Muon<br>Rate<br>[Hz]",
     185     "fInhomogeneity"                   => "Inhom",
    185186     "fDataRate"                        => "Img.<br>Rate<br>[Hz]",
    186187     "fMaxHumidity"                     => "Max<br>Hum<br>[%]",
     
    275276     $alias["fEffOnTime/3600"]           => "1",
    276277     $alias["fMuonRate"]                 => "1",
     278     $alias["fInhomogeneity"]            => "1",
    277279     $alias["fDataRate"]                 => "1",
    278280     $alias["fMaxHumidity"]              => "1",
     
    411413//         "fEffOnTime"                        => $fromtable . ".fEffOnTime",
    412414         "fMuonRate"                         => "Star.fMuonRate",
     415         "fInhomogeneity"                    => "Star.fInhomogeneity",
    413416         "fDataRate"                         => "Star.fDataRate",
    414417         "fMaxHumidity"                      => "Star.fMaxHumidity",
  • trunk/MagicSoft/Mars/datacenter/db/querystar.php

    r7484 r7504  
    6464            $_GET["fMuonRate"]=$first?"On":"";
    6565
     66        if (empty($_GET["fInhomogeneity"]))
     67            $_GET["fInhomogeneity"]=$first?"On":"";
     68
    6669        if (empty($_GET["fDataRate"]))
    6770            $_GET["fDataRate"]=$first?"On":"";
     
    8285        CheckBox("fPSF",                "PSF");
    8386        CheckBox("fRatio",              "Ratio");
     87
     88        printf("  </tr><tr>\n");
     89
    8490        CheckBox("fMuonRate",           "MuonRate");
    85 
    86         printf("  </tr><tr>\n");
    87 
    8891        CheckBox("fMuonNumber",         "MuonNumber");
    8992        CheckBox("fEffOnTime",          "EffOnTime");
     93
     94        printf("  </tr><tr>\n");
     95
    9096        CheckBox("fMaxHumidity",        "MaxHumidity");
    9197        CheckBox("fDataRate",           "CleanedEvtRate");
     98        CheckBox("fInhomogeneity",      "Inhomogeneity");
    9299
    93100        printf("  </tr>\n");
  • trunk/MagicSoft/Mars/datacenter/db/sequinfo.php

    r7484 r7504  
    367367            $_GET["fMuonRate"]="Off";
    368368
     369        if (empty($_GET["fInhomogeneity"]))
     370            $_GET["fInhomogeneity"]="Off";
     371
    369372        if (empty($_GET["fDataRate"]))
    370373            $_GET["fDataRate"]="Off";
     
    451454        CheckBox("fPSF",                "PSF");
    452455        CheckBox("fRatio",              "Ratio");
     456
     457        printf("  </tr><tr>\n");
     458
    453459        CheckBox("fMuonRate",           "MuonRate");
    454 
    455         printf("  </tr><tr>\n");
    456 
    457460        CheckBox("fMuonNumber",         "MuonNumber");
    458461        CheckBox("fEffOnTime",          "EffOnTime");
     462
     463        printf("  </tr><tr>\n");
     464
    459465        CheckBox("fMaxHumidity",        "MaxHumidity");
    460466        CheckBox("fDataRate",           "CleanedEvtRate");
     467        CheckBox("fInhomogeneity",      "Inhomogeneity");
    461468
    462469        printf("  </tr>\n");
Note: See TracChangeset for help on using the changeset viewer.