Changeset 4528 for trunk/MagicSoft/Mars/mtemp/mifae
- Timestamp:
- 08/06/04 16:26:35 (20 years ago)
- Location:
- trunk/MagicSoft/Mars/mtemp/mifae
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mtemp/mifae/Changelog
r4442 r4528 18 18 19 19 -*-*- END OF LINE -*-*- 20 21 2004/08/04 Javier Rico 22 * library/MIslands.[cc] 23 - Correct tiny compilation error 24 25 * library/MDisplay.cc, library/MHillasDisplay.[h,cc] 26 - Print hillas source position dependent stuff 20 27 21 28 2004/08/03 Ester Aliu Fusté -
trunk/MagicSoft/Mars/mtemp/mifae/library/MDisplay.cc
r4139 r4528 123 123 124 124 // update the display contents 125 fDisplay->SetCamContent(*fCamEvent );125 fDisplay->SetCamContent(*fCamEvent,fDisplayType); 126 126 fCanvas->GetPad(1)->Modified(); 127 127 fCanvas->GetPad(1)->Update(); -
trunk/MagicSoft/Mars/mtemp/mifae/library/MHillasDisplay.cc
r4222 r4528 57 57 #include "MGeomCam.h" 58 58 #include "MHillas.h" 59 #include "MHillasSrc.h" 59 60 #include "MNewImagePar.h" 60 61 #include "MSrcPosCam.h" … … 73 74 // 74 75 MHillasDisplay::MHillasDisplay(MCerPhotEvt* event, MGeomCam* geom, Int_t type, const char* name, const char* title) 75 : MDisplay(event,geom,type), fHillas(NULL), f NewImage(NULL), fSrcPos(NULL), fIslands(NULL)76 : MDisplay(event,geom,type), fHillas(NULL), fHillasSrc(NULL), fNewImage(NULL), fSrcPos(NULL), fIslands(NULL) 76 77 { 77 78 fName = name ? name : gsDefName.Data(); … … 99 100 } 100 101 102 // Look for src dependent hillas parameters container 103 if(!fHillasSrc) 104 fHillasSrc = (MHillasSrc*)pList->FindObject(AddSerialNumber("MHillasSrc"), "MHillasSrc"); 105 106 101 107 // Look for the MNewImagePar container 102 108 if(!fNewImage) … … 133 139 if(fHillas) 134 140 fHillas->Print(); 141 if(fHillasSrc) 142 fHillasSrc->Print(); 135 143 if(fNewImage) 136 144 fNewImage->Print(); -
trunk/MagicSoft/Mars/mtemp/mifae/library/MHillasDisplay.h
r4218 r4528 10 10 class MGeomCam; 11 11 class MHillas; 12 class MHillasSrc; 12 13 class MIslands; 13 14 class MNewImagePar; … … 17 18 private: 18 19 MHillas* fHillas; // pointer to container with the hillas parameters 20 MHillasSrc* fHillasSrc; // pointer to container with source dependent hillas parameters 19 21 MNewImagePar* fNewImage; // pointer to container with the new image parameters 20 22 MSrcPosCam* fSrcPos; // pointer to the source position in camera -
trunk/MagicSoft/Mars/mtemp/mifae/library/MIslands.cc
r4442 r4528 59 59 // Print the island parameters to *fLog 60 60 // 61 void MIslands::Print(Option_t *opt =NULL) const61 void MIslands::Print(Option_t *opt) const 62 62 { 63 63 *fLog << all;
Note:
See TracChangeset
for help on using the changeset viewer.