Changeset 949 for trunk/MagicSoft/Mars
- Timestamp:
- 09/26/01 14:56:03 (23 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 3 added
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r948 r949 9 9 - fixed many, many memory leaks 10 10 - small changes in layout 11 11 12 * mmain/MAnalysis.[h,cc]: 13 - added 14 12 15 * macros/*: 13 16 - added Copyright notice 14 17 - added some small sanity checks 18 19 * macros/MagicHillas.C: 20 - fixed '->' bug 21 - changed MFillHStarMap to MFillH 22 23 * mbase/MReadTree.cc, mraw/MRawFileWrite.cc: 24 - removed an old debug statement 25 26 * mmain/MMars.cc: 27 - added new Analysis functionality 28 29 * mmain/MainLinkDef.h: 30 - addded MAnalysis 31 32 * mmain/Makefile: 33 - added MAnalysis.cc 34 35 * mmc/McLinkDef.h: 36 - removed nonsens define statement 37 15 38 16 39 -
trunk/MagicSoft/Mars/Makefile
r944 r949 35 35 # ----->>> mars libraries 36 36 # 37 SUBDIRS = m gui\38 m main\37 SUBDIRS = mmain \ 38 mgui \ 39 39 manalysis \ 40 mbase \ 40 41 meventdisp \ 41 42 mdatacheck \ … … 43 44 mhist \ 44 45 mfilter \ 45 mbase \46 46 mraw \ 47 47 mmc -
trunk/MagicSoft/Mars/NEWS
r935 r949 3 3 4 4 *** Version 0.5 5 6 - Added new GUI functionality (Analysis) 5 7 6 8 -
trunk/MagicSoft/Mars/macros/MagicHillas.C
r948 r949 37 37 38 38 MTaskList tlist; 39 plist ->AddToList(&tlist);39 plist.AddToList(&tlist); 40 40 41 41 // … … 44 44 // 45 45 MGeomCamMagic geomcam; 46 plist ->AddToList(&geomcam);46 plist.AddToList(&geomcam); 47 47 48 48 MPedestalCam pedest; 49 plist ->AddToList(&pedest);49 plist.AddToList(&pedest); 50 50 51 51 // … … 55 55 // 56 56 MHHillas *hists = new MHHillas; 57 plist ->AddToList(hists);57 plist.AddToList(hists); 58 58 59 59 MHStarMap *smap = new MHStarMap; 60 plist ->AddToList(smap);60 plist.AddToList(smap); 61 61 62 62 // … … 67 67 // 3) clean the image MImgCleanStd 68 68 // 4) calculate hillas MHillasCalc 69 // 5) fill the hillas into the histograms MFillH Hillas69 // 5) fill the hillas into the histograms MFillH 70 70 // 71 71 … … 76 76 // CalEvents: Calibration Events 77 77 // 78 MReadTree read("Events", "data/ cer000020.root");78 MReadTree read("Events", "data/octobertest.root"); 79 79 // read.AddFile("data/cer000019.root"); 80 80 … … 83 83 MHillasCalc hcalc; 84 84 MFillH hfill("MHillas", "MHHillas"); 85 MFillHStarMap sfill("MHillas", "MHStarMap"); 86 MWriteRootFile write("hillas.root"); 85 MFillH sfill("MHillas", "MHStarMap"); 86 87 MWriteRootFile write("hillas.root"); 87 88 write.AddContainer("MHillas"); 88 89 write.AddContainer("MHHillas"); -
trunk/MagicSoft/Mars/mbase/MReadTree.cc
r895 r949 228 228 // 229 229 fChain->GetEntry(fNumEntry); 230 cout << " " << fChain->LoadTree(fNumEntry) << " "<<flush;231 230 232 231 fNumEntry++; -
trunk/MagicSoft/Mars/mmain/MMars.cc
r947 r949 36 36 37 37 #include "MEvtDisp.h" 38 #include "MAnalysis.h" 38 39 #include "MDataCheck.h" 39 40 #include "MMonteCarlo.h" … … 54 55 M_BUTTON_ANALYSE, 55 56 M_BUTTON_MONTECARLO 56 } ;57 }; 57 58 58 59 void MMars::CreateMenuBar() … … 263 264 264 265 case M_BUTTON_ANALYSE: 265 DisplWarning("Analysis not yet implemented!");266 new MAnalysis(this); 266 267 return kTRUE; 267 268 -
trunk/MagicSoft/Mars/mmain/MainLinkDef.h
r938 r949 8 8 9 9 #pragma link C++ class MMars; 10 #pragma link C++ class MAnalysis; 10 11 #pragma link C++ class MEvtDisp; 11 12 #pragma link C++ class MDataCheck; -
trunk/MagicSoft/Mars/mmain/Makefile
r714 r949 22 22 # connect the include files defined in the config.mk file 23 23 # 24 INCLUDES = -I. -I../mbase -I../manalysis -I../mdatacheck -I../meventdisp 24 INCLUDES = -I. -I../mbase -I../manalysis -I../mdatacheck -I../meventdisp \ 25 -I../mgui -I../mhist 25 26 26 27 #------------------------------------------------------------------------------ … … 31 32 MEvtDisp.cc \ 32 33 MMars.cc \ 34 MAnalysis.cc \ 33 35 MMonteCarlo.cc \ 34 36 MBrowser.cc -
trunk/MagicSoft/Mars/mraw/MRawFileWrite.cc
r860 r949 203 203 // 204 204 const UShort_t type = fRawEvtHeader->GetTrigType(); 205 cout << "W" << flush; 205 206 206 // 207 207 // writa data to the tree. the tree is choosen by the type of the event
Note:
See TracChangeset
for help on using the changeset viewer.