Changeset 17783
- Timestamp:
- 05/05/14 09:53:31 (11 years ago)
- Location:
- trunk/Mars/mcalib
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Mars/mcalib/MCalibrationCam.cc
r9374 r17783 354 354 // the area index exceeds the initialized array. 355 355 // 356 constInt_t MCalibrationCam::GetNumUnsuitable( const Int_t aidx ) const356 Int_t MCalibrationCam::GetNumUnsuitable( const Int_t aidx ) const 357 357 { 358 358 if (aidx < 0) … … 372 372 // the area index exceeds the initialized array. 373 373 // 374 constInt_t MCalibrationCam::GetNumUnreliable( const Int_t aidx ) const374 Int_t MCalibrationCam::GetNumUnreliable( const Int_t aidx ) const 375 375 { 376 376 if (aidx < 0) … … 390 390 // the area index exceeds the initialized array. 391 391 // 392 constFloat_t MCalibrationCam::GetNumHiGainFADCSlices( const Int_t aidx ) const392 Float_t MCalibrationCam::GetNumHiGainFADCSlices( const Int_t aidx ) const 393 393 { 394 394 if (aidx < 0) … … 403 403 // the area index exceeds the initialized array. 404 404 // 405 constFloat_t MCalibrationCam::GetNumLoGainFADCSlices( const Int_t aidx ) const405 Float_t MCalibrationCam::GetNumLoGainFADCSlices( const Int_t aidx ) const 406 406 { 407 407 if (aidx < 0) … … 418 418 // independently if the MCalibrationPix is filled with values or not. 419 419 // 420 constInt_t MCalibrationCam::GetAverageAreas() const420 Int_t MCalibrationCam::GetAverageAreas() const 421 421 { 422 422 return fAverageAreas->GetSize(); … … 428 428 // independently if the MCalibrationPix is filled with values or not. 429 429 // 430 constInt_t MCalibrationCam::GetAverageSectors() const430 Int_t MCalibrationCam::GetAverageSectors() const 431 431 { 432 432 return fAverageSectors->GetSize(); … … 457 457 // independently if the MCalibrationPix is filled with values or not. 458 458 // 459 constInt_t MCalibrationCam::GetSize() const459 Int_t MCalibrationCam::GetSize() const 460 460 { 461 461 return fPixels->GetSize(); -
trunk/Mars/mcalib/MCalibrationCam.h
r7200 r17783 70 70 71 71 // Getters 72 constInt_t GetAverageAreas () const;72 Int_t GetAverageAreas () const; 73 73 MCalibrationPix &GetAverageArea ( const UInt_t i ); 74 74 const MCalibrationPix &GetAverageArea ( const UInt_t i ) const; 75 75 MBadPixelsPix &GetAverageBadArea ( const UInt_t i ); 76 76 const MBadPixelsPix &GetAverageBadArea ( const UInt_t i ) const; 77 const Int_t GetAverageSectors () const;77 Int_t GetAverageSectors () const; 78 78 MCalibrationPix &GetAverageSector ( const UInt_t i ); 79 79 const MCalibrationPix &GetAverageSector ( const UInt_t i ) const; 80 80 MBadPixelsPix &GetAverageBadSector ( const UInt_t i ); 81 81 const MBadPixelsPix &GetAverageBadSector ( const UInt_t i ) const; 82 constFloat_t GetNumHiGainFADCSlices ( const Int_t aidx=0 ) const;83 constFloat_t GetNumLoGainFADCSlices ( const Int_t aidx=0 ) const;84 constInt_t GetNumUnsuitable ( const Int_t aidx=-1) const;85 constInt_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; 86 86 87 87 Bool_t GetPixelContent ( Double_t &val, Int_t idx, const MGeomCam &cam, 88 88 Int_t type=0 ) const; 89 constPulserColor_t GetPulserColor () const { return fPulserColor; }90 constInt_t GetRunNumer () const { return fRunNumber; }91 constInt_t GetSize () const;89 PulserColor_t GetPulserColor () const { return fPulserColor; } 90 Int_t GetRunNumer () const { return fRunNumber; } 91 Int_t GetSize () const; 92 92 93 93 MCalibrationPix &operator[] ( UInt_t i );
Note:
See TracChangeset
for help on using the changeset viewer.