Go to the source code of this file.
|
#define | GET_CANDIDATE_COMPONENT(CAND, TYPE, FUN, TAG) |
|
#define | GET_CANDIDATE_MULTIPLECOMPONENTS(CAND, TYPE, FUN, SIZE, TAG) |
|
#define | GET_DEFAULT_CANDIDATE_COMPONENT(CAND, TYPE, FUN) |
|
#define | GET_DEFAULT_CANDIDATE_MULTIPLECOMPONENTS(CAND, TYPE, FUN, SIZE) |
|
|
template<typename T > |
T | reco::get (const Candidate &c) |
|
template<typename T , typename Tag > |
T | reco::get (const Candidate &c) |
|
template<typename T > |
T | reco::get (const Candidate &c, size_t i) |
|
template<typename T , typename Tag > |
T | reco::get (const Candidate &c, size_t i) |
|
template<typename T > |
size_t | reco::numberOf (const Candidate &c) |
|
template<typename T , typename Tag > |
size_t | reco::numberOf (const Candidate &c) |
|
#define GET_CANDIDATE_COMPONENT |
( |
|
CAND, |
|
|
|
TYPE, |
|
|
|
FUN, |
|
|
|
TAG |
|
) |
| |
Value:template<> \
struct component<TYPE, componenthelper::SingleComponentTag, TAG> { \
typedef componenthelper::SingleComponent<CAND, TYPE, & CAND::FUN>
type; \
}
Definition at line 86 of file component.h.
#define GET_CANDIDATE_MULTIPLECOMPONENTS |
( |
|
CAND, |
|
|
|
TYPE, |
|
|
|
FUN, |
|
|
|
SIZE, |
|
|
|
TAG |
|
) |
| |
Value:template<> \
struct component<TYPE, componenthelper::MultipleComponentsTag, TAG> { \
typedef componenthelper::MultipleComponents<CAND, TYPE, & CAND::FUN, & CAND::SIZE>
type; \
}
Definition at line 98 of file component.h.
#define GET_DEFAULT_CANDIDATE_COMPONENT |
( |
|
CAND, |
|
|
|
TYPE, |
|
|
|
FUN |
|
) |
| |
Value:template<> \
struct component<TYPE, componenthelper::SingleComponentTag, DefaultComponentTag> { \
typedef componenthelper::SingleComponent<CAND, TYPE, & CAND::FUN>
type; \
}
Definition at line 92 of file component.h.
#define GET_DEFAULT_CANDIDATE_MULTIPLECOMPONENTS |
( |
|
CAND, |
|
|
|
TYPE, |
|
|
|
FUN, |
|
|
|
SIZE |
|
) |
| |
Value:template<> \
struct component<TYPE, componenthelper::MultipleComponentsTag, DefaultComponentTag> { \
typedef componenthelper::MultipleComponents<CAND, TYPE, & CAND::FUN, & CAND::SIZE>
type; \
}
Definition at line 104 of file component.h.