Changeset 895 for trunk/MagicSoft/Mars/macros
- Timestamp:
- 07/23/01 14:44:07 (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/macros/MagicHillas.C
r769 r895 51 51 // CalEvents: Calibration Events 52 52 // 53 MReadTree read("Events", "data/ my_file.root");54 // read.AddFile("data/ test.root");53 MReadTree read("Events", "data/cer000020.root"); 54 // read.AddFile("data/cer000019.root"); 55 55 56 MCerPhotCalc ncalc; 57 MImgCleanStd clean; 58 MHillasCalc hcalc; 59 MFillHHillas hfill; 60 MFillHStarMap sfill; 56 MCerPhotCalc ncalc; 57 MImgCleanStd clean; 58 MHillasCalc hcalc; 59 MFillH hfill("MHillas", "MHHillas"); 60 MFillHStarMap sfill("MHillas", "MHStarMap"); 61 MWriteRootFile write("hillas.root"); 62 write.AddContainer("MHillas"); 63 write.AddContainer("MHHillas"); 64 write.AddContainer(smap); 61 65 62 66 tlist.AddToList(&read); … … 66 70 tlist.AddToList(&hfill); 67 71 tlist.AddToList(&sfill); 72 tlist.AddToList(&write); 68 73 69 74 // … … 76 81 // Execute your analysis 77 82 // 78 evtloop.Eventloop(); 83 if (!evtloop.Eventloop()) 84 return; 79 85 80 86 //
Note:
See TracChangeset
for help on using the changeset viewer.