Ignore:
Timestamp:
04/04/04 19:06:45 (20 years ago)
Author:
gaug
Message:
*** empty log message ***
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mcalib/MCalibrationQEPix.h

    r3554 r3644  
    22#define MARS_MCalibrationQEPix
    33
    4 #ifndef MARS_MParContainer
    5 #include "MParContainer.h"
     4#ifndef MARS_MCalibrationPix
     5#include "MCalibrationPix.h"
    66#endif
    77
    8 class MCalibrationQEPix : public MParContainer
     8class MCalibrationQEPix : public MCalibrationPix
    99{
    1010private:
    1111
    12   Int_t fPixId;
    13 
    14   Float_t fQEGreen;
    15   Float_t fQEBlue;
    16   Float_t fQEUV;
    17   Float_t fQECT1;
     12  Float_t fQEGreen;          // The calibrated quantum efficiency at 520 nm
     13  Float_t fQEBlue;           // The calibrated quantum efficiency at 460 nm
     14  Float_t fQEUV;             // The calibrated quantum efficiency at 370 nm
     15  Float_t fQECT1;            // The calibrated quantum efficiency at 370 nm
    1816 
    19   Float_t fQEGreenErr;
    20   Float_t fQEBlueErr;
    21   Float_t fQEUVErr;
    22   Float_t fQECT1Err;   
     17  Float_t fQEGreenErr;       // The uncertainty about the calibrated QE at 520 nm
     18  Float_t fQEBlueErr;        // The uncertainty about the calibrated QE at 460 nm
     19  Float_t fQEUVErr;          // The uncertainty about the calibrated QE at 370 nm
     20  Float_t fQECT1Err;         // The uncertainty about the calibrated QE at 370 nm
    2321 
    24   Byte_t fFlags;
    25 
    26   enum { kExcluded, kQEValid };
    27 
    2822public:
    2923
     
    3731  void SetQEErr( const Float_t qeerr, const PulserColor_t col );
    3832
    39   void SetExcluded            (  const Bool_t b = kTRUE );
    40   void SetQEValid             (  const Bool_t b = kTRUE );
    41 
    4233  // Getters
    4334  Float_t GetQE   ( const PulserColor_t col )  const;
    4435  Float_t GetQEErr( const PulserColor_t col )  const;
    45   Int_t   GetPixId()          const;
    46 
    47   Bool_t IsExcluded()         const;
    48   Bool_t IsQEValid()          const;
    49 
    50   void SetPixId(const Int_t i)     { fPixId = i; }
    5136
    5237  // Miscellaneous
    5338  Bool_t CheckQEValidity();
    5439
    55   ClassDef(MCalibrationQEPix, 1)        // Container for calibrated Quantrum Efficieny of one pixel
     40  ClassDef(MCalibrationQEPix, 1)        // Container for Quantum Efficieny Calibration Results Pixel
    5641};
    5742
Note: See TracChangeset for help on using the changeset viewer.