HG-MD  1
Public Member Functions | Public Attributes | Friends
Cell Class Reference

This is the cell class used by the HGrid. More...

#include <HGRID_base.h>

List of all members.

Public Member Functions

 Cell ()
 Cell (int px, int py, int pz, int pl)

Public Attributes

int x
int y
int z
int l

Friends

std::ostream & operator<< (std::ostream &os, const Cell &cell)

Detailed Description

This is the cell class used by the HGrid.


Constructor & Destructor Documentation

Cell::Cell ( ) [inline]
{ }
Cell::Cell ( int  px,
int  py,
int  pz,
int  pl 
) [inline]

References l, x, y, and z.

{ x = px; y = py; z = pz; l = pl; }

Friends And Related Function Documentation

std::ostream& operator<< ( std::ostream &  os,
const Cell cell 
) [friend]
        {
        os << cell.x << ' ' << cell.y << ' ' << cell.z << ' ' << cell.l;
        return os;
        }

Member Data Documentation

int Cell::l
int Cell::x
int Cell::y
int Cell::z

The documentation for this class was generated from the following file:
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines