CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
AllowedLabelsDescriptionBase.cc
Go to the documentation of this file.
1 
7 
8 #include <iomanip>
9 #include <ostream>
10 
11 namespace edm {
12 
14 
17  parameterHoldingLabels_(label, std::vector<std::string>(), isTracked),
18  type_(iType),
19  isTracked_(isTracked) {
20  }
21 
23  AllowedLabelsDescriptionBase(char const* label, ParameterTypes iType, bool isTracked):
24  parameterHoldingLabels_(label, std::vector<std::string>(), isTracked),
25  type_(iType),
26  isTracked_(isTracked) {
27  }
28 
29 
30  void
32  checkAndGetLabelsAndTypes_(std::set<std::string> & usedLabels,
33  std::set<ParameterTypes> & parameterTypes,
34  std::set<ParameterTypes> & wildcardTypes) const {
35 
36  parameterHoldingLabels_.checkAndGetLabelsAndTypes(usedLabels, parameterTypes, wildcardTypes);
37  }
38 
39  void
42  std::set<std::string> & validatedLabels,
43  bool optional) const {
44 
45  parameterHoldingLabels_.validate(pset, validatedLabels, optional);
46  if (parameterHoldingLabels_.exists(pset)) {
47  std::vector<std::string> allowedLabels;
48  if (isTracked()) {
49  allowedLabels = pset.getParameter<std::vector<std::string> >(parameterHoldingLabels_.label());
50  }
51  else {
52  allowedLabels = pset.getUntrackedParameter<std::vector<std::string> >(parameterHoldingLabels_.label());
53  }
55  this,
56  std::placeholders::_1,
57  std::ref(pset),
58  std::ref(validatedLabels)));
59  }
60  }
61 
62  void
64  writeCfi_(std::ostream & os,
65  bool & startWithComma,
66  int indentation,
67  bool & wroteSomething) const {
68  parameterHoldingLabels_.writeCfi(os, startWithComma, indentation, wroteSomething);
69  }
70 
71  void
73  print_(std::ostream & os,
74  bool optional,
75  bool writeToCfi,
76  DocFormatHelper & dfh)
77  {
78  if (dfh.pass() == 1) {
79 
80  dfh.indent(os);
81  os << parameterHoldingLabels_.label() << " (list of allowed labels)";
82 
83  if (dfh.brief()) {
84 
85  if (optional) os << " optional";
86 
87  if (!writeToCfi) os << " (do not write to cfi)";
88 
89  os << " see Section " << dfh.section() << "." << dfh.counter() << "\n";
90  }
91  // not brief
92  else {
93 
94  os << "\n";
95  dfh.indent2(os);
96 
97  if (optional) os << "optional";
98  if (!writeToCfi) os << " (do not write to cfi)";
99  if (optional || !writeToCfi) {
100  os << "\n";
101  dfh.indent2(os);
102  }
103 
104  os << "see Section " << dfh.section() << "." << dfh.counter() << "\n";
105 
106  if (!comment().empty()) {
108  comment(),
109  dfh.startColumn2(),
110  dfh.commentWidth());
111  }
112  os << "\n";
113  }
114  }
115  }
116 
117  bool
120  return true;
121  }
122 
123 
124  void
126  printNestedContent_(std::ostream & os,
127  bool optional,
128  DocFormatHelper & dfh) {
129  printNestedContentBase_(os, optional, dfh);
130  if (!dfh.brief()) os << "\n";
131  }
132 
133  void
135  printNestedContentBase_(std::ostream & os,
136  bool optional,
137  DocFormatHelper & dfh) {
138 
139  int indentation = dfh.indentation();
140  if (dfh.parent() != DocFormatHelper::TOP) {
141  indentation -= DocFormatHelper::offsetSectionContent();
142  }
143 
144  printSpaces(os, indentation);
145  os << "Section " << dfh.section() << "." << dfh.counter()
146  << " " << parameterHoldingLabels_.label()
147  << " - allowed labels description\n";
148  printSpaces(os, indentation);
149  os << "The following parameter contains a list of parameter labels\n";
150  printSpaces(os, indentation);
151  os << "which are allowed to be in the PSet\n";
152  if (!dfh.brief()) os << "\n";
153 
154  DocFormatHelper new_dfh(dfh);
155  new_dfh.init();
156  new_dfh.setPass(1);
157  parameterHoldingLabels_.print(os, optional, true, new_dfh);
158  dfh.indent(os);
159  os << "type of allowed parameters:";
160  if (dfh.brief()) os << " ";
161  else {
162  os << "\n";
163  dfh.indent2(os);
164  }
165  if (!isTracked()) os << "untracked ";
166  os << parameterTypeEnumToString(type()) << "\n";
167  }
168 
169  bool
171  exists_(ParameterSet const& pset) const {
172  return parameterHoldingLabels_.exists(pset);
173  }
174 
175  bool
177  partiallyExists_(ParameterSet const& pset) const {
178  return exists(pset);
179  }
180 
181  int
184  return exists(pset) ? 1 : 0;
185  }
186 }
void printNestedContentBase_(std::ostream &os, bool optional, DocFormatHelper &dfh)
T getParameter(std::string const &) const
T getUntrackedParameter(std::string const &, T const &) const
void validate(ParameterSet &pset, std::set< std::string > &validatedLabels, bool optional) const
static void wrapAndPrintText(std::ostream &os, std::string const &text, size_t indent, size_t suggestedWidth)
virtual bool partiallyExists_(ParameterSet const &pset) const
int startColumn2() const
std::string parameterTypeEnumToString(ParameterTypes iType)
AllowedLabelsDescriptionBase(std::string const &label, ParameterTypes iType, bool isTracked)
DescriptionParent parent() const
Func for_all(ForwardSequence &s, Func f)
wrapper for std::for_each
Definition: Algorithms.h:16
int indentation() const
virtual void checkAndGetLabelsAndTypes_(std::set< std::string > &usedLabels, std::set< ParameterTypes > &parameterTypes, std::set< ParameterTypes > &wildcardTypes) const
std::string const & comment() const
virtual void validateAllowedLabel_(std::string const &allowedLabel, ParameterSet &pset, std::set< std::string > &validatedLabels) const =0
static int offsetSectionContent()
void indent2(std::ostream &os) const
virtual bool exists_(ParameterSet const &pset) const
void setPass(int value)
static void printSpaces(std::ostream &os, int n)
bool exists(ParameterSet const &pset) const
void print(std::ostream &os, bool optional, bool writeToCfi, DocFormatHelper &dfh)
virtual void validate_(ParameterSet &pset, std::set< std::string > &validatedLabels, bool optional) const
ParameterDescription< std::vector< std::string > > parameterHoldingLabels_
virtual void writeCfi_(std::ostream &os, bool &startWithComma, int indentation, bool &wroteSomething) const
void checkAndGetLabelsAndTypes(std::set< std::string > &usedLabels, std::set< ParameterTypes > &parameterTypes, std::set< ParameterTypes > &wildcardTypes) const
void indent(std::ostream &os) const
virtual void printNestedContent_(std::ostream &os, bool optional, DocFormatHelper &dfh)
void writeCfi(std::ostream &os, bool &startWithComma, int indentation, bool &wroteSomething) const
size_t commentWidth() const
virtual void print_(std::ostream &os, bool optional, bool writeToCfi, DocFormatHelper &dfh)
virtual int howManyXORSubNodesExist_(ParameterSet const &pset) const
std::string const & label() const
std::string const & section() const