Ignore:
Timestamp:
12/20/03 13:46:17 (21 years ago)
Author:
tbretz
Message:
*** empty log message ***
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/manalysis/MExtractedSignalCam.h

    r2699 r2728  
    77
    88class TClonesArray;
    9 
    10 class MGeomCam;
    119class MExtractedSignalPix;
    1210
     
    1614    TClonesArray *fArray; // FIXME: Change TClonesArray away from a pointer?
    1715
     16    // FIXME: Is it necessary to store this information for each event?
    1817    Byte_t fNumUsedHiGainFADCSlices;
    1918    Byte_t fNumUsedLoGainFADCSlices;
     
    2423    Byte_t fLastUsedSliceHiGain;
    2524    Byte_t fLastUsedSliceLoGain;
    26 
    2725
    2826public:
     
    4745
    4846    void   SetNumUsedFADCSlices(Byte_t numh, Byte_t firsth, Byte_t lasth,
    49                         Byte_t numl, Byte_t firstl, Byte_t lastl)   
    50                                            {
    51                                              fNumUsedHiGainFADCSlices = numh;
    52                                              fFirstUsedSliceHiGain    = firsth;
    53                                              fLastUsedSliceHiGain     = lasth;
    54                                              fNumUsedLoGainFADCSlices = numl; 
    55                                              fFirstUsedSliceLoGain    = firstl;
    56                                              fLastUsedSliceLoGain     = lastl;
    57                                            }
     47                                Byte_t numl, Byte_t firstl, Byte_t lastl)
     48    {
     49        // FIXME: Calculate the number of used slices from first/last
     50        //        to make sure, that the stored values are always
     51        //        consistent!
     52        fNumUsedHiGainFADCSlices = numh;
     53        fFirstUsedSliceHiGain    = firsth;
     54        fLastUsedSliceHiGain     = lasth;
     55        fNumUsedLoGainFADCSlices = numl;
     56        fFirstUsedSliceLoGain    = firstl;
     57        fLastUsedSliceLoGain     = lastl;
     58    }
    5859
    5960    MExtractedSignalPix &operator[](Int_t i);
Note: See TracChangeset for help on using the changeset viewer.