Ignore:
Timestamp:
05/29/02 11:14:45 (22 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars/mgui
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mgui/MGeomCam.cc

    r1330 r1334  
    5050//
    5151MGeomCam::MGeomCam(UInt_t npix, Float_t dist, const char *name, const char *title)
    52     : fNumPixels(npix), fCamDist(dist), fMm2Deg(kRad2Deg/(dist*1000))
     52    : fNumPixels(npix), fCamDist(dist), fConvMm2Deg(kRad2Deg/(dist*1000))
    5353{
    5454    fName  = name  ? name  : "MGeomCam";
  • trunk/MagicSoft/Mars/mgui/MGeomCam.h

    r1216 r1334  
    1818
    1919    Float_t  fCamDist;    // [m] Average distance of the camera from the mirror
    20     Float_t  fMm2Deg;    // conversion factor to convert mm in the camera plain into degrees
     20    Float_t  fConvMm2Deg; // conversion factor to convert mm in the camera plain into degrees
    2121
    2222    TObjArray *fPixels;   // Array of singel pixels storing the geometry
     
    3232
    3333    Float_t GetCameraDist() const { return fCamDist; }
    34     Float_t GetConvMm2Deg() const { return fMm2Deg; }
     34    Float_t GetConvMm2Deg() const { return fConvMm2Deg; }
    3535
    3636    UInt_t  GetNumPixels() const { return fNumPixels; }
Note: See TracChangeset for help on using the changeset viewer.