source: trunk/MagicSoft/Mars/mgui/MGeomPix.cc@ 698

Last change on this file since 698 was 669, checked in by tbretz, 24 years ago
*** empty log message ***
  • Property svn:executable set to *
File size: 351 bytes
Line 
1#include "MGeomPix.h"
2
3#include "MLog.h"
4
5ClassImp(MGeomPix)
6
7MGeomPix::MGeomPix(Float_t x, Float_t y, Float_t r ) : fX(x), fY(y), fR(r)
8{
9 // default constructor
10}
11
12
13void MGeomPix::Print(Option_t *opt)
14{
15 // information about a pixel
16 gLog << "MPixGeom: x= " << fX
17 << " y= " << fY
18 << " r= " << fR
19 << endl ;
20}
21
Note: See TracBrowser for help on using the repository browser.