Changeset 986 for trunk/MagicSoft/Mars/mgui
- Timestamp:
- 10/24/01 14:51:21 (23 years ago)
- Location:
- trunk/MagicSoft/Mars/mgui
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mgui/MGeomCam.cc
r977 r986 120 120 // Prints the Geometry information of all pixels in the camera 121 121 // 122 void MGeomCam::Print(Option_t *) 122 void MGeomCam::Print(Option_t *) const 123 123 { 124 124 // -
trunk/MagicSoft/Mars/mgui/MGeomCam.h
r977 r986 35 35 MGeomPix &operator[](Int_t i) const; 36 36 37 virtual void Print(Option_t *opt=NULL) ;37 virtual void Print(Option_t *opt=NULL) const; 38 38 39 39 ClassDef(MGeomCam, 1) // Geometry base class for the camera -
trunk/MagicSoft/Mars/mgui/MGeomPix.cc
r963 r986 77 77 // Print the geometry information of one pixel. 78 78 // 79 void MGeomPix::Print(Option_t *opt) 79 void MGeomPix::Print(Option_t *opt) const 80 80 { 81 81 // information about a pixel -
trunk/MagicSoft/Mars/mgui/MGeomPix.h
r961 r986 20 20 MGeomPix(Float_t x=0, Float_t y=0, Float_t r=0); 21 21 22 void Print(Option_t *opt=NULL) ;22 void Print(Option_t *opt=NULL) const; 23 23 24 24 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 243 243 // print/dump this hexagon with its attributes 244 244 // 245 void MHexagon::Print(Option_t *) 245 void MHexagon::Print(Option_t *) const 246 246 { 247 247 cout << GetName() << ": X=" << fX << " Y=" << fY << "R=" << fD << endl; -
trunk/MagicSoft/Mars/mgui/MHexagon.h
r961 r986 50 50 virtual void Paint(Option_t *Option=""); 51 51 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; 53 53 54 54 ClassDef(MHexagon, 0) // A hexagon for MAGIC
Note:
See TracChangeset
for help on using the changeset viewer.