CMS 3D CMS Logo

Public Member Functions

edm::MatchAllSelector Class Reference

#include <Selector.h>

Inheritance diagram for edm::MatchAllSelector:
edm::SelectorBase

List of all members.

Public Member Functions

virtual MatchAllSelectorclone () const
virtual bool doMatch (ConstBranchDescription const &p) const
 MatchAllSelector ()

Detailed Description

Class MatchAllSelector. Dummy selector whose match function always returns true.

Definition at line 159 of file Selector.h.


Constructor & Destructor Documentation

edm::MatchAllSelector::MatchAllSelector ( ) [inline]

Definition at line 162 of file Selector.h.

Referenced by clone().

    { }

Member Function Documentation

virtual MatchAllSelector* edm::MatchAllSelector::clone ( void  ) const [inline, virtual]

Implements edm::SelectorBase.

Definition at line 170 of file Selector.h.

References MatchAllSelector().

    {
      return new MatchAllSelector;
    }
virtual bool edm::MatchAllSelector::doMatch ( ConstBranchDescription const &  p) const [inline, virtual]

Implements edm::SelectorBase.

Definition at line 165 of file Selector.h.

    {
      return true;
    }