#include <EventEntryInfo.h>
Public Member Functions | |
BranchID const & | branchID () const |
EntryDescriptionID const & | entryDescriptionID () const |
EventEntryInfo () | |
ProductID const & | productID () const |
void | write (std::ostream &os) const |
~EventEntryInfo () | |
Private Attributes | |
BranchID | branchID_ |
EntryDescriptionID | entryDescriptionID_ |
ProductID | productID_ |
Definition at line 23 of file EventEntryInfo.h.
edm::EventEntryInfo::EventEntryInfo | ( | ) |
Definition at line 9 of file EventEntryInfo.cc.
: branchID_(), productID_(), entryDescriptionID_() {}
edm::EventEntryInfo::~EventEntryInfo | ( | ) |
Definition at line 15 of file EventEntryInfo.cc.
{}
BranchID const& edm::EventEntryInfo::branchID | ( | ) | const [inline] |
Definition at line 30 of file EventEntryInfo.h.
References branchID_.
Referenced by edm::operator<(), edm::operator==(), and write().
{return branchID_;}
EntryDescriptionID const& edm::EventEntryInfo::entryDescriptionID | ( | ) | const [inline] |
Definition at line 32 of file EventEntryInfo.h.
References entryDescriptionID_.
Referenced by edm::operator==(), and write().
{return entryDescriptionID_;}
ProductID const& edm::EventEntryInfo::productID | ( | ) | const [inline] |
Definition at line 31 of file EventEntryInfo.h.
References productID_.
Referenced by edm::operator==(), and write().
{return productID_;}
void edm::EventEntryInfo::write | ( | std::ostream & | os | ) | const |
Definition at line 18 of file EventEntryInfo.cc.
References branchID(), entryDescriptionID(), and productID().
Referenced by edm::operator<<().
{ os << "branch ID = " << branchID() << '\n'; os << "product ID = " << productID() << '\n'; os << "entry description ID = " << entryDescriptionID() << '\n'; }
BranchID edm::EventEntryInfo::branchID_ [private] |
Definition at line 36 of file EventEntryInfo.h.
Referenced by branchID().
Definition at line 38 of file EventEntryInfo.h.
Referenced by entryDescriptionID().
ProductID edm::EventEntryInfo::productID_ [private] |
Definition at line 37 of file EventEntryInfo.h.
Referenced by productID().