#include <Group.h>
Public Member Functions | |
ScheduledGroup (boost::shared_ptr< ConstBranchDescription > bd) | |
virtual | ~ScheduledGroup () |
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::ScheduledGroup::ScheduledGroup | ( | boost::shared_ptr< ConstBranchDescription > | bd | ) | [inline, explicit] |
Definition at line 247 of file Group.h.
: ProducedGroup(), productData_(bd), theStatus_(NotRun) {}
virtual bool edm::ScheduledGroup::onDemand_ | ( | ) | const [inline, private, virtual] |
virtual ProductData const& edm::ScheduledGroup::productData | ( | ) | const [inline, private, virtual] |
Implements edm::Group.
Definition at line 257 of file Group.h.
References productData_.
{return productData_;}
virtual ProductData& edm::ScheduledGroup::productData | ( | ) | [inline, private, virtual] |
Implements edm::Group.
Definition at line 258 of file Group.h.
References productData_.
{return productData_;}
virtual void edm::ScheduledGroup::resetStatus | ( | ) | [inline, private, virtual] |
Implements edm::Group.
Definition at line 255 of file Group.h.
References edm::ProducedGroup::NotRun, and theStatus_.
{theStatus_ = NotRun;}
virtual GroupStatus& edm::ScheduledGroup::status_ | ( | ) | const [inline, private, virtual] |
Implements edm::ProducedGroup.
Definition at line 259 of file Group.h.
References theStatus_.
{return theStatus_;}
virtual void edm::ScheduledGroup::swap_ | ( | Group & | rhs | ) | [inline, private, virtual] |
Implements edm::Group.
Definition at line 250 of file Group.h.
References productData_, edm::Group::swap(), and theStatus_.
{ ScheduledGroup& other = dynamic_cast<ScheduledGroup&>(rhs); edm::swap(productData_, other.productData_); std::swap(theStatus_, other.theStatus_); }
ProductData edm::ScheduledGroup::productData_ [private] |
Definition at line 260 of file Group.h.
Referenced by productData(), and swap_().
GroupStatus edm::ScheduledGroup::theStatus_ [mutable, private] |
Definition at line 261 of file Group.h.
Referenced by resetStatus(), status_(), and swap_().