Ignore:
Timestamp:
10/24/01 14:51:21 (23 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars/mgui
Files:
6 edited

Legend:

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

    r977 r986  
    120120//  Prints the Geometry information of all pixels in the camera
    121121//
    122 void MGeomCam::Print(Option_t *)
     122void MGeomCam::Print(Option_t *) const
    123123{
    124124    //
  • trunk/MagicSoft/Mars/mgui/MGeomCam.h

    r977 r986  
    3535    MGeomPix &operator[](Int_t i) const;
    3636
    37     virtual void Print(Option_t *opt=NULL);
     37    virtual void Print(Option_t *opt=NULL) const;
    3838
    3939    ClassDef(MGeomCam, 1)  // Geometry base class for the camera
  • trunk/MagicSoft/Mars/mgui/MGeomPix.cc

    r963 r986  
    7777// Print the geometry information of one pixel.
    7878//
    79 void MGeomPix::Print(Option_t *opt)
     79void MGeomPix::Print(Option_t *opt) const
    8080{
    8181    //   information about a pixel
  • trunk/MagicSoft/Mars/mgui/MGeomPix.h

    r961 r986  
    2020    MGeomPix(Float_t x=0, Float_t y=0, Float_t r=0);
    2121
    22     void Print(Option_t *opt=NULL);
     22    void Print(Option_t *opt=NULL) const;
    2323
    2424    void Set (Float_t x, Float_t y, Float_t r) { fX=x; fY=y; fR=r; }
  • trunk/MagicSoft/Mars/mgui/MHexagon.cc

    r959 r986  
    243243//  print/dump this hexagon with its attributes
    244244//
    245 void MHexagon::Print(Option_t *)
     245void MHexagon::Print(Option_t *) const
    246246{
    247247    cout << GetName() << ": X=" << fX << " Y=" << fY << "R=" << fD << endl;
  • trunk/MagicSoft/Mars/mgui/MHexagon.h

    r961 r986  
    5050    virtual void  Paint(Option_t *Option="");
    5151    virtual void  PaintHexagon(Float_t x, Float_t y, Float_t d);
    52     virtual void  Print(Option_t *Option="");
     52    virtual void  Print(Option_t *Option="") const;
    5353
    5454    ClassDef(MHexagon, 0)    // A hexagon for MAGIC
Note: See TracChangeset for help on using the changeset viewer.