Changeset 4142
- Timestamp:
- 05/24/04 14:20:18 (21 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r4134 r4142 18 18 19 19 -*-*- END OF LINE -*-*- 20 21 2004/05/24: Markus Gaug 22 23 * mcalib/MCalibrationCam.cc 24 - initialize AverageAreas and AverageSectors with the number of 25 aidx and sector as SetPixId() 26 27 * mcalib/MCalibrationChargeCam.cc 28 - small modification in the Print() 29 20 30 21 31 2004/05/22: Markus Gaug -
trunk/MagicSoft/Mars/mcalib/MCalibrationCam.cc
r3936 r4142 191 191 fAverageAreas->ExpandCreate(i); 192 192 fAverageBadAreas->ExpandCreate(i); 193 194 for (UInt_t j=0; j<i; j++) 195 GetAverageArea(j).SetPixId(j); 193 196 194 197 fNumUnsuitable.Set(i); … … 206 209 fAverageSectors->ExpandCreate(i); 207 210 fAverageBadSectors->ExpandCreate(i); 211 212 for (UInt_t j=0; j<i; j++) 213 GetAverageSector(j).SetPixId(j); 214 208 215 } 209 216 -
trunk/MagicSoft/Mars/mcalib/MCalibrationChargeCam.cc
r4109 r4142 237 237 *fLog << endl; 238 238 239 *fLog << all << endl; 240 *fLog << all << "Averaged Areas:" << endl; 241 *fLog << all << endl; 242 239 243 TIter Next5(fAverageAreas); 240 244 while ((pix=(MCalibrationChargePix*)Next5())) 241 245 { 242 246 *fLog << all << "Average Area:" 247 << Form("%s%3i","Area Idx: ",pix->GetPixId()) 243 248 << " Ped. Rms: " << pix->GetPedRms() << " +- " << pix->GetPedRmsErr() 244 249 << " Mean signal: " << pix->GetMean() << " +- " << pix->GetMeanErr() … … 249 254 } 250 255 256 *fLog << all << endl; 257 *fLog << all << "Averaged Sectors:" << endl; 258 *fLog << all << endl; 259 251 260 TIter Next6(fAverageSectors); 252 261 while ((pix=(MCalibrationChargePix*)Next6())) 253 262 { 254 263 *fLog << all << "Average Sector:" 264 << Form("%s%3i","Sector: ",pix->GetPixId()) 255 265 << " Ped. Rms: " << pix->GetPedRms() << " +- " << pix->GetPedRmsErr() 256 266 << " Mean signal: " << pix->GetMean() << " +- " << pix->GetMeanErr()
Note:
See TracChangeset
for help on using the changeset viewer.