#include <CellDescriptor.h>
Public Methods | |
CellDescriptor () | |
Constructor taking default eta/phi values. | |
CellDescriptor (double eta, double phi) | |
Constructor taking supplied eta/phi values. | |
CellDescriptor (const CellDescriptor &otherCellDescriptor) | |
Copy constructor. | |
CellDescriptor & | operator= (const CellDescriptor &otherCellDescriptor) |
Assignment operator. | |
virtual | ~CellDescriptor () |
double | eta () const |
Gives eta position of cell. | |
double | phi () const |
Gives phi position of cell. | |
Private Attributes | |
double | m_eta |
Eta position of cell. | |
double | m_phi |
Phi position of cell. |
Definition at line 14 of file CellDescriptor.h.
|
Constructor taking default eta/phi values.
Definition at line 19 of file CellDescriptor.h.
|
|
Constructor taking supplied eta/phi values.
Definition at line 21 of file CellDescriptor.h. References eta(), m_eta, m_phi, and phi().
|
|
Copy constructor.
Definition at line 23 of file CellDescriptor.h.
00023 {*this = otherCellDescriptor;}
|
|
Definition at line 32 of file CellDescriptor.h.
00032 {} |
|
Gives eta position of cell.
Definition at line 36 of file CellDescriptor.h. References m_eta. Referenced by CellDescriptor(), Atlfast::Cell::eta(), Atlfast::Cell::momentum(), and operator=().
00036 { return m_eta; } |
|
Assignment operator.
Definition at line 25 of file CellDescriptor.h. References eta(), m_eta, m_phi, and phi().
|
|
Gives phi position of cell.
Definition at line 40 of file CellDescriptor.h. References m_phi. Referenced by CellDescriptor(), Atlfast::Cell::momentum(), operator=(), and Atlfast::Cell::phi().
00040 { return m_phi; } |
|
Eta position of cell.
Definition at line 49 of file CellDescriptor.h. Referenced by CellDescriptor(), eta(), and operator=(). |
|
Phi position of cell.
Definition at line 53 of file CellDescriptor.h. Referenced by CellDescriptor(), operator=(), and phi(). |