15 : node_left_(node_left.
clone()), node_right_(node_right.
clone()) {}
19 : node_left_(
std::
move(node_left)), node_right_(node_right.
clone()) {}
22 std::unique_ptr<ParameterDescriptionNode> node_right)
23 : node_left_(node_left.
clone()), node_right_(
std::
move(node_right)) {}
26 std::unique_ptr<ParameterDescriptionNode> node_right)
27 : node_left_(
std::
move(node_left)), node_right_(
std::
move(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 }
else if (leftExists && rightExists) {
65 }
else if (leftExists && !rightExists) {
69 }
else if (!leftExists && rightExists) {
80 bool& wroteSomething)
const {
87 if (dfh.
pass() == 1) {
89 os <<
"IfExists pair:";
96 os <<
" (do not write to cfi)";
108 os <<
" (do not write to cfi)";
130 std::stringstream
ss;
135 os <<
"Section " << newSection;
138 os <<
" IfExists pair description:\n";
141 os <<
"If the first parameter exists, then the second is allowed to exist\n";
143 os <<
"If the first parameter exists, then the second is required to exist\n";
174 if (leftExists && rightExists)
176 else if (!leftExists && !rightExists)
186 std::set<std::string>
const& labelsRight)
const {
187 std::set<std::string> duplicateLabels;
188 std::insert_iterator<std::set<std::string> > insertIter(duplicateLabels, duplicateLabels.begin());
189 std::set_intersection(labelsLeft.begin(), labelsLeft.end(), labelsRight.begin(), labelsRight.end(), insertIter);
190 if (!duplicateLabels.empty()) {
191 std::stringstream
ss;
192 for (std::set<std::string>::const_iterator iter = duplicateLabels.begin(), iEnd = duplicateLabels.end();
195 ss <<
" \"" << *iter <<
"\"\n";
198 <<
"\"ifExists\" expression must be not be the same as labels used\n" 199 <<
"in other nodes of the expression. The following duplicate\n" 200 <<
"labels were detected:\n" 206 std::set<ParameterTypes>
const& types2)
const {
207 if (!types1.empty()) {
208 std::set<ParameterTypes> duplicateTypes;
209 std::insert_iterator<std::set<ParameterTypes> > insertIter(duplicateTypes, duplicateTypes.begin());
211 if (!duplicateTypes.empty()) {
212 std::stringstream
ss;
213 for (std::set<ParameterTypes>::const_iterator iter = duplicateTypes.begin(), iEnd = duplicateTypes.end();
219 <<
"Types used for wildcards in a node of a ParameterSetDescription\n" 220 <<
"\"ifExists\" expression must be different from types used for other parameters\n" 221 <<
"in other nodes. The following duplicate types were detected:\n"
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
std::string parameterTypeEnumToString(ParameterTypes iType)
IfExistsDescription(ParameterDescriptionNode const &node_left, ParameterDescriptionNode const &node_right)
bool partiallyExists_(ParameterSet const &pset) const override
void parameterMustBeTyped(CfiOptions &iOps) noexcept
bool exists_(ParameterSet const &pset) const override
edm::value_ptr< ParameterDescriptionNode > node_right_
edm::value_ptr< ParameterDescriptionNode > node_left_
void print_(std::ostream &os, bool optional, bool writeToCfi, DocFormatHelper &dfh) const override
void printNestedContent_(std::ostream &os, bool optional, DocFormatHelper &dfh) const override
int howManyXORSubNodesExist_(ParameterSet const &pset) const override
static void printSpaces(std::ostream &os, int n)
void validate_(ParameterSet &pset, std::set< std::string > &validatedLabels, bool optional) const override
void writeCfi_(std::ostream &os, bool optional, bool &startWithComma, int indentation, CfiOptions &, bool &wroteSomething) const override
std::string const & comment() const
TEveGeoShape * clone(const TEveElement *element, TEveElement *parent)
bool exists(ParameterSet const &pset) const
cfi::CfiOptions CfiOptions