Ignore:
Timestamp:
10/15/02 17:02:46 (22 years ago)
Author:
tbretz
Message:
*** empty log message ***
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/macros/readMagic.C

    r1325 r1540  
    4646}
    4747
    48 void readMagic(const char *fname="~/data/camera.root")
     48void readMagic(const char *fname="~/data/Gamma_0_7*.root")
    4949{
    5050    MParList plist;
    5151
    5252    MGeomCamMagic geomcam;
    53     MHillas       hillas;
     53    MHillasExt    hillas;
    5454    MTaskList     tlist;
    5555
     
    5959
    6060    MReadMarsFile     read("Events", fname);
     61    read.DisableAutoScheme();
    6162
     63    MPrint            print("MMcEvt");
    6264    MMcPedestalCopy   pcopy;
    6365    MMcPedestalNSBAdd pnsb;
    6466    MCerPhotCalc      ncalc;
     67    MBlindPixelCalc   blind;
     68    blind.SetUseInterpolation();
    6569    MClone            clone("MCerPhotEvt");
    6670    MImgCleanStd      clean;
    67     MBlindPixelCalc   blind;
    6871    MHillasCalc       hcalc;
    6972
    7073
    7174    tlist.AddToList(&read);
     75    tlist.AddToList(&print);
    7276    tlist.AddToList(&pcopy);
    7377    tlist.AddToList(&pnsb);
    7478    tlist.AddToList(&ncalc);
     79    tlist.AddToList(&blind);
    7580    tlist.AddToList(&clone);
    7681    tlist.AddToList(&clean);
    77     tlist.AddToList(&blind);
    7882    tlist.AddToList(&hcalc);
    7983
Note: See TracChangeset for help on using the changeset viewer.