#include <TagMuonFragment.h>
Inheritance diagram for DayaBay::TagMuonFragment:
Public Member Functions | |
| TagMuonFragment () | |
| Default Constructor. | |
| virtual | ~TagMuonFragment () |
| Default Destructor. | |
| virtual std::ostream & | fillStream (std::ostream &s) const |
| Fill the ASCII output stream. | |
| const DayaBay::TagHeader * | header () const |
| Retrieve const Header for this tag. | |
| void | setHeader (DayaBay::TagHeader *value) |
| Update Header for this tag. | |
| float | likelihood () const |
| Retrieve const Some likelihood that this tag is applicable. | |
| void | setLikelihood (float value) |
| Update Some likelihood that this tag is applicable. | |
Static Public Member Functions | |
| static void * | operator new (size_t size) |
| operator new | |
| static void * | operator new (size_t size, void *pObj) |
| placement operator new it is needed by libstdc++ 3.2.3 (e.g. | |
| static void | operator delete (void *p) |
| operator delete | |
| static void | operator delete (void *p, void *pObj) |
| placement operator delete not sure if really needed, but it does not harm | |
Definition at line 39 of file TagMuonFragment.h.
| DayaBay::TagMuonFragment::TagMuonFragment | ( | ) | [inline] |
| virtual DayaBay::TagMuonFragment::~TagMuonFragment | ( | ) | [inline, virtual] |
| std::ostream & DayaBay::TagMuonFragment::fillStream | ( | std::ostream & | s | ) | const [inline, virtual] |
Fill the ASCII output stream.
Reimplemented from DayaBay::TagData.
Definition at line 104 of file TagMuonFragment.h.
00105 { 00106 TagData::fillStream(s); 00107 return s; 00108 }
| static void* DayaBay::TagMuonFragment::operator new | ( | size_t | size | ) | [inline, static] |
operator new
Reimplemented from DayaBay::TagData.
Definition at line 55 of file TagMuonFragment.h.
00056 { 00057 return ( sizeof(TagMuonFragment) == size ? 00058 boost::singleton_pool<TagMuonFragment, sizeof(TagMuonFragment)>::malloc() : 00059 ::operator new(size) ); 00060 }
| static void* DayaBay::TagMuonFragment::operator new | ( | size_t | size, | |
| void * | pObj | |||
| ) | [inline, static] |
placement operator new it is needed by libstdc++ 3.2.3 (e.g.
in std::vector) it is not needed in libstdc++ >= 3.4
Reimplemented from DayaBay::TagData.
Definition at line 65 of file TagMuonFragment.h.
| static void DayaBay::TagMuonFragment::operator delete | ( | void * | p | ) | [inline, static] |
operator delete
Reimplemented from DayaBay::TagData.
Definition at line 71 of file TagMuonFragment.h.
00072 { 00073 boost::singleton_pool<TagMuonFragment, sizeof(TagMuonFragment)>::is_from(p) ? 00074 boost::singleton_pool<TagMuonFragment, sizeof(TagMuonFragment)>::free(p) : 00075 ::operator delete(p); 00076 }
| static void DayaBay::TagMuonFragment::operator delete | ( | void * | p, | |
| void * | pObj | |||
| ) | [inline, static] |
placement operator delete not sure if really needed, but it does not harm
Reimplemented from DayaBay::TagData.
Definition at line 80 of file TagMuonFragment.h.
00081 { 00082 ::operator delete (p, pObj); 00083 }
| const DayaBay::TagHeader * DayaBay::TagData::header | ( | ) | const [inline, inherited] |
| void DayaBay::TagData::setHeader | ( | DayaBay::TagHeader * | value | ) | [inline, inherited] |
| float DayaBay::TagData::likelihood | ( | ) | const [inline, inherited] |
Retrieve const Some likelihood that this tag is applicable.
Definition at line 145 of file TagData.h.
00146 { 00147 return m_likelihood; 00148 }
| void DayaBay::TagData::setLikelihood | ( | float | value | ) | [inline, inherited] |
Update Some likelihood that this tag is applicable.
Definition at line 150 of file TagData.h.
00151 { 00152 m_likelihood = value; 00153 }
1.4.7