Changeset 1544


Ignore:
Timestamp:
10/16/02 16:27:25 (22 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
3 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;
  • trunk/MagicSoft/Mars/mgeom/MGeomCam.cc

    r1540 r1544  
    115115//  the id 0 to scale variables with the pixel size.
    116116//
    117 inline Float_t MGeomCam::GetPixRatio(Int_t i) const
     117Float_t MGeomCam::GetPixRatio(Int_t i) const
    118118{
    119119    return (*this)[0].GetA()/(*this)[i].GetA();
  • trunk/MagicSoft/Mars/mgui/MCamDisplay.h

    r1540 r1544  
    5858    void  SetPixColorLevel(const MCerPhotPix &pix, Float_t lvl1, Float_t lvl2);
    5959    void  SetPixColorError(const MCerPhotPix &pix, const Int_t i, Float_t min, Float_t max);
    60     void  SetPixColorPedestal(const MPedestalPix &pix, Int_t i, Float_t min, Float_t max);
     60    void  SetPixColorPedestal(const MPedestalPix &pix, const Int_t i, Float_t min, Float_t max);
    6161    Int_t GetColor(Float_t val, Float_t min, Float_t max);
    6262
Note: See TracChangeset for help on using the changeset viewer.