Ignore:
Timestamp:
10/16/02 16:27:25 (22 years ago)
Author:
tbretz
Message:
*** empty log message ***
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/manalysis/MPedestalCam.cc

    r1540 r1544  
    7171// Set the size of the camera
    7272//
    73 inline void MPedestalCam::InitSize(const UInt_t i)
     73void MPedestalCam::InitSize(const UInt_t i)
    7474{
    7575    fArray->ExpandCreate(i);
     
    8080// Get the size of the MPedestalCam
    8181//
    82 inline Int_t MPedestalCam::GetSize() const
     82Int_t MPedestalCam::GetSize() const
    8383{
    8484    return fArray->GetEntries();
     
    8989// Get i-th pixel (pixel number)
    9090//
    91 inline MPedestalPix &MPedestalCam::operator[](Int_t i)
     91MPedestalPix &MPedestalCam::operator[](Int_t i)
    9292{
    9393    return *(MPedestalPix*)fArray->UncheckedAt(i);
     
    9898// Get i-th pixel (pixel number)
    9999//
    100 inline MPedestalPix &MPedestalCam::operator[](Int_t i) const
     100MPedestalPix &MPedestalCam::operator[](Int_t i) const
    101101{
    102102    return *(MPedestalPix*)fArray->UncheckedAt(i);
     
    117117}
    118118
    119 void MPedestalCam::Print(Option_t *o="") const
     119void MPedestalCam::Print(Option_t *o) const
    120120{
    121121    *fLog << all << GetDescriptor() << ":" << endl;
Note: See TracChangeset for help on using the changeset viewer.