Ignore:
Timestamp:
04/01/04 14:52:32 (21 years ago)
Author:
gaug
Message:
*** empty log message ***
File:
1 edited

Legend:

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

    r3623 r3624  
    3333 
    3434  TClonesArray *fPixels;             //-> Array of MCalibrationChargePix, one per pixel
    35   TClonesArray *fAveragePixels;      //-> Array of MCalibrationChargePix, one per pixel area
    36   TClonesArray *fAverageBadPixels;   //-> Array of MBadPixelsPix, one per pixel area
     35  TClonesArray *fAverageAreas;       //-> Array of MCalibrationChargePix, one per pixel area
     36  TClonesArray *fAverageSectors;     //-> Array of MCalibrationChargePix, one per camera sector
     37  TClonesArray *fAverageBadAreas;    //-> Array of MBadPixelsPix, one per pixel area
     38  TClonesArray *fAverageBadSectors;  //-> Array of MBadPixelsPix, one per camera sector
    3739 
    3840  TH1D* fOffsets;                    //!
     
    6264  void Clear(    Option_t *o="" );
    6365  void InitSize( const UInt_t i );
    64   void InitAverageSize( const UInt_t i );
     66  void InitAverageAreas(  const UInt_t i );
     67  void InitAverageSectors( const UInt_t i );
    6568
    6669  // Setters   
     
    7780  // Getters
    7881  Int_t   GetSize()               const;
    79   Int_t   GetAverageSize()        const; 
     82  Int_t   GetAverageAreas()       const;
     83  Int_t   GetAverageSectors()     const; 
    8084
    8185  Bool_t  GetConversionFactorFFactor(    Int_t ipx, Float_t &mean, Float_t &err, Float_t &sigma );
     
    101105  const MCalibrationChargePix &operator[](UInt_t i) const;
    102106
    103   MCalibrationChargePix &GetAveragePix(UInt_t i);
    104   const MCalibrationChargePix &GetAveragePix(UInt_t i) const;
     107  MCalibrationChargePix &GetAverageArea(UInt_t i);
     108  const MCalibrationChargePix &GetAverageArea(UInt_t i) const;
    105109
    106   MBadPixelsPix &GetAverageBadPix(UInt_t i);
    107   const MBadPixelsPix &GetAverageBadPix(UInt_t i) const;
     110  MBadPixelsPix &GetAverageBadArea(UInt_t i);
     111  const MBadPixelsPix &GetAverageBadArea(UInt_t i) const;
     112
     113  MCalibrationChargePix &GetAverageSector(UInt_t i);
     114  const MCalibrationChargePix &GetAverageSector(UInt_t i) const;
     115
     116  MBadPixelsPix &GetAverageBadSector(UInt_t i);
     117  const MBadPixelsPix &GetAverageBadSector(UInt_t i) const;
    108118
    109119  // Prints
Note: See TracChangeset for help on using the changeset viewer.