CMS 3D CMS Logo

ANDGroupDescription.h
Go to the documentation of this file.
1 #ifndef FWCore_ParameterSet_ANDGroupDescription_h
2 #define FWCore_ParameterSet_ANDGroupDescription_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  ANDGroupDescription(ParameterDescriptionNode const& node_left, ParameterDescriptionNode const& node_right);
21 
22  ANDGroupDescription(std::unique_ptr<ParameterDescriptionNode> node_left,
23  ParameterDescriptionNode const& node_right);
24 
26  std::unique_ptr<ParameterDescriptionNode> node_right);
27 
28  ANDGroupDescription(std::unique_ptr<ParameterDescriptionNode> node_left,
29  std::unique_ptr<ParameterDescriptionNode> node_right);
30 
31  ParameterDescriptionNode* clone() const override { return new ANDGroupDescription(*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_(
41  std::ostream& os, bool optional, bool& startWithComma, int indentation, bool& wroteSomething) const override;
42 
43  void print_(std::ostream& os, bool optional, bool writeToCfi, DocFormatHelper& dfh) const override;
44 
45  bool hasNestedContent_() const override { return true; }
46 
47  void printNestedContent_(std::ostream& os, bool optional, DocFormatHelper& dfh) const override;
48 
49  bool exists_(ParameterSet const& pset) const override;
50 
51  bool partiallyExists_(ParameterSet const& pset) const override;
52 
53  int howManyXORSubNodesExist_(ParameterSet const& pset) const override;
54 
55  void throwIfDuplicateLabels(std::set<std::string> const& labelsLeft,
56  std::set<std::string> const& labelsRight) const;
57 
58  void throwIfDuplicateTypes(std::set<ParameterTypes> const& types1, std::set<ParameterTypes> const& types2) const;
59 
62  };
63 } // namespace edm
64 #endif
void throwIfDuplicateLabels(std::set< std::string > const &labelsLeft, std::set< std::string > const &labelsRight) const
void validate_(ParameterSet &pset, std::set< std::string > &validatedLabels, bool optional) const override
void throwIfDuplicateTypes(std::set< ParameterTypes > const &types1, std::set< ParameterTypes > const &types2) const
void printNestedContent_(std::ostream &os, bool optional, DocFormatHelper &dfh) const override
ANDGroupDescription(ParameterDescriptionNode const &node_left, ParameterDescriptionNode const &node_right)
void checkAndGetLabelsAndTypes_(std::set< std::string > &usedLabels, std::set< ParameterTypes > &parameterTypes, std::set< ParameterTypes > &wildcardTypes) const override
edm::value_ptr< ParameterDescriptionNode > node_right_
bool hasNestedContent_() const override
void print_(std::ostream &os, bool optional, bool writeToCfi, DocFormatHelper &dfh) const override
bool partiallyExists_(ParameterSet const &pset) const override
edm::value_ptr< ParameterDescriptionNode > node_left_
int howManyXORSubNodesExist_(ParameterSet const &pset) const override
optional
Definition: Types.py:239
bool exists_(ParameterSet const &pset) const override
void writeCfi_(std::ostream &os, bool optional, bool &startWithComma, int indentation, bool &wroteSomething) const override
HLT enums.
ParameterDescriptionNode * clone() const override