Changeset 2423 for trunk/MagicSoft


Ignore:
Timestamp:
10/23/03 14:01:45 (21 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r2421 r2423  
    191191     - returned to revision 1.9 (I had committed by mistake a private
    192192       version of the macro, sorry!)
     193
     194
     195
     196  2003/10/04: Thomas Bretz
     197
     198   * macros/MagicHillas.C, macros/pedestalvstime.C, macros/pixfirerate.C,
     199     macros/pixsatrate.C, macros/readCT1.C, macros/readMagic.C,
     200     macros/starplot.C, macros/status.C, macros/sumevents.C,
     201     macros/sumeventserr.C, macros/sumeventsrms.C, macros/sumpedestalrms.C,
     202     macros/sumpedestals.C, mmain/MDataCheck.cc:
     203     - added MGeomApply
     204     
     205   * manalysis/AnalysisLinkDef.h, manalysis/Makefile:
     206     - added MGeomApply
     207
     208   * manalysis/MBlindPixelCalc.cc:
     209     - for buid-in pixel numbers added a check whether the geometry
     210       is mathcing
     211       
     212   * manalysis/MCerPhotCalc.cc, manalysis/MMcPedestalCopy.cc,
     213     manalysis/MMcPedestalNSBAdd.cc, meventdisp/MGCamDisplay.[h,cc],
     214     meventdisp/MGEvtDisplay.[h,cc], mhist/MHFadcCam.cc:
     215     - fixed that it can deal with variable size arrays
     216
     217   * manalysis/MGeomApply.[h,cc]:
     218     - added. This task will take care of different geometries
     219
     220   * manalysis/MPedestalCam.cc:
     221     - initialize array with size 1
     222     - do not call new operator
     223     
     224   * mbase/MArgs.cc, mbase/MDirIter.cc:
     225     - added comments
     226     
     227   * mdatacheck/MGDisplayAdc.cc:
     228     - fixed a small bug in setting slider position for different geometries
     229     
     230   * mfileio/MWriteRootFile.cc:
     231     - automatically append '.root' to file name
     232     
     233   * mhist/MHCamera.cc:
     234     - added Init function
     235     - moved parts of the construtor to Init function
     236     - added default constructor
     237     - added possibility to change geometry after creation by SetGeometry
     238     - added many sanity checks (fNcells<=1)
    193239
    194240
  • trunk/MagicSoft/Mars/macros/star.C

    r2383 r2423  
    5252
    5353    //
    54     // The geometry container must be created by yourself to make sure
    55     // that you don't choose a wrong geometry by mistake
    56     //
    57     MGeomCamMagic geomcam;
    58     plist.AddToList(&geomcam);
    59 
    60     //
    6154    // Now setup the tasks and tasklist:
    6255    // ---------------------------------
     
    6659
    6760    // ------------- user change -----------------
    68     read.AddFile("magictest/test/Gamma_z*.root");
     61    read.AddFile("~/MC/test_sample/Gamma_zbin0_0_*.root");
    6962
     63    MGeomApply        apply;
    7064    MMcPedestalCopy   pcopy;
    7165    MMcPedestalNSBAdd pnsb;
     
    9387
    9488    tlist.AddToList(&read);
     89    tlist.AddToList(&apply);
    9590    tlist.AddToList(&pcopy);
    9691    tlist.AddToList(&pnsb);
Note: See TracChangeset for help on using the changeset viewer.