Public Member Functions | |
Cluster () | |
~Cluster () | |
int | chanID () const |
int | size () const |
int | threshold () const |
unsigned | center () const |
void | set (int i) |
Public Attributes | |
unsigned | m_chanID: 24 |
unsigned | m_size: 1 |
unsigned | m_threshold: 1 |
unsigned | m_center: 3 |
unsigned | m_pad: 3 |
Definition at line 9 of file TestFastClusterContainer.cpp.
ContTests::Cluster::Cluster | ( | ) | [inline] |
Definition at line 15 of file TestFastClusterContainer.cpp.
00015 { 00016 *(int*)this = 0; 00017 s_cnt[0]++; 00018 }
ContTests::Cluster::~Cluster | ( | ) | [inline] |
Definition at line 19 of file TestFastClusterContainer.cpp.
00019 { // Note: non virtual ! 00020 s_cnt[1]++; 00021 }
int ContTests::Cluster::chanID | ( | ) | const [inline] |
int ContTests::Cluster::size | ( | ) | const [inline] |
int ContTests::Cluster::threshold | ( | ) | const [inline] |
unsigned ContTests::Cluster::center | ( | ) | const [inline] |
void ContTests::Cluster::set | ( | int | i | ) | [inline] |
Definition at line 26 of file TestFastClusterContainer.cpp.
00026 { 00027 m_chanID = i&0x00FFFFFF; 00028 m_size = i%2; 00029 m_threshold = (i+1)%2; 00030 m_center = i%8; 00031 }
unsigned ContTests::Cluster::m_chanID |
Definition at line 10 of file TestFastClusterContainer.cpp.
unsigned ContTests::Cluster::m_size |
Definition at line 11 of file TestFastClusterContainer.cpp.
unsigned ContTests::Cluster::m_threshold |
Definition at line 12 of file TestFastClusterContainer.cpp.
unsigned ContTests::Cluster::m_center |
Definition at line 13 of file TestFastClusterContainer.cpp.
unsigned ContTests::Cluster::m_pad |
Definition at line 14 of file TestFastClusterContainer.cpp.