#include <CellDescriptor.h>
Public Member Functions | |
CellDescriptor () | |
CellDescriptor (double eta, double phi) | |
CellDescriptor (const CellDescriptor &otherCellDescriptor) | |
CellDescriptor & | operator= (const CellDescriptor &otherCellDescriptor) |
virtual | ~CellDescriptor () |
double | eta () const |
double | phi () const |
Private Attributes | |
double | m_eta |
double | m_phi |
Definition at line 14 of file CellDescriptor.h.
Atlfast::CellDescriptor::CellDescriptor | ( | ) | [inline] |
Atlfast::CellDescriptor::CellDescriptor | ( | double | eta, | |
double | phi | |||
) | [inline] |
Atlfast::CellDescriptor::CellDescriptor | ( | const CellDescriptor & | otherCellDescriptor | ) | [inline] |
virtual Atlfast::CellDescriptor::~CellDescriptor | ( | ) | [inline, virtual] |
CellDescriptor& Atlfast::CellDescriptor::operator= | ( | const CellDescriptor & | otherCellDescriptor | ) | [inline] |
Assignment operator
Definition at line 25 of file CellDescriptor.h.
00026 { 00027 m_eta = otherCellDescriptor.eta(); 00028 m_phi = otherCellDescriptor.phi(); 00029 return *this; 00030 }
double Atlfast::CellDescriptor::eta | ( | ) | const [inline] |
double Atlfast::CellDescriptor::phi | ( | ) | const [inline] |
double Atlfast::CellDescriptor::m_eta [private] |
Eta position of cell
Definition at line 49 of file CellDescriptor.h.
double Atlfast::CellDescriptor::m_phi [private] |
Phi position of cell
Definition at line 53 of file CellDescriptor.h.