#include <Group.h>
Public Member Functions | |
SourceGroup (boost::shared_ptr< ConstBranchDescription > bd) | |
virtual | ~SourceGroup () |
Private Member Functions | |
virtual ProductData const & | getProductData () const |
virtual ProductData & | getProductData () |
virtual bool | onDemand_ () const |
virtual void | resetStatus_ () |
virtual GroupStatus & | status_ () const |
virtual void | swap_ (Group &rhs) |
Private Attributes | |
ProductData | productData_ |
GroupStatus | theStatus_ |
edm::SourceGroup::SourceGroup | ( | boost::shared_ptr< ConstBranchDescription > | bd | ) | [inline, explicit] |
Definition at line 314 of file Group.h.
: ProducedGroup(), productData_(bd), theStatus_(NotPut) {}
virtual ProductData const& edm::SourceGroup::getProductData | ( | ) | const [inline, private, virtual] |
Implements edm::Group.
Definition at line 324 of file Group.h.
References productData_.
{return productData_;}
virtual ProductData& edm::SourceGroup::getProductData | ( | ) | [inline, private, virtual] |
Implements edm::Group.
Definition at line 325 of file Group.h.
References productData_.
{return productData_;}
virtual bool edm::SourceGroup::onDemand_ | ( | ) | const [inline, private, virtual] |
virtual void edm::SourceGroup::resetStatus_ | ( | ) | [inline, private, virtual] |
Implements edm::Group.
Definition at line 322 of file Group.h.
References edm::ProducedGroup::NotPut, and theStatus_.
{theStatus_ = NotPut;}
virtual GroupStatus& edm::SourceGroup::status_ | ( | ) | const [inline, private, virtual] |
Implements edm::ProducedGroup.
Definition at line 326 of file Group.h.
References theStatus_.
{return theStatus_;}
virtual void edm::SourceGroup::swap_ | ( | Group & | rhs | ) | [inline, private, virtual] |
Implements edm::Group.
Definition at line 317 of file Group.h.
References productData_, edm::Group::swap(), and theStatus_.
{ SourceGroup& other = dynamic_cast<SourceGroup&>(rhs); edm::swap(productData_, other.productData_); std::swap(theStatus_, other.theStatus_); }
ProductData edm::SourceGroup::productData_ [private] |
Definition at line 327 of file Group.h.
Referenced by getProductData(), and swap_().
GroupStatus edm::SourceGroup::theStatus_ [mutable, private] |
Definition at line 328 of file Group.h.
Referenced by resetStatus_(), status_(), and swap_().