CMS 3D CMS Logo

ORGroupDescription.h
Go to the documentation of this file.
1 #ifndef FWCore_ParameterSet_ORGroupDescription_h
2 #define FWCore_ParameterSet_ORGroupDescription_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:
21  ParameterDescriptionNode const& node_right);
22 
23  ORGroupDescription(std::unique_ptr<ParameterDescriptionNode> node_left,
24  ParameterDescriptionNode const& node_right);
25 
27  std::unique_ptr<ParameterDescriptionNode> node_right);
28 
29  ORGroupDescription(std::unique_ptr<ParameterDescriptionNode> node_left,
30  std::unique_ptr<ParameterDescriptionNode> node_right);
31 
32  ParameterDescriptionNode* clone() const override {
33  return new ORGroupDescription(*this);
34  }
35 
36  private:
37 
38  void checkAndGetLabelsAndTypes_(std::set<std::string> & usedLabels,
39  std::set<ParameterTypes> & parameterTypes,
40  std::set<ParameterTypes> & wildcardTypes) const override;
41 
43  std::set<std::string> & validatedLabels,
44  bool optional) const override;
45 
46  void writeCfi_(std::ostream & os,
47  bool & startWithComma,
48  int indentation,
49  bool & wroteSomething) const override;
50 
51  void print_(std::ostream & os,
52  bool optional,
53  bool writeToCfi,
54  DocFormatHelper & dfh) const override;
55 
56  bool hasNestedContent_() const override {
57  return true;
58  }
59 
60  void printNestedContent_(std::ostream & os,
61  bool optional,
62  DocFormatHelper & dfh) const override;
63 
64  bool exists_(ParameterSet const& pset) const override;
65 
66  bool partiallyExists_(ParameterSet const& pset) const override;
67 
68  int howManyXORSubNodesExist_(ParameterSet const& pset) const override;
69 
70  void throwIfDuplicateLabels(std::set<std::string> const& labelsLeft,
71  std::set<std::string> const& labelsRight) const;
72 
73  void throwIfDuplicateTypes(std::set<ParameterTypes> const& types1,
74  std::set<ParameterTypes> const& types2) const;
75 
78  };
79 }
80 #endif
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
int howManyXORSubNodesExist_(ParameterSet const &pset) const override
void writeCfi_(std::ostream &os, bool &startWithComma, int indentation, bool &wroteSomething) const override
ORGroupDescription(ParameterDescriptionNode const &node_left, ParameterDescriptionNode const &node_right)
void print_(std::ostream &os, bool optional, bool writeToCfi, DocFormatHelper &dfh) const override
bool partiallyExists_(ParameterSet const &pset) 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
HLT enums.
void checkAndGetLabelsAndTypes_(std::set< std::string > &usedLabels, std::set< ParameterTypes > &parameterTypes, std::set< ParameterTypes > &wildcardTypes) const override
edm::value_ptr< ParameterDescriptionNode > node_right_
void printNestedContent_(std::ostream &os, bool optional, DocFormatHelper &dfh) const override
bool hasNestedContent_() const override