Go to the documentation of this file.00001 #ifndef CommonTools_Utils_NotCombiner_h
00002 #define CommonTools_Utils_NotCombiner_h
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013 #include "CommonTools/Utils/src/SelectorBase.h"
00014 #include "CommonTools/Utils/src/SelectorPtr.h"
00015
00016 namespace reco {
00017 namespace parser {
00018 struct NotCombiner : public SelectorBase {
00019 NotCombiner( SelectorPtr arg ) :
00020 arg_( arg ) {}
00021 virtual bool operator()( const Reflex::Object& o ) const {
00022 return ! (*arg_)( o );
00023 }
00024 private:
00025 SelectorPtr arg_;
00026 };
00027 }
00028 }
00029
00030 #endif