Changeset 8323 for trunk


Ignore:
Timestamp:
02/15/07 14:31:45 (18 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r8318 r8323  
    1919                                                 -*-*- END OF LINE -*-*-
    2020
     21 2007/02/15 Thomas Bretz
     22
     23   * macros/tutorials/mirrordelay.C:
     24     - added a macro plotting the delay between a spherical and a
     25       parabolic mirror
     26
     27   * mjobs/MJStar.cc:
     28     - implemented new plots for IPR vs. Time and DT
     29
     30
     31
    2132 2007/02/13 Thomas Bretz
    2233
  • trunk/MagicSoft/Mars/NEWS

    r8318 r8323  
    7575     the "SparkCut" directive
    7676
     77   - star: Star displays now the average individual pixel-rate (IPR) versus
     78     time and the average discriminator threshold (DT) of all pixels.
     79
    7780   - optim: fixed a problem with the optim-macros which was due to a bug
    7881     in the new phrase parsing
  • trunk/MagicSoft/Mars/mjobs/MJStar.cc

    r8311 r8323  
    181181    readreal.AddTree("Currents",         MReadReports::kRequired);
    182182    readreal.AddTree("CC");
     183    readreal.AddTree("Trigger");
    183184    readreal.AddFiles(iter);
    184185
     
    428429    MFillH fillw("MHWeather", "MTimeCC", "FillWeather");
    429430
     431    // instantiate camera histogram containers
     432    MHCamEvent evtdt(0, "DT", "Discriminator Threshold;;DT [au]");
     433
     434    // instantiate fill tasks
     435    MFillH filldt(&evtdt, "MCameraTH", "FillDT");
     436
     437    MHSectorVsTime histipr;
     438
     439    histipr.SetNameTime("MTimeTrigger");
     440    histipr.SetTitle("Mean of all IPR;;<IPR> [Hz]");
     441    histipr.SetMinimum(0);
     442    //histipr.SetUseMedian();
     443
     444    // Task to fill the histogram
     445    MFillH fillipr(&histipr, "MTriggerIPR", "FillIPR");
     446    fillipr.SetNameTab("IPR");
     447
    430448    MPointingPosCalc pcalc;
    431449
     
    438456    if (!ismc)
    439457    {
     458        // initiate task list
    440459        tlist.AddToList(&fillw,   "CC");
    441460        tlist.AddToList(&fillp1,  "Drive");
    442461        tlist.AddToList(&fillp2,  "Starguider");
     462        tlist.AddToList(&fillrms, "Currents");
    443463        tlist.AddToList(&filldc,  "Currents");
    444         tlist.AddToList(&fillrms, "Currents");
     464        tlist.AddToList(&fillipr, "Trigger");
     465        tlist.AddToList(&filldt,  "CC");
    445466    }
    446467    tlist.AddToList(&write);
Note: See TracChangeset for help on using the changeset viewer.