Ignore:
Timestamp:
10/16/01 10:42:09 (23 years ago)
Author:
tbretz
Message:
*** empty log message ***
File:
1 edited

Legend:

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

    r749 r963  
    2424\* ======================================================================== */
    2525
     26///////////////////////////////////////////////////////////////////////
     27//
     28// MGeomPix
     29//
     30// This container stores the geometry (position) information of
     31// a single pixel together with the information about next neighbors.
     32//
     33///////////////////////////////////////////////////////////////////////
     34
    2635#include "MGeomPix.h"
    2736
    2837#include "MLog.h"
    2938
    30 ClassImp(MGeomPix)
     39ClassImp(MGeomPix);
    3140
     41// --------------------------------------------------------------------------
     42//
     43// Initialiyes one pixel
     44//
    3245MGeomPix::MGeomPix(Float_t x, Float_t y, Float_t r) : fX(x), fY(y), fR(r)
    3346{
     
    3548}
    3649
     50// --------------------------------------------------------------------------
     51//
     52// Initialiyes Next Neighbors.
     53//
     54// WARNING: This function is public, but it is not ment for user access.
     55// It should only be used from geometry classes (like MGeomCam)
     56//
    3757void MGeomPix::SetNeighbors(Short_t i0, Short_t i1, Short_t i2,
    3858                            Short_t i3, Short_t i4, Short_t i5)
     
    5373}
    5474
    55 
     75// --------------------------------------------------------------------------
     76//
     77// Print the geometry information of one pixel.
     78//
    5679void MGeomPix::Print(Option_t *opt)
    5780{
Note: See TracChangeset for help on using the changeset viewer.