Changeset 2944
- Timestamp:
- 01/28/04 14:53:30 (21 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r2943 r2944 11 11 method was OK. Up to now, program stopped, if one of the two 12 12 methods was chosen but not able to being executed. 13 13 14 * manalysis/MArrivalTimeCalc.cc 15 * manalysis/MExtractSignals.cc 16 * manalysis/MGeomApply.cc 17 - put all missing InitSize(npixels) into MGeomApply 18 14 19 15 20 2004/01/28: Abelardo Moralejo -
trunk/MagicSoft/Mars/manalysis/MArrivalTimeCalc.cc
r2921 r2944 110 110 } 111 111 112 fArrTime->InitSize(cam->GetNumPixels());113 114 112 return kTRUE; 115 113 } -
trunk/MagicSoft/Mars/manalysis/MExtractSignal.cc
r2901 r2944 135 135 Bool_t MExtractSignal::ReInit(MParList *pList ) 136 136 { 137 137 138 MGeomCam *cam = (MGeomCam*)pList->FindObject(AddSerialNumber("MGeomCam")); 138 139 if (!cam) … … 142 143 } 143 144 144 // FIXME: This solution may change in the future, MExtractedSignal 145 // must be similar to MCerPhotEvt not to MPedestalCam 146 // (Have to think about the mean size of both solutions) 147 fSignals->InitSize(cam->GetNumPixels()); 148 149 fArrivalTime->InitSize(cam->GetNumPixels()); 150 151 return kTRUE; 145 return kTRUE; 152 146 } 153 147 -
trunk/MagicSoft/Mars/manalysis/MGeomApply.cc
r2899 r2944 61 61 #include "MCalibrationCam.h" 62 62 #include "MPedPhotCam.h" 63 #include "MArrivalTime.h" 64 #include "MExtractedSignalCam.h" 63 65 #include "MBlindPixels.h" 64 66 … … 130 132 131 133 134 MExtractedSignalCam *ext = (MExtractedSignalCam*)pList->FindObject(AddSerialNumber("MExtractedSignalCam")); 135 if (ext) 136 ext->InitSize(cam->GetNumPixels()); 137 132 138 MBlindPixels *bnd = (MBlindPixels*)pList->FindObject(AddSerialNumber("MBlindPixels")); 133 139 if (bnd) 134 140 bnd->InitSize(cam->GetNumPixels()); 141 142 MArrivalTime *tme = (MArrivalTime*)pList->FindObject(AddSerialNumber("MArrivalTime")); 143 if (tme) 144 tme->InitSize(cam->GetNumPixels()); 135 145 136 146 return kTRUE;
Note:
See TracChangeset
for help on using the changeset viewer.