1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
#include "CommonTools/Utils/interface/cutParser.h"
#include "CommonTools/Utils/src/AnyObjSelector.h"
#include "CommonTools/Utils/interface/parser/Grammar.h"
#include "FWCore/Utilities/interface/EDMException.h"
using namespace reco::parser;
bool reco::parser::cutParser(const edm::TypeWithDict& t, const std::string& cut, SelectorPtr& sel, bool lazy = false) {
bool justBlanks = true;
for (std::string::const_iterator c = cut.begin(); c != cut.end(); ++c) {
if (*c != ' ') {
justBlanks = false;
break;
}
}
if (justBlanks) {
sel = SelectorPtr(new AnyObjSelector);
return true;
} else {
using namespace boost::spirit::classic;
Grammar grammar(sel, t, lazy);
bool returnValue = false;
const char* startingFrom = cut.c_str();
try {
returnValue = parse(startingFrom, grammar.use_parser<0>() >> end_p, space_p).full;
} catch (BaseException& e) {
throw edm::Exception(edm::errors::Configuration)
<< "Cut parser error:" << baseExceptionWhat(e) << " (char " << e.where - startingFrom << ")\n"
<< "Cut string was " << cut;
}
return returnValue;
}
}
|