#include <PoolOutputModule.h>
Classes | |
class | Sorter |
Public Member Functions | |
BranchID | branchID () const |
std::string const & | branchName () const |
bool | operator< (OutputItem const &rh) const |
OutputItem (BranchDescription const *bd, int splitLevel, int basketSize) | |
OutputItem () | |
~OutputItem () | |
Public Attributes | |
int | basketSize_ |
BranchDescription const * | branchDescription_ |
void const * | product_ |
int | splitLevel_ |
Definition at line 62 of file PoolOutputModule.h.
edm::PoolOutputModule::OutputItem::OutputItem | ( | ) |
Definition at line 90 of file PoolOutputModule.cc.
Referenced by edm::PoolOutputModule::fillSelectedItemList().
edm::PoolOutputModule::OutputItem::OutputItem | ( | BranchDescription const * | bd, |
int | splitLevel, | ||
int | basketSize | ||
) | [explicit] |
Definition at line 96 of file PoolOutputModule.cc.
: branchDescription_(bd), product_(0), splitLevel_(splitLevel), basketSize_(basketSize) {}
edm::PoolOutputModule::OutputItem::~OutputItem | ( | ) | [inline] |
Definition at line 75 of file PoolOutputModule.h.
{}
BranchID edm::PoolOutputModule::OutputItem::branchID | ( | ) | const [inline] |
Definition at line 77 of file PoolOutputModule.h.
References branchDescription_, and edm::BranchDescription::branchID().
{ return branchDescription_->branchID(); }
std::string const& edm::PoolOutputModule::OutputItem::branchName | ( | ) | const [inline] |
Definition at line 78 of file PoolOutputModule.h.
References branchDescription_, and edm::BranchDescription::branchName().
{ return branchDescription_->branchName(); }
bool edm::PoolOutputModule::OutputItem::operator< | ( | OutputItem const & | rh | ) | const [inline] |
Definition at line 80 of file PoolOutputModule.h.
References branchDescription_.
{ return *branchDescription_ < *rh.branchDescription_; }
Definition at line 87 of file PoolOutputModule.h.
Referenced by edm::PoolOutputModule::fillSelectedItemList().
Definition at line 84 of file PoolOutputModule.h.
Referenced by branchID(), branchName(), edm::PoolOutputModule::OutputItem::Sorter::operator()(), and operator<().
void const* edm::PoolOutputModule::OutputItem::product_ [mutable] |
Definition at line 85 of file PoolOutputModule.h.
Definition at line 86 of file PoolOutputModule.h.
Referenced by edm::PoolOutputModule::fillSelectedItemList().