15 : node_left_(node_left.
clone()), node_right_(node_right.
clone()) {}
22 std::unique_ptr<ParameterDescriptionNode> node_right)
26 std::unique_ptr<ParameterDescriptionNode> node_right)
30 std::set<ParameterTypes>& parameterTypes,
31 std::set<ParameterTypes>& wildcardTypes)
const {
32 std::set<std::string> labelsLeft;
33 std::set<ParameterTypes> parameterTypesLeft;
34 std::set<ParameterTypes> wildcardTypesLeft;
35 node_left_->checkAndGetLabelsAndTypes(labelsLeft, parameterTypesLeft, wildcardTypesLeft);
37 std::set<std::string> labelsRight;
38 std::set<ParameterTypes> parameterTypesRight;
39 std::set<ParameterTypes> wildcardTypesRight;
40 node_right_->checkAndGetLabelsAndTypes(labelsRight, parameterTypesRight, wildcardTypesRight);
46 usedLabels.insert(labelsLeft.begin(), labelsLeft.end());
47 usedLabels.insert(labelsRight.begin(), labelsRight.end());
49 parameterTypes.insert(parameterTypesRight.begin(), parameterTypesRight.end());
50 parameterTypes.insert(parameterTypesLeft.begin(), parameterTypesLeft.end());
52 wildcardTypes.insert(wildcardTypesRight.begin(), wildcardTypesRight.end());
53 wildcardTypes.insert(wildcardTypesLeft.begin(), wildcardTypesLeft.end());
60 if (leftExists || rightExists) {
62 node_left_->validate(pset, validatedLabels,
false);
64 node_right_->validate(pset, validatedLabels,
false);
71 node_left_->validate(pset, validatedLabels,
false);
77 bool& wroteSomething)
const {
78 node_left_->writeCfi(os, startWithComma, indentation, wroteSomething);
89 if (dfh.
pass() == 1) {
98 os <<
" (do not write to cfi)";
100 os <<
" see Section " << dfh.
section() <<
"." << dfh.
counter() <<
"\n";
110 os <<
" (do not write to cfi)";
111 if (optional || !writeToCfi) {
116 os <<
"see Section " << dfh.
section() <<
"." << dfh.
counter() <<
"\n";
129 node_left_->printNestedContent(os,
false, dfh);
139 std::stringstream ss;
144 os <<
"Section " << newSection <<
" OR group description:\n";
150 os <<
"This optional OR group requires at least one or none of the following to be in the PSet\n";
152 os <<
"This OR group requires at least one of the following to be in the PSet\n";
175 node_left_->printNestedContent(os,
false, new_dfh);
176 node_right_->printNestedContent(os,
false, new_dfh);
188 std::set<std::string>
const& labelsRight)
const {
189 std::set<std::string> duplicateLabels;
190 std::insert_iterator<std::set<std::string> > insertIter(duplicateLabels, duplicateLabels.begin());
191 std::set_intersection(labelsLeft.begin(), labelsLeft.end(), labelsRight.begin(), labelsRight.end(), insertIter);
192 if (!duplicateLabels.empty()) {
193 std::stringstream ss;
194 for (std::set<std::string>::const_iterator iter = duplicateLabels.begin(), iEnd = duplicateLabels.end();
197 ss <<
" \"" << *iter <<
"\"\n";
200 <<
"\"or\" expression must be not be the same as labels used\n" 201 <<
"in other nodes of the expression. The following duplicate\n" 202 <<
"labels were detected:\n" 208 std::set<ParameterTypes>
const& types2)
const {
209 if (!types1.empty()) {
210 std::set<ParameterTypes> duplicateTypes;
211 std::insert_iterator<std::set<ParameterTypes> > insertIter(duplicateTypes, duplicateTypes.begin());
212 std::set_intersection(types1.begin(), types1.end(), types2.begin(), types2.end(), insertIter);
213 if (!duplicateTypes.empty()) {
214 std::stringstream ss;
215 for (std::set<ParameterTypes>::const_iterator iter = duplicateTypes.begin(), iEnd = duplicateTypes.end();
221 <<
"Types used for wildcards in a node of a ParameterSetDescription\n" 222 <<
"\"or\" expression must be different from types used for other parameters\n" 223 <<
"in other nodes. The following duplicate types were detected:\n"
bool exists_(ParameterSet const &pset) const override
edm::value_ptr< ParameterDescriptionNode > node_left_
void validate_(ParameterSet &pset, std::set< std::string > &validatedLabels, bool optional) const override
ParameterDescriptionNode * clone() const override
std::string parameterTypeEnumToString(ParameterTypes iType)
int howManyXORSubNodesExist_(ParameterSet const &pset) const override
std::string const & comment() const
void writeCfi_(std::ostream &os, bool &startWithComma, int indentation, bool &wroteSomething) const override
static void printSpaces(std::ostream &os, int n)
ORGroupDescription(ParameterDescriptionNode const &node_left, ParameterDescriptionNode const &node_right)
bool exists(ParameterSet const &pset) const
void print_(std::ostream &os, bool optional, bool writeToCfi, DocFormatHelper &dfh) const override
bool partiallyExists_(ParameterSet const &pset) const override
TEveGeoShape * clone(const TEveElement *element, TEveElement *parent)
void throwIfDuplicateTypes(std::set< ParameterTypes > const &types1, std::set< ParameterTypes > const &types2) const
void throwIfDuplicateLabels(std::set< std::string > const &labelsLeft, std::set< std::string > const &labelsRight) const
void checkAndGetLabelsAndTypes_(std::set< std::string > &usedLabels, std::set< ParameterTypes > ¶meterTypes, std::set< ParameterTypes > &wildcardTypes) const override
edm::value_ptr< ParameterDescriptionNode > node_right_
void printNestedContent_(std::ostream &os, bool optional, DocFormatHelper &dfh) const override