Ignore:
Timestamp:
03/30/01 11:30:32 (24 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars/macros
Files:
3 edited

Legend:

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

    r700 r710  
    2626    // finished you must create them yourself and add it to the list
    2727    //
    28     MHHillas *hists = new MHHillas;
     28    MHHillas  *hists = new MHHillas;
    2929    plist->AddToList(hists);
     30
     31    MHStarMap *smap = new MHStarMap;
     32    plist->AddToList(smap);
    3033
    3134    //
     
    3740    //  4) fill the hillas into the histograms
    3841    //
    39     MCT1ReadAscii read("CT1_99_on1.dat") ;
     42    MCT1ReadAscii read("CT1_97_on1.dat") ;
    4043    MImgCleanStd  clean;
    4144    MHillasCalc   hcalc;
    4245    MFillHHillas  hfill;
     46    MFillHStarMap sfill;
    4347
    4448    tlist.AddToList(&read);
     
    4650    tlist.AddToList(&hcalc);
    4751    tlist.AddToList(&hfill);
     52    tlist.AddToList(&sfill);
    4853
    4954    //
     
    6267    //
    6368    hists->Draw();
     69    smap->Draw();
    6470}
  • trunk/MagicSoft/Mars/macros/MagicHillas.C

    r700 r710  
    3232    plist->AddToList(hists);
    3333
     34    MHStarMap *smap = new MHStarMap;
     35    plist->AddToList(smap);
     36
    3437    //
    3538    // Now setup the tasks and tasklist:
     
    4043    //  4) fill the hillas into the histograms
    4144    //
    42     MReadTree    read("oscar_protons.root", "Events") ;
    43     MCerPhotCalc ncalc;
    44     MImgCleanStd clean;
    45     MHillasCalc  hcalc;
    46     MFillHHillas hfill;
     45    MReadTree    read("Events", "oscar_protons.root");
     46    read.AddFile("test.root");
     47
     48    MCerPhotCalc  ncalc;
     49    MImgCleanStd  clean;
     50    MHillasCalc   hcalc;
     51    MFillHHillas  hfill;
     52    MFillHStarMap sfill;
    4753
    4854    tlist.AddToList(&read);
     
    5157    tlist.AddToList(&hcalc);
    5258    tlist.AddToList(&hfill);
     59    tlist.AddToList(&sfill);
    5360
    5461    //
     
    6774    //
    6875    hists->Draw();
     76    smap->Draw();
    6977}
     78
  • trunk/MagicSoft/Mars/macros/readCT1.C

    r700 r710  
    1111    plist->AddToList(&tlist);
    1212
    13     MCT1ReadAscii read("CT1_99_on1.dat") ;
     13    MCT1ReadAscii read("CT1_99_off1.dat") ;
    1414    MImgCleanStd  clean;
    1515    MHillasCalc   hcalc;
     
    2929    Int_t icount = 0 ;
    3030    MCamDisplay display(&geomcam) ;
     31        display.DrawPhotNum(&phevt);
     32
    3133
    3234    while (read.Process())
    3335    {
    3436        cout << "Event: " << icount++  << endl  ;
    35 
    36         if (icount < 45 )
    37             continue;
    3837
    3938        display.DrawPhotNum(&phevt);
Note: See TracChangeset for help on using the changeset viewer.