Changeset 4141
- Timestamp:
- 05/24/04 13:46:40 (21 years ago)
- Location:
- trunk/MagicSoft/Mars/mtemp/mifae
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mtemp/mifae/Changelog
r4140 r4141 20 20 21 21 2004/05/24 Javier Rico 22 * library/MDisplay.[h,cc], library/MHillasDisplay.[h,cc]23 programs/make Hillas.cc, programs/makehillas.datacard22 * library/MDisplay.[h,cc], programs/makeHillas.cc, 23 programs/makehillas.datacard 24 24 - Add possibility to save a ps file 25 25 - Update documentation 26 26 27 * library/MHillasDisplay 27 * library/MHillasDisplay[h.cc] 28 28 - correct minor axis paint 29 - include MNewImagePar dumping 30 - update documentation 29 31 30 32 2004/05/21 Oscar Blanch -
trunk/MagicSoft/Mars/mtemp/mifae/library/MHillasDisplay.cc
r4140 r4141 56 56 #include "MGeomCam.h" 57 57 #include "MHillas.h" 58 #include "MNewImagePar.h" 58 59 #include "MSrcPosCam.h" 59 60 … … 71 72 // 72 73 MHillasDisplay::MHillasDisplay(MCerPhotEvt* event, MGeomCam* geom, Int_t type, const char* name, const char* title) 73 : MDisplay(event,geom,type), fHillas(NULL), f SrcPos(NULL)74 : MDisplay(event,geom,type), fHillas(NULL), fNewImage(NULL), fSrcPos(NULL) 74 75 { 75 76 fName = name ? name : gsDefName.Data(); … … 97 98 } 98 99 100 // Look for the MNewImagePar container 101 if(!fNewImage) 102 fNewImage = (MNewImagePar*)pList->FindObject(AddSerialNumber("MNewImagePar"), "MNewImagePar"); 103 if(!fNewImage) 104 *fLog << warn << "MHillasDisplay::PreProcess Warning: MNewImagePar object not found" << endl; 105 99 106 // Look for the MHillas container 100 107 if(!fSrcPos) … … 114 121 if(fHillas && GetPauseMode()) 115 122 fHillas->Print(); 123 if(fNewImage && GetPauseMode()) 124 fNewImage->Print(); 125 116 126 117 127 // draw the event -
trunk/MagicSoft/Mars/mtemp/mifae/library/MHillasDisplay.h
r4117 r4141 10 10 class MGeomCam; 11 11 class MHillas; 12 class MNewImagePar; 12 13 13 14 class MHillasDisplay : public MDisplay 14 15 { 15 16 private: 16 MHillas* fHillas; // pointer to container with the hillas parameters 17 MSrcPosCam* fSrcPos; // pointer to the source position in camera 17 MHillas* fHillas; // pointer to container with the hillas parameters 18 MNewImagePar* fNewImage; // pointer to container with the new image parameters 19 MSrcPosCam* fSrcPos; // pointer to the source position in camera 18 20 19 21 virtual Int_t PreProcess(MParList *plist); -
trunk/MagicSoft/Mars/mtemp/mifae/programs/makeHillas.cc
r4139 r4141 31 31 #include "MPedPhotCalc.h" 32 32 #include "MHillas.h" 33 #include "MNewImagePar.h" 33 34 #include "MRawRunHeader.h" 34 35 #include "MSrcPosCam.h" … … 227 228 // containers 228 229 MHillas hillas; 230 MNewImagePar newimagepar; 229 231 MSrcPosCam source; 230 232 MRawRunHeader runhead; … … 259 261 plist4.AddToList(&source); 260 262 plist4.AddToList(&hillas); 263 plist4.AddToList(&newimagepar); 261 264 plist4.AddToList(&runhead); 262 265
Note:
See TracChangeset
for help on using the changeset viewer.