Changeset 1334 for trunk/MagicSoft/Mars/mgui
- Timestamp:
- 05/29/02 11:14:45 (23 years ago)
- Location:
- trunk/MagicSoft/Mars/mgui
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mgui/MGeomCam.cc
r1330 r1334 50 50 // 51 51 MGeomCam::MGeomCam(UInt_t npix, Float_t dist, const char *name, const char *title) 52 : fNumPixels(npix), fCamDist(dist), f Mm2Deg(kRad2Deg/(dist*1000))52 : fNumPixels(npix), fCamDist(dist), fConvMm2Deg(kRad2Deg/(dist*1000)) 53 53 { 54 54 fName = name ? name : "MGeomCam"; -
trunk/MagicSoft/Mars/mgui/MGeomCam.h
r1216 r1334 18 18 19 19 Float_t fCamDist; // [m] Average distance of the camera from the mirror 20 Float_t f Mm2Deg;// conversion factor to convert mm in the camera plain into degrees20 Float_t fConvMm2Deg; // conversion factor to convert mm in the camera plain into degrees 21 21 22 22 TObjArray *fPixels; // Array of singel pixels storing the geometry … … 32 32 33 33 Float_t GetCameraDist() const { return fCamDist; } 34 Float_t GetConvMm2Deg() const { return f Mm2Deg; }34 Float_t GetConvMm2Deg() const { return fConvMm2Deg; } 35 35 36 36 UInt_t GetNumPixels() const { return fNumPixels; }
Note:
See TracChangeset
for help on using the changeset viewer.