| Classes | Job Modules | Data Objects | Services | Algorithms | Tools | Packages | Directories | Tracs |

In This Package:

DayaBay::TagMuon Class Reference

Data for Muon tag. More...

#include <TagMuon.h>

Inheritance diagram for DayaBay::TagMuon:

[legend]
Collaboration diagram for DayaBay::TagMuon:
[legend]
List of all members.

Public Member Functions

 TagMuon ()
 Default Constructor.
virtual ~TagMuon ()
 Default Destructor.
virtual std::ostream & fillStream (std::ostream &s) const
 Fill the ASCII output stream.
std::vector< const DayaBay::TagHeader * > fragments () const
 Return the list of muon fragments.
const DayaBay::TagHeaderheader () 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

Detailed Description

Data for Muon tag.

Author:
bv@bnl.gov created Mon Apr 11 03:31:25 2011

Definition at line 41 of file TagMuon.h.


Constructor & Destructor Documentation

DayaBay::TagMuon::TagMuon (  )  [inline]

Default Constructor.

Definition at line 46 of file TagMuon.h.

00046 {}

virtual DayaBay::TagMuon::~TagMuon (  )  [inline, virtual]

Default Destructor.

Definition at line 49 of file TagMuon.h.

00049 {}


Member Function Documentation

std::ostream & DayaBay::TagMuon::fillStream ( std::ostream &  s  )  const [inline, virtual]

Fill the ASCII output stream.

Reimplemented from DayaBay::TagData.

Definition at line 109 of file TagMuon.h.

00110 {
00111   TagData::fillStream(s);
00112   return s;
00113 }

std::vector< const DayaBay::TagHeader * > DayaBay::TagMuon::fragments (  )  const [inline]

Return the list of muon fragments.

Definition at line 116 of file TagMuon.h.

00117 {
00118 return this->header()->taggedHeaders(DayaBay::TagHeader::MuonFragment);
00119 }

static void* DayaBay::TagMuon::operator new ( size_t  size  )  [inline, static]

operator new

Reimplemented from DayaBay::TagData.

Definition at line 60 of file TagMuon.h.

00061     {
00062       return ( sizeof(TagMuon) == size ? 
00063                boost::singleton_pool<TagMuon, sizeof(TagMuon)>::malloc() :
00064                ::operator new(size) );
00065     }

static void* DayaBay::TagMuon::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 70 of file TagMuon.h.

00071     {
00072       return ::operator new (size,pObj);
00073     }

static void DayaBay::TagMuon::operator delete ( void *  p  )  [inline, static]

operator delete

Reimplemented from DayaBay::TagData.

Definition at line 76 of file TagMuon.h.

00077     {
00078       boost::singleton_pool<TagMuon, sizeof(TagMuon)>::is_from(p) ?
00079       boost::singleton_pool<TagMuon, sizeof(TagMuon)>::free(p) :
00080       ::operator delete(p);
00081     }

static void DayaBay::TagMuon::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 85 of file TagMuon.h.

00086     {
00087       ::operator delete (p, pObj);
00088     }

const DayaBay::TagHeader * DayaBay::TagData::header (  )  const [inline, inherited]

Retrieve const Header for this tag.

Definition at line 135 of file TagData.h.

00136 {
00137   return m_header;
00138 }

void DayaBay::TagData::setHeader ( DayaBay::TagHeader value  )  [inline, inherited]

Update Header for this tag.

Definition at line 140 of file TagData.h.

00141 {
00142   m_header = value;
00143 }

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 }


The documentation for this class was generated from the following file:
| Classes | Job Modules | Data Objects | Services | Algorithms | Tools | Packages | Directories | Tracs |

Generated on Mon Apr 11 20:20:00 2011 for TagEvent by doxygen 1.4.7