Changeset 7406 for trunk/MagicSoft/Mars


Ignore:
Timestamp:
11/16/05 16:11:08 (19 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r7405 r7406  
    1818
    1919                                                 -*-*- END OF LINE -*-*-
    20  2005/11/15 Daniela Dorner
     20 2005/11/16 Thomas Bretz
     21
     22   * datacenter/macros/plotdb.C:
     23     - added new plot for camera inhomgeneity
     24
     25
     26
     27 2005/11/16 Daniela Dorner
    2128
    2229   * datacenter/macros/fillstar.C, setupdb.C:
     
    3845     - implemented long awaiting E^2dN/dE plot
    3946     - updated displaying result (formula)
     47
     48   * msql/MSQLServer.[h,cc]:
     49     - added output of database name to GetName
    4050
    4151
     
    113123   * mreport/MReportTrigger.cc:
    114124     - fixed a typo of the indentation (two commands in one line)
    115 
    116    * msql/MSQLServer.[h,cc]:
    117      - added output of database name to GetName
    118125
    119126   * mjobs/MDataSet.cc:
  • trunk/MagicSoft/Mars/datacenter/macros/plotdb.C

    r7388 r7406  
    297297    plot.SetDescription("Mean Signal inner Camera;S_{I} [phe]", "SignalI");
    298298    plot.Plot("Calibration.fMeanSignalInner",  0, 7.0, 0.05);
     299    plot.SetDescription("Mean PulsePos;T", "PulPos");
     300    plot.Plot("Calibration.fPulsePosMean", 1, 15.0, 0.1);
     301    plot.SetDescription("Rms PulsePos;T", "PulRms");
     302    plot.Plot("Calibration.fPulsePosRms", 0, 2.0, 0.1);
    299303    //from star*.root
    300304    //muon
     
    305309    plot.SetDescription("Muon Rate after Muon Cuts;R [Hz]");
    306310    plot.Plot("Star.fMuonRate",                0, 2.0, 0.05);
     311    //quality
     312    plot.SetDescription("Camera Inhomogeneity;\\sigma [%]", "Inhom");
     313    plot.Plot("Star.fInhomogeneity",           0, 100, 1);
    307314    //imgpar
    308315    plot.SetDescription("Mean Number of Islands after cleaning;N [#]", "NumIsl");
     
    350357
    351358    MStatusDisplay *d = new MStatusDisplay;
     359    d->SetWindowName(serv.GetName());
     360    d->SetTitle(serv.GetName());
    352361
    353362    MPlot plot(serv);
     
    355364    plot.SetRequestRange(from, to);
    356365    plotall(plot);
    357     //d->SaveAsPS("plotdb.ps");
     366    d->SaveAsRoot("plotdb.root");
     367    d->SaveAsPS("plotdb.ps");
    358368}
    359369
     
    376386
    377387    MStatusDisplay *d = new MStatusDisplay;
     388    d->SetWindowName(serv.GetName());
     389    d->SetTitle(serv.GetName());
     390
    378391    MPlot plot(serv);
    379392    plot.SetDisplay(d);
    380393    plot.SetRequestPeriod(period);
    381394    plotall(plot);
    382     //d->SaveAsPS("plotdb.ps");
     395    d->SaveAsRoot("plotdb.root");
     396    d->SaveAsPS("plotdb.ps");
    383397}
Note: See TracChangeset for help on using the changeset viewer.