Changeset 2714
- Timestamp:
- 12/18/03 17:18:01 (21 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r2713 r2714 9 9 - Changed "if (!fCalibrations)" to "if (!fGeomCam)" in 10 10 preprocess (this was a cut-and-paste error). 11 - In Process: added "fCerPhotEvt->AddPixel(pixid, 0., 0.)" before 12 setting pixel pixid to unused, in case !pix.IsValid() 13 May be removing both commands (adding the pixel and setting it 14 to unused would have the same effect). 11 15 12 16 2003/12/18: Thomas Bretz -
trunk/MagicSoft/Mars/manalysis/MCalibrate.cc
r2713 r2714 131 131 Int_t MCalibrate::Process() 132 132 { 133 134 133 UInt_t imaxnumpix = fGeomCam->GetNumPixels(); 135 134 136 135 for (UInt_t pixid = 0; pixid < imaxnumpix; pixid++) 137 136 { 138 139 137 MCalibrationPix &pix = (*fCalibrations)[pixid]; 140 138 … … 163 161 } 164 162 else 163 { 164 fCerPhotEvt->AddPixel(pixid, 0., 0.); 165 165 (*fCerPhotEvt)[pixid].SetPixelUnused(); 166 } 166 167 } 167 168
Note:
See TracChangeset
for help on using the changeset viewer.