#include <Group.h>
Public Member Functions | |
SourceGroup (boost::shared_ptr< ConstBranchDescription > bd) | |
virtual | ~SourceGroup () |
Private Member Functions | |
virtual bool | onDemand_ () const |
virtual ProductData const & | productData () const |
virtual ProductData & | productData () |
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 295 of file Group.h.
: ProducedGroup(), productData_(bd), theStatus_(NotPut) {}
virtual bool edm::SourceGroup::onDemand_ | ( | ) | const [inline, private, virtual] |
virtual ProductData const& edm::SourceGroup::productData | ( | ) | const [inline, private, virtual] |
Implements edm::Group.
Definition at line 305 of file Group.h.
References productData_.
{return productData_;}
virtual ProductData& edm::SourceGroup::productData | ( | ) | [inline, private, virtual] |
Implements edm::Group.
Definition at line 306 of file Group.h.
References productData_.
{return productData_;}
virtual void edm::SourceGroup::resetStatus | ( | ) | [inline, private, virtual] |
Implements edm::Group.
Definition at line 303 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 307 of file Group.h.
References theStatus_.
{return theStatus_;}
virtual void edm::SourceGroup::swap_ | ( | Group & | rhs | ) | [inline, private, virtual] |
Implements edm::Group.
Definition at line 298 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 308 of file Group.h.
Referenced by productData(), and swap_().
GroupStatus edm::SourceGroup::theStatus_ [mutable, private] |
Definition at line 309 of file Group.h.
Referenced by resetStatus(), status_(), and swap_().