File indexing completed on 2024-04-06 12:01:20
0001 #ifndef CommonTools_Utils_OrCombiner_h
0002 #define CommonTools_Utils_OrCombiner_h
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013 #include "CommonTools/Utils/interface/parser/SelectorBase.h"
0014 #include "CommonTools/Utils/interface/parser/SelectorPtr.h"
0015
0016 namespace reco {
0017 namespace parser {
0018 struct OrCombiner : public SelectorBase {
0019 OrCombiner(SelectorPtr lhs, SelectorPtr rhs) : lhs_(lhs), rhs_(rhs) {}
0020 bool operator()(const edm::ObjectWithDict& o) const override { return (*lhs_)(o) || (*rhs_)(o); }
0021
0022 private:
0023 SelectorPtr lhs_, rhs_;
0024 };
0025 }
0026 }
0027
0028 #endif