Ignore:
Timestamp:
02/19/09 22:59:24 (16 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars/mgeom
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mgeom/MGeomCamMagic.cc

    r9259 r9356  
    1919!   Author(s): Harald Kornmayer 1/2001
    2020!
    21 !   Copyright: MAGIC Software Development, 2000-2003
     21!   Copyright: MAGIC Software Development, 2000-2008
    2222!
    2323!
     
    4545MGeomCamMagic::MGeomCamMagic(const char *name)
    4646    : MGeomCam(577, 17, name, "Geometry information of Magic Camera")
     47{
     48    CreateCam();
     49    CreateNN();
     50    InitGeometry();
     51}
     52
     53// --------------------------------------------------------------------------
     54//
     55//  Magic camera has 577 pixels. For geometry and Next Neighbor info see
     56//  CreateCam and CreateNN. You can give the distance dist from
     57//  the mirror center to the focal plane.
     58//
     59MGeomCamMagic::MGeomCamMagic(Double_t dist, const char *name)
     60    : MGeomCam(577, dist, name, "Geometry information of Magic Camera")
    4761{
    4862    CreateCam();
  • trunk/MagicSoft/Mars/mgeom/MGeomCamMagic.h

    r9259 r9356  
    1414public:
    1515    MGeomCamMagic(const char *name=NULL);
     16    MGeomCamMagic(Double_t dist, const char *name=NULL);
    1617
    1718    Bool_t HitFrame(MQuaternion p, const MQuaternion &u) const;
Note: See TracChangeset for help on using the changeset viewer.