Ignore:
Timestamp:
02/27/04 20:07:20 (21 years ago)
Author:
moralejo
Message:
*** empty log message ***
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/manalysis/MMcCalibrationUpdate.cc

    r3265 r3344  
    8181
    8282    fFillCalibrationCam = kTRUE;
    83 
     83    fOuterPixelsGainScaling = kTRUE;
    8484}
    8585
     
    209209
    210210    //
    211     // Set the ADC to photons conversion factor for outer pixels:
    212     //
    213     fADC2PhOuter = fADC2PhInner * (fAmplitude / fAmplitudeOuter);
     211    // Set the ADC to photons conversion factor for outer pixels.
     212    // One can choose not to apply the known (in MC) gain factor between
     213    // inner and outer pixels, (fOuterPixelsGainScaling = kFALSE),
     214    // which may be useful for display purposes.
     215    //
     216
     217    if (fOuterPixelsGainScaling)
     218      fADC2PhOuter = fADC2PhInner * (fAmplitude / fAmplitudeOuter);
     219    else
     220      fADC2PhOuter = fADC2PhInner;
     221
    214222
    215223    const int num = fCalCam->GetSize();
Note: See TracChangeset for help on using the changeset viewer.