Changeset 7991
- Timestamp:
- 09/28/06 14:04:55 (18 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r7990 r7991 390 390 391 391 392 >>>>>>> 1.3372393 392 2006/08/22 Daniela Dorner 394 393 -
trunk/MagicSoft/Mars/NEWS
r7984 r7991 2 2 3 3 *** Version <cvs> 4 5 - callisto: New swapped pixels have been found and corrected 4 6 5 7 - general: The algorithm to build seqeunces has been redesigned -
trunk/MagicSoft/Mars/mraw/MRawRunHeader.cc
r7684 r7991 229 229 // [...] 230 230 // 231 // -------------------------------------------------------------------------- 232 // 233 // MAGIC runbook CC_2006_04_22_22_28_52.rbk 234 // 235 // [2006-04-22 23:14:13] 236 // 237 // [...] 238 // Found 2 pairs of swapped pixels. 239 // We corrected swapped pixels 54<->55 in the receiver boards. We probably 240 // swapped today in the camera. 241 // We did not correct 92<-<93 which are likely swapped. Will check and correct 242 // tomorrow. 243 // 244 // --- 245 // 246 // comments: 247 // - 54<->55 were corrected but have not been swapped, hence they are swapped 248 // since then (run 88560 ok, run 88669 swapped; between them mostly dummy and 249 // test runs) 250 // - 92<->93 are never swapped, always ok. 251 // 252 // -------------------------------------------------------------------------- 253 // 254 // MAGIC runbook CC_2006_08_28_19_40_18.rbk 255 // 256 // [2006-08-28 23:09:07] 257 // While doing a flatfielding we have found out that the signals for pixels 258 // 119 and 120 were swapped. We have fixed it by exchanging the corresponding 259 // fibers at the input of the receivers (not before the splitters!). 260 // 261 // --- 262 // 263 // MAGIC runbook CC_2006_08_29_15_19_14.rbk 264 // 265 // [2006-08-29 16:43:09] 266 // In the last hours we have found out and fixed a good number of pixels which 267 // were swapped: 119-120, 160-161-162 and 210-263. According to Florian, 268 // 160-161-162 and 210-263 were swapped since November 2005. 269 // 270 // --- 271 // 272 // mail Florian Goebel (08/30/2006 03:13 PM): 273 // 274 // As far as I can tell pixels 161 and 162 as well as 263 and 210 were 275 // swapped in the trigger. This leads to some inefficiency of the trigger. 276 // However, they were not swapped in the readout. So, you don't have to 277 // correct anything in the data for these pixels. 278 // 279 // --- 280 // 281 // comments: 282 // - 119-120 swapped between run 93251 (not swapped) and 93283 (swapped) 283 // (only testruns between these runs) 284 // corrected since run 99354 (== runbook [2006-08-28 23:09:07]) 285 // - 160 never swapped 286 // - 161-162 were only swapped in the trigger, but nevertheless were 287 // "corrected" also in the signal. Hence signal swapped since 99354 288 // 289 // -------------------------------------------------------------------------- 290 231 291 Bool_t MRawRunHeader::FixAssignment() 232 292 { 233 if (fRunNumber<53300 || fRunNumber>68754) 234 return kTRUE; 235 236 if (!SwapAssignment(554, 559)) 237 return kFALSE; 238 239 if (!SwapAssignment(555, 558)) 240 return kFALSE; 241 242 if (!SwapAssignment(556, 557)) 243 return kFALSE; 293 if (fRunNumber>=53300 && fRunNumber<=68754) 294 { 295 if (!SwapAssignment(554, 559)) 296 return kFALSE; 297 if (!SwapAssignment(555, 558)) 298 return kFALSE; 299 if (!SwapAssignment(556, 557)) 300 return kFALSE; 301 } 302 303 if (fRunNumber>=93283 && fRunNumber<99354) 304 { 305 if (!SwapAssignment(119, 120)) 306 return kFALSE; 307 } 308 309 if (fRunNumber>=99354 && fRunNumber<=101789) 310 { 311 if (!SwapAssignment(161, 162)) 312 return kFALSE; 313 if (!SwapAssignment(210, 263)) 314 return kFALSE; 315 } 316 317 if (fRunNumber>=88669 && fRunNumber<=101789) 318 { 319 if (!SwapAssignment(54, 55)) 320 return kFALSE; 321 } 244 322 245 323 return kTRUE;
Note:
See TracChangeset
for help on using the changeset viewer.