Changeset 1540 for trunk/MagicSoft/Mars/macros
- Timestamp:
- 10/15/02 17:02:46 (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/macros/readMagic.C
r1325 r1540 46 46 } 47 47 48 void readMagic(const char *fname="~/data/ camera.root")48 void readMagic(const char *fname="~/data/Gamma_0_7*.root") 49 49 { 50 50 MParList plist; 51 51 52 52 MGeomCamMagic geomcam; 53 MHillas 53 MHillasExt hillas; 54 54 MTaskList tlist; 55 55 … … 59 59 60 60 MReadMarsFile read("Events", fname); 61 read.DisableAutoScheme(); 61 62 63 MPrint print("MMcEvt"); 62 64 MMcPedestalCopy pcopy; 63 65 MMcPedestalNSBAdd pnsb; 64 66 MCerPhotCalc ncalc; 67 MBlindPixelCalc blind; 68 blind.SetUseInterpolation(); 65 69 MClone clone("MCerPhotEvt"); 66 70 MImgCleanStd clean; 67 MBlindPixelCalc blind;68 71 MHillasCalc hcalc; 69 72 70 73 71 74 tlist.AddToList(&read); 75 tlist.AddToList(&print); 72 76 tlist.AddToList(&pcopy); 73 77 tlist.AddToList(&pnsb); 74 78 tlist.AddToList(&ncalc); 79 tlist.AddToList(&blind); 75 80 tlist.AddToList(&clone); 76 81 tlist.AddToList(&clean); 77 tlist.AddToList(&blind);78 82 tlist.AddToList(&hcalc); 79 83
Note:
See TracChangeset
for help on using the changeset viewer.