#include <Group.h>
Public Member Functions | |
UnscheduledGroup (boost::shared_ptr< ConstBranchDescription > bd) | |
virtual | ~UnscheduledGroup () |
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::UnscheduledGroup::UnscheduledGroup | ( | boost::shared_ptr< ConstBranchDescription > | bd | ) | [inline, explicit] |
Definition at line 271 of file Group.h.
: ProducedGroup(), productData_(bd), theStatus_(UnscheduledNotRun) {}
virtual bool edm::UnscheduledGroup::onDemand_ | ( | ) | const [inline, private, virtual] |
Implements edm::Group.
Definition at line 280 of file Group.h.
References edm::ProducedGroup::status(), and edm::ProducedGroup::UnscheduledNotRun.
{return status() == UnscheduledNotRun;}
virtual ProductData const& edm::UnscheduledGroup::productData | ( | ) | const [inline, private, virtual] |
Implements edm::Group.
Definition at line 281 of file Group.h.
References productData_.
{return productData_;}
virtual ProductData& edm::UnscheduledGroup::productData | ( | ) | [inline, private, virtual] |
Implements edm::Group.
Definition at line 282 of file Group.h.
References productData_.
{return productData_;}
virtual void edm::UnscheduledGroup::resetStatus | ( | ) | [inline, private, virtual] |
Implements edm::Group.
Definition at line 279 of file Group.h.
References theStatus_, and edm::ProducedGroup::UnscheduledNotRun.
virtual GroupStatus& edm::UnscheduledGroup::status_ | ( | ) | const [inline, private, virtual] |
Implements edm::ProducedGroup.
Definition at line 283 of file Group.h.
References theStatus_.
{return theStatus_;}
virtual void edm::UnscheduledGroup::swap_ | ( | Group & | rhs | ) | [inline, private, virtual] |
Implements edm::Group.
Definition at line 274 of file Group.h.
References productData_, edm::Group::swap(), and theStatus_.
{ UnscheduledGroup& other = dynamic_cast<UnscheduledGroup&>(rhs); edm::swap(productData_, other.productData_); std::swap(theStatus_, other.theStatus_); }
Definition at line 284 of file Group.h.
Referenced by productData(), and swap_().
GroupStatus edm::UnscheduledGroup::theStatus_ [mutable, private] |
Definition at line 285 of file Group.h.
Referenced by resetStatus(), status_(), and swap_().