Changeset 6056 for trunk/MagicSoft/Mars


Ignore:
Timestamp:
01/27/05 18:20:16 (20 years ago)
Author:
gaug
Message:
*** empty log message ***
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mcalib/MCalibrationPatternDecode.cc

    r6054 r6056  
    109109    fPattern->fCLColor    = (MCalibrationPattern::CLColor_t)((pattern>>8)&0xf);
    110110   
    111     const UInt_t pulserpattern = (pattern >> 16) & 0x1ffff;
     111    const UInt_t pulserpattern = (pattern >> 16) & 0xffff;
    112112
    113     fPattern->fPulserStrength =  MCalibrationCam::kNONE;   
     113    fPattern->fPulserColor =  MCalibrationCam::kNONE;   
    114114
    115115    if ((pulserpattern & kGreenAndBlue) || (pulserpattern & kBlueAndUV) || (pulserpattern & kGreenAndUV))
     
    131131        break;
    132132      case MCalibrationCam::kGREEN:
    133         if (pattern & kSlot1Green)
     133        if (pulserpattern & kSlot1Green)
    134134          strength += 5.;
    135         if (pattern & kSlot2Green)
     135        if (pulserpattern & kSlot2Green)
    136136          strength += 2.;
    137         if (pattern & kSlot15Green)
     137        if (pulserpattern & kSlot15Green)
    138138          strength += 1.;
    139         if (pattern & kSlot16AttGreen)
     139        if (pulserpattern & kSlot16AttGreen)
    140140          strength += 0.2;
    141141        break;     
    142142      case MCalibrationCam::kBLUE:
    143         if (pattern & kSlot3Blue)
    144           strength += 5.;
    145         if (pattern & kSlot6Blue)
    146           strength += 5.;
    147         if (pattern & kSlot7Blue)
    148           strength += 5.;
    149         if (pattern & kSlot8Blue)
     143        if (pulserpattern & kSlot3Blue)
     144          strength += 5.1;
     145        if (pulserpattern & kSlot6Blue)
     146          strength += 5.2;
     147        if (pulserpattern & kSlot7Blue)
     148          strength += 5.4;
     149        if (pulserpattern & kSlot8Blue)
    150150          strength += 2.;
    151         if (pattern & kSlot9AttBlue)
    152           strength += 0.2;
    153         if (pattern & kSlot10Blue)
     151        if (pulserpattern & kSlot9AttBlue)
     152          strength += 0.25;
     153        if (pulserpattern & kSlot10Blue)
    154154          strength += 0.;
    155         if (pattern & kSlot11Blue)
     155        if (pulserpattern & kSlot11Blue)
    156156          strength += 1.;
    157         if (pattern & kSlot14Blue)
    158           strength += 5.;
     157        if (pulserpattern & kSlot14Blue)
     158          strength += 5.8;
    159159        break;     
    160160      case MCalibrationCam::kUV:
    161         if (pattern & kSlot4UV)
     161        if (pulserpattern & kSlot4UV)
    162162          strength += 1.;
    163         if (pattern & kSlot5UV)
     163        if (pulserpattern & kSlot5UV)
    164164          strength += 2.;
    165         if (pattern & kSlot12UV)
    166           strength += 5.;
    167         if (pattern & kSlot13UV)
    168           strength += 5.;
    169       break;     
     165        if (pulserpattern & kSlot12UV)
     166          strength += 5.1;
     167        if (pulserpattern & kSlot13UV)
     168          strength += 5.2;
     169        break;     
    170170      case MCalibrationCam::kCT1:
    171171        strength = 20.;
Note: See TracChangeset for help on using the changeset viewer.