Changeset 9024 for trunk/MagicSoft


Ignore:
Timestamp:
07/20/08 19:16:52 (16 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r9022 r9024  
    8080     - unified output when finished
    8181     - make sure the weight for the rate tab is not 0
     82     - read the currents now from the camera instead of the currents tree
    8283
    8384
  • trunk/MagicSoft/Mars/NEWS

    r9009 r9024  
    1010     instead of the base name of the file. This makes them easier to
    1111     access from the code
     12
     13   * Default Monte Carlo names in MSequence do not require the _E at
     14     the end anymore
     15
     16   * where abrrevating a sequence file with a sequence number is possible
     17     also "telescope:sequence" is now accepted, e.g.:
     18        star 2:2000123 --out=output
     19     see the programs' help for more details.
     20
     21   * sequences (MSequence or MSequenceSQL) can now directly be retrieved
     22     from the database. See the constructors for more details.
     23
     24 ;merpp
     25
     26   * we merpp the dc currents now also from the camera reports (they have
     27     just a lower rate than the current reports, 0.1Hz instead of 1Hz)
     28
     29   * In the automatic analysis we omit merpping of the currents from the
     30     caco files and use the lower rate camera reports from the cc files
     31     instead
     32
     33   * merpp has been redisigned to allow merpping of the cc-reports
     34     of a whole sequence. This allows to design a very simple analysis:
     35        mkdir output
     36        ./callisto 100776 --out=output
     37        ./merpp 100776 output
     38        ./star 100776 --ind=output --out=output
     39     Instead of the sequence number also sequence files are accepted.
     40
     41 ;star
     42
     43   * The camera currents are now displayed with the rate of the camera
     44     reports instead of the caco reports
    1245
    1346
  • trunk/MagicSoft/Mars/callisto.cc

    r9017 r9024  
    4444    gLog << all << endl;
    4545    gLog << "Sorry the usage is:" << endl;
    46     gLog << " callisto [-c] [-y] [options] sequence.txt|number" << endl << endl;
     46    gLog << " callisto [-c] [-y] [options] sequence.txt|[tel:]number" << endl << endl;
    4747    gLog << " Arguments:" << endl;
    4848    gLog << "   sequence.txt:             ASCII file defining a sequence of runs" << endl;
  • trunk/MagicSoft/Mars/mjobs/MJStar.cc

    r9022 r9024  
    192192    readreal.AddTree("Drive",            MReadReports::kRequired);
    193193    readreal.AddTree("Starguider",       MReadReports::kRequired);
    194     readreal.AddTree("Currents",         MReadReports::kRequired);
     194    readreal.AddTree("Camera",           MReadReports::kRequired);
     195    readreal.AddTree("Currents");
    195196    readreal.AddTree("CC");
    196197    readreal.AddTree("Rec");
     
    461462    // Initialize histogram
    462463    MHSectorVsTime histdc, histrms;
    463     histdc.SetNameTime("MTimeCurrents");
     464    histdc.SetNameTime("MTimeCamera");
    464465    histdc.SetTitle("Average DC currents of all pixels vs time;;<I> [nA]");
    465466    histdc.SetMinimum(0);
    466467    histdc.SetMaximum(10);
    467     histrms.SetNameTime("MTimeCurrents");
     468    histrms.SetNameTime("MTimeCamera");
    468469    histrms.SetTitle("Average pedestal rms of all pixels vs time;;<\\sigma_{p}> [phe]");
    469470    histrms.SetType(5);
     
    526527        tlist.AddToList(&fillp1,  "Drive");
    527528        tlist.AddToList(&fillp2,  "Starguider");
    528         tlist.AddToList(&fillrms, "Currents");
    529         tlist.AddToList(&filldc,  "Currents");
     529        tlist.AddToList(&fillrms, "Camera");
     530        tlist.AddToList(&filldc,  "Camera");
    530531        tlist.AddToList(&fillipr, "Trigger");
    531532        tlist.AddToList(&filldt1, "CC");   // Old files: Receiver information in CC-Tree  (Mars<=2.0)
  • trunk/MagicSoft/Mars/star.cc

    r9017 r9024  
    4141    gLog << all << endl;
    4242    gLog << "Sorry the usage is:" << endl;
    43     gLog << " star [options] sequence.txt|number" << endl << endl;
     43    gLog << " star [options] sequence.txt|[tel:]number" << endl << endl;
    4444    gLog << " Arguments:" << endl;
    4545    gLog << "   sequence.txt:             Ascii file defining a sequence of runs" << endl;
Note: See TracChangeset for help on using the changeset viewer.