CMS 3D CMS Logo

IfExistsDescription.h
Go to the documentation of this file.
1 #ifndef FWCore_ParameterSet_IfExistsDescription_h
2 #define FWCore_ParameterSet_IfExistsDescription_h
3 
5 
7 
8 #include <memory>
9 #include <iosfwd>
10 #include <set>
11 #include <string>
12 
13 namespace edm {
14 
15  class ParameterSet;
16  class DocFormatHelper;
17 
19  public:
20  IfExistsDescription(ParameterDescriptionNode const& node_left, ParameterDescriptionNode const& node_right);
21 
22  IfExistsDescription(std::unique_ptr<ParameterDescriptionNode> node_left,
23  ParameterDescriptionNode const& node_right);
24 
26  std::unique_ptr<ParameterDescriptionNode> node_right);
27 
28  IfExistsDescription(std::unique_ptr<ParameterDescriptionNode> node_left,
29  std::unique_ptr<ParameterDescriptionNode> node_right);
30 
31  ParameterDescriptionNode* clone() const override { return new IfExistsDescription(*this); }
32 
33  private:
34  void checkAndGetLabelsAndTypes_(std::set<std::string>& usedLabels,
35  std::set<ParameterTypes>& parameterTypes,
36  std::set<ParameterTypes>& wildcardTypes) const override;
37 
38  void validate_(ParameterSet& pset, std::set<std::string>& validatedLabels, bool optional) const override;
39 
40  void writeCfi_(std::ostream& os,
41  bool optional,
42  bool& startWithComma,
43  int indentation,
44  CfiOptions&,
45  bool& wroteSomething) const override;
46 
47  void print_(std::ostream& os, bool optional, bool writeToCfi, DocFormatHelper& dfh) const override;
48 
49  bool hasNestedContent_() const override { return true; }
50 
51  void printNestedContent_(std::ostream& os, bool optional, DocFormatHelper& dfh) const override;
52 
53  bool exists_(ParameterSet const& pset) const override;
54 
55  bool partiallyExists_(ParameterSet const& pset) const override;
56 
57  int howManyXORSubNodesExist_(ParameterSet const& pset) const override;
58 
59  void throwIfDuplicateLabels(std::set<std::string> const& labelsLeft,
60  std::set<std::string> const& labelsRight) const;
61 
62  void throwIfDuplicateTypes(std::set<ParameterTypes> const& types1, std::set<ParameterTypes> const& types2) const;
63 
66  };
67 } // namespace edm
68 #endif
ParameterDescriptionNode * clone() const override
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 > &parameterTypes, std::set< ParameterTypes > &wildcardTypes) const override
IfExistsDescription(ParameterDescriptionNode const &node_left, ParameterDescriptionNode const &node_right)
bool partiallyExists_(ParameterSet const &pset) const override
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
optional
Definition: Types.py:245
void printNestedContent_(std::ostream &os, bool optional, DocFormatHelper &dfh) const override
int howManyXORSubNodesExist_(ParameterSet const &pset) const override
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
HLT enums.
bool hasNestedContent_() const override
cfi::CfiOptions CfiOptions