Changeset 17783


Ignore:
Timestamp:
05/05/14 09:53:31 (11 years ago)
Author:
tbretz
Message:
Get rid of a few compiler warnings about obsolete const qualifiers.
Location:
trunk/Mars/mcalib
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Mars/mcalib/MCalibrationCam.cc

    r9374 r17783  
    354354// the area index exceeds the initialized array.
    355355//
    356 const Int_t MCalibrationCam::GetNumUnsuitable( const Int_t  aidx ) const
     356Int_t MCalibrationCam::GetNumUnsuitable( const Int_t  aidx ) const
    357357{
    358358  if (aidx < 0)
     
    372372// the area index exceeds the initialized array.
    373373//
    374 const Int_t MCalibrationCam::GetNumUnreliable( const Int_t  aidx ) const
     374Int_t MCalibrationCam::GetNumUnreliable( const Int_t  aidx ) const
    375375{
    376376  if (aidx < 0)
     
    390390// the area index exceeds the initialized array.
    391391//
    392 const Float_t MCalibrationCam::GetNumHiGainFADCSlices( const Int_t  aidx ) const
     392Float_t MCalibrationCam::GetNumHiGainFADCSlices( const Int_t  aidx ) const
    393393{
    394394  if (aidx < 0)
     
    403403// the area index exceeds the initialized array.
    404404//
    405 const Float_t MCalibrationCam::GetNumLoGainFADCSlices( const Int_t  aidx ) const
     405Float_t MCalibrationCam::GetNumLoGainFADCSlices( const Int_t  aidx ) const
    406406{
    407407  if (aidx < 0)
     
    418418// independently if the MCalibrationPix is filled with values or not.
    419419//
    420 const Int_t MCalibrationCam::GetAverageAreas() const
     420Int_t MCalibrationCam::GetAverageAreas() const
    421421{
    422422  return fAverageAreas->GetSize();
     
    428428// independently if the MCalibrationPix is filled with values or not.
    429429//
    430 const Int_t MCalibrationCam::GetAverageSectors() const
     430Int_t MCalibrationCam::GetAverageSectors() const
    431431{
    432432  return fAverageSectors->GetSize();
     
    457457// independently if the MCalibrationPix is filled with values or not.
    458458//
    459 const Int_t MCalibrationCam::GetSize() const
     459Int_t MCalibrationCam::GetSize() const
    460460{
    461461  return fPixels->GetSize();
  • trunk/Mars/mcalib/MCalibrationCam.h

    r7200 r17783  
    7070
    7171  // Getters
    72   const Int_t            GetAverageAreas        ()                     const;
     72        Int_t            GetAverageAreas        ()                     const;
    7373        MCalibrationPix &GetAverageArea         ( const UInt_t i     );
    7474  const MCalibrationPix &GetAverageArea         ( const UInt_t i     ) const;
    7575        MBadPixelsPix   &GetAverageBadArea      ( const UInt_t i     );
    7676  const MBadPixelsPix   &GetAverageBadArea      ( const UInt_t i     ) const;
    77   const Int_t            GetAverageSectors      ()                     const; 
     77        Int_t            GetAverageSectors      ()                     const;
    7878        MCalibrationPix &GetAverageSector       ( const UInt_t i     );
    7979  const MCalibrationPix &GetAverageSector       ( const UInt_t i     ) const; 
    8080        MBadPixelsPix   &GetAverageBadSector    ( const UInt_t i     );
    8181  const MBadPixelsPix   &GetAverageBadSector    ( const UInt_t i     ) const;
    82   const Float_t          GetNumHiGainFADCSlices ( const Int_t aidx=0 ) const;
    83   const Float_t          GetNumLoGainFADCSlices ( const Int_t aidx=0 ) const;
    84   const Int_t            GetNumUnsuitable       ( const Int_t aidx=-1) const;
    85   const Int_t            GetNumUnreliable       ( const Int_t aidx=-1) const;
     82        Float_t          GetNumHiGainFADCSlices ( const Int_t aidx=0 ) const;
     83        Float_t          GetNumLoGainFADCSlices ( const Int_t aidx=0 ) const;
     84        Int_t            GetNumUnsuitable       ( const Int_t aidx=-1) const;
     85        Int_t            GetNumUnreliable       ( const Int_t aidx=-1) const;
    8686
    8787        Bool_t           GetPixelContent        ( Double_t &val, Int_t idx, const MGeomCam &cam,
    8888                                                  Int_t type=0       ) const;
    89   const PulserColor_t    GetPulserColor         ()                     const { return fPulserColor; }
    90   const Int_t            GetRunNumer            ()                     const { return fRunNumber;   }
    91   const Int_t            GetSize                ()                     const;
     89        PulserColor_t    GetPulserColor         ()                     const { return fPulserColor; }
     90        Int_t            GetRunNumer            ()                     const { return fRunNumber;   }
     91        Int_t            GetSize                ()                     const;
    9292
    9393        MCalibrationPix &operator[]             ( UInt_t i );
Note: See TracChangeset for help on using the changeset viewer.