CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
NotCombiner.h
Go to the documentation of this file.
1 #ifndef CommonTools_Utils_NotCombiner_h
2 #define CommonTools_Utils_NotCombiner_h
3 /* \class reco::parser::NotCombiner
4  *
5  * logical NOT combiner
6  *
7  * \author original version: Chris Jones, Cornell,
8  * adapted by Luca Lista, INFN
9  *
10  * \version $Revision: 1.2 $
11  *
12  */
15 
16 namespace reco {
17  namespace parser {
18  struct NotCombiner : public SelectorBase {
20  arg_( arg ) {}
21  virtual bool operator()( const edm::ObjectWithDict& o ) const {
22  return ! (*arg_)( o );
23  }
24  private:
26  };
27  }
28 }
29 
30 #endif
NotCombiner(SelectorPtr arg)
Definition: NotCombiner.h:19
virtual bool operator()(const edm::ObjectWithDict &o) const
return true if the object is selected
Definition: NotCombiner.h:21
A arg
Definition: Factorize.h:36
boost::shared_ptr< SelectorBase > SelectorPtr
Definition: SelectorPtr.h:17