#include <Group.h>
Public Member Functions | |
UnscheduledGroup (boost::shared_ptr< ConstBranchDescription > bd) | |
virtual | ~UnscheduledGroup () |
Private Member Functions | |
virtual GroupData const & | groupData () const |
virtual GroupData & | groupData () |
virtual bool | onDemand_ () const |
virtual void | resetStatus () |
virtual GroupStatus const & | status_ () const |
virtual GroupStatus & | status_ () |
virtual void | swap_ (Group &rhs) |
Private Attributes | |
GroupData | groupData_ |
GroupStatus | theStatus_ |
edm::UnscheduledGroup::UnscheduledGroup | ( | boost::shared_ptr< ConstBranchDescription > | bd | ) | [inline, explicit] |
Definition at line 291 of file Group.h.
: ProducedGroup(), groupData_(bd), theStatus_(UnscheduledNotRun) {}
virtual GroupData const& edm::UnscheduledGroup::groupData | ( | ) | const [inline, private, virtual] |
Implements edm::Group.
Definition at line 301 of file Group.h.
References groupData_.
{return groupData_;}
virtual GroupData& edm::UnscheduledGroup::groupData | ( | ) | [inline, private, virtual] |
Implements edm::Group.
Definition at line 302 of file Group.h.
References groupData_.
{return groupData_;}
virtual bool edm::UnscheduledGroup::onDemand_ | ( | ) | const [inline, private, virtual] |
Implements edm::Group.
Definition at line 300 of file Group.h.
References edm::ProducedGroup::status(), and edm::ProducedGroup::UnscheduledNotRun.
{return status() == UnscheduledNotRun;}
virtual void edm::UnscheduledGroup::resetStatus | ( | ) | [inline, private, virtual] |
Implements edm::Group.
Definition at line 299 of file Group.h.
References theStatus_, and edm::ProducedGroup::UnscheduledNotRun.
virtual GroupStatus const& edm::UnscheduledGroup::status_ | ( | ) | const [inline, private, virtual] |
Implements edm::ProducedGroup.
Definition at line 303 of file Group.h.
References theStatus_.
{return theStatus_;}
virtual GroupStatus& edm::UnscheduledGroup::status_ | ( | ) | [inline, private, virtual] |
Implements edm::ProducedGroup.
Definition at line 304 of file Group.h.
References theStatus_.
{return theStatus_;}
virtual void edm::UnscheduledGroup::swap_ | ( | Group & | rhs | ) | [inline, private, virtual] |
Implements edm::Group.
Definition at line 294 of file Group.h.
References groupData_, edm::Group::swap(), and theStatus_.
{ UnscheduledGroup& other = dynamic_cast<UnscheduledGroup&>(rhs); edm::swap(groupData_, other.groupData_); std::swap(theStatus_, other.theStatus_); }
GroupData edm::UnscheduledGroup::groupData_ [private] |
Definition at line 305 of file Group.h.
Referenced by groupData(), and swap_().
GroupStatus edm::UnscheduledGroup::theStatus_ [private] |
Definition at line 306 of file Group.h.
Referenced by resetStatus(), status_(), and swap_().