GM2Calc 2.3.0
Loading...
Searching...
No Matches
slhaea.h
Go to the documentation of this file.
1// SLHAea - containers for SUSY Les Houches Accord input/output
2// Copyright © 2009-2011 Frank S. Thomas <frank@timepit.eu>
3//
4// Distributed under the Boost Software License, Version 1.0.
5// (See accompanying file LICENSE_1_0.txt or copy at
6// http://www.boost.org/LICENSE_1_0.txt)
7
8#ifndef SLHAEA_H
9#define SLHAEA_H
10
11#include <algorithm>
12#include <cctype>
13#include <cstddef>
14#include <deque>
15#include <functional>
16#include <iomanip>
17#include <iostream>
18#include <iterator>
19#include <limits>
20#include <sstream>
21#include <stdexcept>
22#include <string>
23#include <utility>
24#include <vector>
25#include <boost/algorithm/string/classification.hpp>
26#include <boost/algorithm/string/join.hpp>
27#include <boost/algorithm/string/predicate.hpp>
28#include <boost/algorithm/string/split.hpp>
29#include <boost/lexical_cast.hpp>
30
31#if __cplusplus <= 199711L
32#define MEM_FN std::mem_fun_ref
33#else
34#define MEM_FN std::mem_fn
35#endif
36
37namespace SLHAea {
38
39// auxiliary functions
40/**
41 * \brief Converts an object of type \c Source to an object of type
42 * \c Target.
43 * \param arg Object that will be converted.
44 * \return Result of the conversion of \p arg to \c Target.
45 *
46 * This function is a wrapper for
47 * \c boost::lexical_cast<Target>().
48 */
49template<class Target, class Source> inline Target
50to(const Source& arg)
51{ return boost::lexical_cast<Target>(arg); }
52
53/**
54 * \brief Converts an object of type \c Source to a string.
55 * \param arg Object that will be converted.
56 * \return Result of the conversion of \p arg to \c std::string.
57 *
58 * This function is a wrapper for
59 * \c boost::lexical_cast<std::string>().
60 */
61template<class Source> inline std::string
62to_string(const Source& arg)
63{ return boost::lexical_cast<std::string>(arg); }
64
65/**
66 * \brief Converts an object of type \c Source to a string.
67 * \param arg Object that will be converted.
68 * \param precision Precision of float values that are written in
69 * scientific notation.
70 * \return Result of the conversion of \p arg to \c std::string.
71 *
72 * This function is equivalent to \c to_string() except that all
73 * floating-point numbers are written in scientific notation with the
74 * given precision.
75 */
76template<class Source> inline std::string
77to_string(const Source& arg, int precision)
78{
79 std::ostringstream output;
80 output << std::setprecision(precision) << std::scientific << arg;
81 return output.str();
82}
83
84
85namespace detail {
86
87inline bool
88is_all_whitespace(const std::string& str)
89{ return str.find_first_not_of(" \t\n\v\f\r") == std::string::npos; }
90
91inline std::string
92to_upper_copy(const std::string& str)
93{
94 std::string str_upper(str.length(), char());
95 std::transform(str.begin(), str.end(), str_upper.begin(),
96 static_cast<int (*)(int)>(std::toupper));
97 return str_upper;
98}
99
100inline void
101trim_left(std::string& str)
102{
103 const std::size_t startpos = str.find_first_not_of(" \t\n\v\f\r");
104 if (startpos != std::string::npos) str.erase(0, startpos);
105 else str.clear();
106}
107
108inline void
109trim_right(std::string& str)
110{
111 const std::size_t endpos = str.find_last_not_of(" \t\n\v\f\r");
112 if (endpos != std::string::npos) str.erase(endpos + 1);
113 else str.clear();
114}
115
116} // namespace detail
117
118
119// forward declarations
120class Line;
121class Block;
122class Coll;
123struct Key;
124
125inline std::ostream& operator<<(std::ostream& os, const Line& line);
126inline std::ostream& operator<<(std::ostream& os, const Block& block);
127inline std::ostream& operator<<(std::ostream& os, const Coll& coll);
128inline std::ostream& operator<<(std::ostream& os, const Key& key);
129
130
131/**
132 * Container of strings that represents a line in a SLHA structure.
133 * This class is a container of strings that represents a line in a
134 * SLHA structure. The elements of a %Line are the so called fields of
135 * an ordinary SLHA line, which are its whitespace-separated
136 * substrings and the comment. For example, if a %Line is constructed
137 * from the string <tt>" 1 2 0.123 # a comment"</tt> its elements
138 * would be \c "1", \c "2", \c "0.123", and \c "# a comment".
139 * Array-style access to the elements with integer indices is provided
140 * by the operator[]() and at() functions. %Line also provides
141 * introspective functions to find out whether it is a comment or data
142 * line for example. Introspective functions that check if an element
143 * is a block specifier (\c "BLOCK" or \c "DECAY") always perform
144 * case-insensitive comparisons.
145 *
146 * In addition to storing the fields of a SLHA line, a %Line also
147 * stores its formatting (the exact position of the fields in the
148 * line). A formatted representation of a %Line can be produced with
149 * str() const. The reformat() function clears the previous formatting
150 * and indents all elements with an appropriate number of spaces.
151 */
152class Line
153{
154private:
155 typedef std::vector<std::string> impl_type;
156
157public:
158 typedef std::string value_type;
159 typedef std::string& reference;
160 typedef const std::string& const_reference;
161 typedef impl_type::iterator iterator;
162 typedef impl_type::const_iterator const_iterator;
163 typedef impl_type::reverse_iterator reverse_iterator;
164 typedef impl_type::const_reverse_iterator const_reverse_iterator;
165 typedef impl_type::pointer pointer;
166 typedef impl_type::const_pointer const_pointer;
167 typedef impl_type::difference_type difference_type;
168 typedef impl_type::size_type size_type;
169
170 // NOTE: The compiler-generated copy constructor and assignment
171 // operator for this class are just fine, so we don't need to
172 // write our own.
173
174 /** Constructs an empty %Line. */
175 Line() : impl_(), columns_() {}
176
177 /**
178 * \brief Constructs a %Line from a string.
179 * \param line String whose fields are used as content of the %Line.
180 * \sa str()
181 */
182 Line(const std::string& line) : impl_(), columns_()
183 { str(line); }
184
185 /**
186 * \brief Assigns content from a string to the %Line.
187 * \param line String whose fields are used as content of the %Line.
188 * \return Reference to \c *this.
189 *
190 * This function is an alias for str().
191 */
192 Line&
193 operator=(const std::string& line)
194 {
195 str(line);
196 return *this;
197 }
198
199 /**
200 * \brief Appends a string to the end of the %Line.
201 * \param arg String that is appended to the %Line.
202 * \return Reference to \c *this.
203 *
204 * This function is an alias for append().
205 */
206 Line&
207 operator+=(const std::string& arg)
208 {
209 append(arg);
210 return *this;
211 }
212
213 /**
214 * \brief Inserts an element at the end of the %Line.
215 * \param field Element that is inserted at the end of the %Line.
216 * \return Reference to \c *this.
217 *
218 * This function inserts an element at the end of the %Line. If the
219 * the %Line contains a comment, \p field is only appended to the
220 * last element and thus size() remains unchanged.
221 */
222 template<class T> Line&
223 operator<<(const T& field)
224 {
225 std::string field_str = to_string(field);
226 detail::trim_right(field_str);
227 if (field_str.empty()) return *this;
228
229 if (contains_comment())
230 { back() += field_str; }
231 else
232 {
233 detail::trim_left(field_str);
234 impl_.push_back(field_str);
235 reformat();
236 }
237 return *this;
238 }
239
240 /**
241 * \brief Appends a string to the end of the %Line.
242 * \param arg String that is appended to the %Line.
243 * \return Reference to \c *this.
244 *
245 * This function appends \p arg to the output of str() const and
246 * uses this temporary string as input for str(). Based on the
247 * temporary string, size() is increased or remains unchanged.
248 */
249 Line&
250 append(const std::string& arg)
251 {
252 str(str() + arg);
253 return *this;
254 }
255
256 /**
257 * \brief Assigns content to the %Line based on a string.
258 * \param line String whose fields are used as content of the %Line.
259 * \return Reference to \c *this.
260 *
261 * This function parses \p line and sets the found fields as content
262 * of the %Line. If \p line contains newlines, everything after the
263 * first newline is ignored.
264 *
265 * The exact formatting of \p line is stored internally and can be
266 * reproduced with str() const.
267 */
268 Line&
269 str(const std::string& line)
270 {
271 clear();
272 static const std::string whitespace = " \t\v\f\r";
273 const std::size_t last_non_ws =
274 line.substr(0, line.find('\n')).find_last_not_of(whitespace);
275 if (last_non_ws == std::string::npos) return *this;
276
277 const std::string trimmed_line = line.substr(0, last_non_ws + 1);
278 const std::size_t comment_pos = trimmed_line.find('#');
279 const std::string data = trimmed_line.substr(0, comment_pos);
280
281 std::size_t pos1 = data.find_first_not_of(whitespace, 0);
282 std::size_t pos2 = data.find_first_of(whitespace, pos1);
283
284 while (pos1 != std::string::npos)
285 {
286 impl_.push_back(data.substr(pos1, pos2 - pos1));
287 columns_.push_back(pos1);
288
289 pos1 = data.find_first_not_of(whitespace, pos2);
290 pos2 = data.find_first_of(whitespace, pos1);
291 }
292
293 if (comment_pos != std::string::npos)
294 {
295 impl_.push_back(trimmed_line.substr(comment_pos));
296 columns_.push_back(comment_pos);
297 }
298 return *this;
299 }
300
301 /** Returns a formatted string representation of the %Line. */
302 std::string
303 str() const
304 {
305 if (empty()) return "";
306
307 std::ostringstream output;
308 int length = 0, spaces = 0;
309
310 const_iterator field = begin();
311 std::vector<std::size_t>::const_iterator column = columns_.begin();
312 for (; field != end() && column != columns_.end(); ++field, ++column)
313 {
314 spaces = std::max(0, static_cast<int>(*column) - length + 1);
315 length += spaces + field->length();
316
317 output << std::setw(spaces) << " " << *field;
318 }
319 return output.str().substr(1);
320 }
321
322 // element access
323 /**
324 * \brief Subscript access to the strings contained in the %Line.
325 * \param n Index of the string which should be accessed.
326 * \return Read/write reference to the accessed string.
327 *
328 * This operator allows for easy, array-style, data access. Note
329 * that data access with this operator is unchecked and out_of_range
330 * lookups are not defined. (For checked lookups see at().)
331 */
334 { return impl_[n]; }
335
336 /**
337 * \brief Subscript access to the strings contained in the %Line.
338 * \param n Index of the string which should be accessed.
339 * \return Read-only (constant) reference to the accessed string.
340 *
341 * This operator allows for easy, array-style, data access. Note
342 * that data access with this operator is unchecked and out_of_range
343 * lookups are not defined. (For checked lookups see at().)
344 */
347 { return impl_[n]; }
348
349 /**
350 * \brief Provides access to the strings contained in the %Line.
351 * \param n Index of the string which should be accessed.
352 * \return Read/write reference to the accessed string.
353 * \throw std::out_of_range If \p n is an invalid index.
354 */
357 { return impl_.at(n); }
358
359 /**
360 * \brief Provides access to the strings contained in the %Line.
361 * \param n Index of the string which should be accessed.
362 * \return Read-only (constant) reference to the accessed string.
363 * \throw std::out_of_range If \p n is an invalid index.
364 */
366 at(size_type n) const
367 { return impl_.at(n); }
368
369 /**
370 * Returns a read/write reference to the first element of the %Line.
371 */
374 { return impl_.front(); }
375
376 /**
377 * Returns a read-only (constant) reference to the first element of
378 * the %Line.
379 */
381 front() const
382 { return impl_.front(); }
383
384 /**
385 * Returns a read/write reference to the last element of the %Line.
386 */
389 { return impl_.back(); }
390
391 /**
392 * Returns a read-only (constant) reference to the last element of
393 * the %Line.
394 */
396 back() const
397 { return impl_.back(); }
398
399 // iterators
400 /**
401 * Returns a read/write iterator that points to the first element in
402 * the %Line. Iteration is done in ordinary element order.
403 */
406 { return impl_.begin(); }
407
408 /**
409 * Returns a read-only (constant) iterator that points to the first
410 * element in the %Line. Iteration is done in ordinary element
411 * order.
412 */
414 begin() const
415 { return impl_.begin(); }
416
417 /**
418 * Returns a read-only (constant) iterator that points to the first
419 * element in the %Line. Iteration is done in ordinary element
420 * order.
421 */
423 cbegin() const
424 { return impl_.begin(); }
425
426 /**
427 * Returns a read/write iterator that points one past the last
428 * element in the %Line. Iteration is done in ordinary element
429 * order.
430 */
433 { return impl_.end(); }
434
435 /**
436 * Returns a read-only (constant) iterator that points one past the
437 * last element in the %Line. Iteration is done in ordinary element
438 * order.
439 */
441 end() const
442 { return impl_.end(); }
443
444 /**
445 * Returns a read-only (constant) iterator that points one past the
446 * last element in the %Line. Iteration is done in ordinary element
447 * order.
448 */
450 cend() const
451 { return impl_.end(); }
452
453 /**
454 * Returns a read/write reverse iterator that points to the last
455 * element in the %Line. Iteration is done in reverse element order.
456 */
459 { return impl_.rbegin(); }
460
461 /**
462 * Returns a read-only (constant) reverse iterator that points to
463 * the last element in the %Line. Iteration is done in reverse
464 * element order.
465 */
467 rbegin() const
468 { return impl_.rbegin(); }
469
470 /**
471 * Returns a read-only (constant) reverse iterator that points to
472 * the last element in the %Line. Iteration is done in reverse
473 * element order.
474 */
476 crbegin() const
477 { return impl_.rbegin(); }
478
479 /**
480 * Returns a read/write reverse iterator that points to one before
481 * the first element in the %Line. Iteration is done in reverse
482 * element order.
483 */
486 { return impl_.rend(); }
487
488 /**
489 * Returns a read-only (constant) reverse iterator that points to
490 * one before the first element in the %Line. Iteration is done in
491 * reverse element order.
492 */
494 rend() const
495 { return impl_.rend(); }
496
497 /**
498 * Returns a read-only (constant) reverse iterator that points to
499 * one before the first element in the %Line. Iteration is done in
500 * reverse element order.
501 */
503 crend() const
504 { return impl_.rend(); }
505
506 // introspection
507 /**
508 * Returns true if the %Line begins with \c "BLOCK" or \c "DECAY"
509 * followed by a block name.
510 */
511 bool
513 {
514 if (size() < 2) return false;
515
516 const_iterator field = begin();
517 return is_block_specifier(*field) && !is_comment(*++field);
518 }
519
520 /** Returns true if the %Line begins with \c "#". */
521 bool
523 { return !empty() && is_comment(front()); }
524
525 /**
526 * Returns true if the %Line is not empty and if it does not begin
527 * with \c "#", \c "BLOCK" or \c "DECAY".
528 */
529 bool
531 { return !empty() && !is_comment(front()) && !is_block_specifier(front()); }
532
533 // capacity
534 /** Returns the number of elements in the %Line. */
536 size() const
537 { return impl_.size(); }
538
539 /**
540 * Returns the number of elements without the comment in the %Line.
541 */
543 data_size() const
544 { return std::distance(begin(), std::find_if(begin(), end(), is_comment)); }
545
546 /** Returns the size() of the largest possible %Line. */
548 max_size() const
549 { return impl_.max_size(); }
550
551 /** Returns true if the %Line is empty. */
552 bool
553 empty() const
554 { return impl_.empty(); }
555
556 // modifiers
557 /**
558 * \brief Swaps data with another %Line.
559 * \param line %Line to be swapped with.
560 */
561 void
562 swap(Line& line)
563 {
564 impl_.swap(line.impl_);
565 columns_.swap(line.columns_);
566 }
567
568 /** Erases all the elements in the %Line. */
569 void
571 {
572 impl_.clear();
573 columns_.clear();
574 }
575
576 /** Reformats the string representation of the %Line. */
577 void
579 {
580 if (empty()) return;
581
582 columns_.clear();
583 const_iterator field = begin();
584 std::size_t pos1 = 0, pos2 = 0;
585
586 if (is_block_specifier(*field))
587 {
588 pos1 = 0;
589 pos2 = pos1 + field->length();
590 columns_.push_back(pos1);
591
592 if (++field == end()) return;
593
594 pos1 = pos2 + 1;
595 pos2 = pos1 + field->length();
596 columns_.push_back(pos1);
597 }
598 else if (is_comment(*field))
599 {
600 pos1 = 0;
601 pos2 = pos1 + field->length();
602 columns_.push_back(pos1);
603 }
604 else
605 {
606 pos1 = shift_width_;
607 pos2 = pos1 + field->length();
608 columns_.push_back(pos1);
609 }
610
611 while (++field != end())
612 {
613 pos1 = pos2 + calc_spaces_for_indent(pos2);
614 if (starts_with_sign(*field)) --pos1;
615 pos2 = pos1 + field->length();
616 columns_.push_back(pos1);
617 }
618 }
619
620 /**
621 * Comments the %Line. This function prefixes the %Line with a
622 * \c "#" and packetizes all its elements into one.
623 */
624 void
626 { if (!empty()) str("#" + str()); }
627
628 /**
629 * Uncomments the %Line. This function removes the first character
630 * of the %Line if it is a \c "#" and splits the former comment into
631 * the corresponding number of fields.
632 */
633 void
635 {
636 if (!empty() && is_comment(front()))
637 {
638 front().erase(0, 1);
639 str(str());
640 }
641 }
642
643private:
644 bool
645 contains_comment() const
646 { return std::find_if(rbegin(), rend(), is_comment) != rend(); }
647
648 static std::size_t
649 calc_spaces_for_indent(const std::size_t& pos)
650 {
651 std::size_t width = shift_width_ - (pos % shift_width_);
652 if (width < min_width_) width += shift_width_;
653 return width;
654 }
655
656 static bool
657 is_block_specifier(const value_type& field)
658 {
659 static const std::size_t specifier_length = 5;
660 if (field.length() != specifier_length) return false;
661
662 const value_type field_upper = detail::to_upper_copy(field);
663 return (field_upper == "BLOCK") || (field_upper == "DECAY");
664 }
665
666 static bool
667 is_comment(const value_type& field)
668 { return !field.empty() && field[0] == '#'; }
669
670 template<class T> Line&
671 insert_fundamental_type(const T& arg)
672 {
673 static const int digits = std::numeric_limits<T>::digits10;
674 return *this << to_string(arg, digits);
675 }
676
677 static bool
678 starts_with_sign(const value_type& field)
679 { return !field.empty() && (field[0] == '-' || field[0] == '+'); }
680
681private:
682 impl_type impl_;
683 std::vector<std::size_t> columns_;
684
685 static const std::size_t shift_width_ = 4;
686 static const std::size_t min_width_ = 2;
687};
688
689template<> inline Line&
690Line::operator<< <float>(const float& number)
691{
692 insert_fundamental_type(number);
693 return *this;
694}
695
696template<> inline Line&
697Line::operator<< <double>(const double& number)
698{
699 insert_fundamental_type(number);
700 return *this;
701}
702
703template<> inline Line&
704Line::operator<< <long double>(const long double& number)
705{
706 insert_fundamental_type(number);
707 return *this;
708}
709
710
711/**
712 * Container of Lines that resembles a block in a SLHA structure.
713 * This class is a named container of Lines that resembles a block in
714 * a SLHA structure. Unlike a block in a SLHA structure, a %Block can
715 * contain any number of block definitions or it can be completely
716 * empty.
717 *
718 * Access to the elements of the %Block is provided by the
719 * operator[]() and at() functions. These take one or more strings
720 * resp. ints as argument(s) and compare them against the first
721 * strings of the contained Lines (the ints are converted to strings
722 * before comparison). The first Line that matches the provided
723 * arguments is then returned, or if no matching Line is found, an
724 * empty Line is appended to the %Block (operator[]()) or
725 * \c std::out_of_range is thrown (at()). The special argument
726 * \c "(any)" will be considered equal to all strings in the Lines.
727 * For example, <tt>at("(any)", "2")</tt> returns the first Line whose
728 * second element is \c "2".
729 */
730class Block
731{
732private:
733 typedef std::vector<Line> impl_type;
734
735public:
736 typedef std::vector<std::string> key_type;
738 typedef Line& reference;
739 typedef const Line& const_reference;
740 typedef impl_type::iterator iterator;
741 typedef impl_type::const_iterator const_iterator;
742 typedef impl_type::reverse_iterator reverse_iterator;
743 typedef impl_type::const_reverse_iterator const_reverse_iterator;
744 typedef impl_type::pointer pointer;
745 typedef impl_type::const_pointer const_pointer;
746 typedef impl_type::difference_type difference_type;
747 typedef impl_type::size_type size_type;
748
749 // NOTE: The compiler-generated copy constructor and assignment
750 // operator for this class are just fine, so we don't need to
751 // write our own.
752
753 /**
754 * \brief Constructs an empty %Block.
755 * \param name Name of the %Block.
756 */
757 explicit
758 Block(const std::string& name = "") : name_(name), impl_() {}
759
760 /**
761 * \brief Constructs a %Block with content from an input stream.
762 * \param is Input stream to read content from.
763 * \sa read()
764 */
765 explicit
766 Block(std::istream& is) : name_(), impl_()
767 { read(is); }
768
769 /**
770 * \brief Constructs a %Block with content from a string.
771 * \param block String to read content from.
772 */
773 static Block
774 from_str(const std::string& block)
775 {
776 std::istringstream input(block);
777 return Block(input);
778 }
779
780 /**
781 * \brief Sets the name of the %Block.
782 * \param newName New name of the %Block.
783 *
784 * Notice that this function only changes a property of the %Block.
785 * No contained Line (in particular no block definition) is changed.
786 */
787 void
788 name(const std::string& newName)
789 { name_ = newName; }
790
791 /** Returns the name of the %Block. */
792 const std::string&
793 name() const
794 { return name_; }
795
796 /**
797 * \brief Changes the name and definition of the %Block.
798 * \param newName New name of the %Block.
799 *
800 * In contrast to name() this function changes the name of the
801 * %Block and its first block definition (if it exists).
802 */
803 void
804 rename(const std::string& newName)
805 {
806 name(newName);
807 iterator block_def = find_block_def();
808 if (block_def != end()) (*block_def)[1] = newName;
809 }
810
811 /**
812 * \brief Assigns content from an input stream to the %Block.
813 * \param is Input stream to read content from.
814 * \return Reference to \c *this.
815 *
816 * This function reads non-empty lines from \p is, transforms them
817 * into Lines and adds them to the end of the %Block. Lines from
818 * \p is are read until the second block definition is encountered
819 * or until the end of the stream, whatever comes first. If \p is
820 * contains a block definition and the current name of the %Block is
821 * empty, it is changed accordingly.
822 */
823 Block&
824 read(std::istream& is)
825 {
826 std::string line_str;
827 value_type line;
828
829 std::size_t def_count = 0;
830 bool nameless = name().empty();
831
832 while (std::getline(is, line_str))
833 {
834 if (detail::is_all_whitespace(line_str)) continue;
835
836 line.str(line_str);
837 if (line.is_block_def())
838 {
839 if (++def_count > 1)
840 {
841 is.seekg(-static_cast<std::ptrdiff_t>(line_str.length() + 1), std::ios_base::cur);
842 break;
843 }
844 if (nameless)
845 {
846 name(line[1]);
847 nameless = false;
848 }
849 }
850 push_back(line);
851 }
852 return *this;
853 }
854
855 /**
856 * \brief Assigns content from a string to the %Block.
857 * \param block String that is used as content for the %Block.
858 * \return Reference to \c *this.
859 *
860 * This function clears the name and content of the %Block and adds
861 * every non-empty line found in \p block as Line to the end of the
862 * %Block. If \p block contains a block definition, the name of the
863 * %Block is set accordingly. If \p block contains more than two
864 * block definitions, only the lines before the second block
865 * definition are added to the %Block.
866 */
867 Block&
868 str(const std::string& block)
869 {
870 std::istringstream input(block);
871 clear();
872 read(input);
873 return *this;
874 }
875
876 /** Returns a string representation of the %Block. */
877 std::string
878 str() const
879 {
880 std::ostringstream output;
881 output << *this;
882 return output.str();
883 }
884
885 // element access
886 /**
887 * \brief Locates a Line in the %Block.
888 * \param key First strings of the Line to be located.
889 * \return Read/write reference to sought-after Line.
890 *
891 * This function takes a key (which is a vector of strings) and
892 * locates the Line whose first strings are equal to the strings in
893 * \p key. If no such Line exists, this function creates an empty
894 * Line at the end of the %Block and returns a reference to it.
895 */
898 {
899 iterator line = find(key);
900 if (line != end()) return *line;
901
903 return back();
904 }
905
906 /**
907 * \brief Locates a Line in the %Block.
908 * \param key Integers that are used to locate the Line.
909 * \return Read/write reference to sought-after Line.
910 *
911 * This function takes a key (which is a vector of ints) and locates
912 * the Line whose first strings are equal to the to strings
913 * converted ints in \p key. If no such Line exists, this function
914 * creates an empty Line at the end of the %Block and returns a
915 * reference to it.
916 */
918 operator[](const std::vector<int>& key)
919 { return (*this)[cont_to_key(key)]; }
920
921 /**
922 * \brief Locates a Line in the %Block.
923 * \param key String that is used to locate the Line.
924 * \return Read/write reference to sought-after Line.
925 *
926 * This function locates the Line whose first string is equal to
927 * \p key. If no such Line exists, this function creates an empty
928 * Line at the end of the %Block and returns a reference to it.
929 */
931 operator[](const std::string& key)
932 { return (*this)[key_type(1, key)]; }
933
934 /**
935 * \brief Locates a Line in the %Block.
936 * \param key Integer that is used to locate the Line.
937 * \return Read/write reference to sought-after Line.
938 *
939 * This function locates the Line whose first string is equal to the
940 * to string converted \p key. If no such Line exists, this function
941 * creates an empty Line at the end of the %Block and returns a
942 * reference to it.
943 */
945 operator[](int key)
946 { return (*this)[key_type(1, to_string(key))]; }
947
948 /**
949 * \brief Locates a Line in the %Block.
950 * \param key First strings of the Line to be located.
951 * \return Read/write reference to sought-after Line.
952 * \throw std::out_of_range If \p key does not match any Line.
953 *
954 * This function takes a key (which is a vector of strings) and
955 * locates the Line whose first strings are equal to the strings in
956 * \p key. If no such Line exists, \c std::out_of_range is thrown.
957 */
959 at(const key_type& key)
960 {
961 iterator line = find(key);
962 if (line != end()) return *line;
963
964 throw std::out_of_range(
965 "SLHAea::Block::at(‘" + boost::join(key, ",") + "’)");
966 }
967
968 /**
969 * \brief Locates a Line in the %Block.
970 * \param key First strings of the Line to be located.
971 * \return Read-only (constant) reference to sought-after Line.
972 * \throw std::out_of_range If \p key does not match any Line.
973 *
974 * This function takes a key (which is a vector of strings) and
975 * locates the Line whose first strings are equal to the strings in
976 * \p key. If no such Line exists, \c std::out_of_range is thrown.
977 */
979 at(const key_type& key) const
980 {
981 const_iterator line = find(key);
982 if (line != end()) return *line;
983
984 throw std::out_of_range(
985 "SLHAea::Block::at(‘" + boost::join(key, ",") + "’)");
986 }
987
988 /**
989 * \brief Locates a Line in the %Block.
990 * \param key Integers that are used to locate the Line.
991 * \return Read/write reference to sought-after Line.
992 * \throw std::out_of_range If \p key does not match any Line.
993 *
994 * This function takes a vector of ints and locates the Line whose
995 * first strings are equal to the to strings converted ints in
996 * \p key. If no such Line exists, \c std::out_of_range is thrown.
997 */
999 at(const std::vector<int>& key)
1000 { return at(cont_to_key(key)); }
1001
1002 /**
1003 * \brief Locates a Line in the %Block.
1004 * \param key Integers that are used to locate the Line.
1005 * \return Read-only (constant) reference to sought-after Line.
1006 * \throw std::out_of_range If \p key does not match any Line.
1007 *
1008 * This function takes a vector of ints and locates the Line whose
1009 * first strings are equal to the to strings converted ints in
1010 * \p key. If no such Line exists, \c std::out_of_range is thrown.
1011 */
1013 at(const std::vector<int>& key) const
1014 { return at(cont_to_key(key)); }
1015
1016 /**
1017 * \brief Locates a Line in the %Block.
1018 * \param s0, s1, s2, s3, s4 First strings of the Line to be
1019 * located.
1020 * \return Read/write reference to sought-after Line.
1021 * \throw std::out_of_range If provided strings do not match any
1022 * Line.
1023 *
1024 * This function takes up to five strings and locates the Line whose
1025 * first strings are equal to all provided non-empty strings. If no
1026 * such Line exists, \c std::out_of_range is thrown.
1027 */
1028 reference
1029 at(const std::string& s0, const std::string& s1 = "",
1030 const std::string& s2 = "", const std::string& s3 = "",
1031 const std::string& s4 = "")
1032 { return at(strings_to_key(s0, s1, s2, s3, s4)); }
1033
1034 /**
1035 * \brief Locates a Line in the %Block.
1036 * \param s0, s1, s2, s3, s4 First strings of the Line to be
1037 * located.
1038 * \return Read-only (constant) reference to sought-after Line.
1039 * \throw std::out_of_range If provided strings do not match any
1040 * Line.
1041 *
1042 * This function takes up to five strings and locates the Line whose
1043 * first strings are equal to all provided non-empty strings. If no
1044 * such Line exists, \c std::out_of_range is thrown.
1045 */
1047 at(const std::string& s0, const std::string& s1 = "",
1048 const std::string& s2 = "", const std::string& s3 = "",
1049 const std::string& s4 = "") const
1050 { return at(strings_to_key(s0, s1, s2, s3, s4)); }
1051
1052 /**
1053 * \brief Locates a Line in the %Block.
1054 * \param i0, i1, i2, i3, i4 Integers that are used to locate the
1055 * Line.
1056 * \return Read/write reference to sought-after Line.
1057 * \throw std::out_of_range If provided ints do not match any
1058 * Line.
1059 *
1060 * This function takes up to five ints and locates the Line whose
1061 * first strings are equal to all provided to string converted ints.
1062 * If no such Line exists, \c std::out_of_range is thrown.
1063 */
1064 reference
1065 at(int i0, int i1 = no_index_, int i2 = no_index_,
1066 int i3 = no_index_, int i4 = no_index_)
1067 { return at(ints_to_key(i0, i1, i2, i3, i4)); }
1068
1069 /**
1070 * \brief Locates a Line in the %Block.
1071 * \param i0, i1, i2, i3, i4 Integers that are used to locate the
1072 * Line.
1073 * \return Read-only (constant) reference to sought-after Line.
1074 * \throw std::out_of_range If provided ints do not match any Line.
1075 *
1076 * This function takes up to five ints and locates the Line whose
1077 * first strings are equal to all provided to string converted ints.
1078 * If no such Line exists, \c std::out_of_range is thrown.
1079 */
1081 at(int i0, int i1 = no_index_, int i2 = no_index_,
1082 int i3 = no_index_, int i4 = no_index_) const
1083 { return at(ints_to_key(i0, i1, i2, i3, i4)); }
1084
1085 /**
1086 * Returns a read/write reference to the first element of the
1087 * %Block.
1088 */
1089 reference
1091 { return impl_.front(); }
1092
1093 /**
1094 * Returns a read-only (constant) reference to the first element of
1095 * the %Block.
1096 */
1098 front() const
1099 { return impl_.front(); }
1100
1101 /**
1102 * Returns a read/write reference to the last element of the %Block.
1103 */
1104 reference
1106 { return impl_.back(); }
1107
1108 /**
1109 * Returns a read-only (constant) reference to the last element of
1110 * the %Block.
1111 */
1113 back() const
1114 { return impl_.back(); }
1115
1116 // iterators
1117 /**
1118 * Returns a read/write iterator that points to the first element in
1119 * the %Block. Iteration is done in ordinary element order.
1120 */
1121 iterator
1123 { return impl_.begin(); }
1124
1125 /**
1126 * Returns a read-only (constant) iterator that points to the first
1127 * element in the %Block. Iteration is done in ordinary element
1128 * order.
1129 */
1131 begin() const
1132 { return impl_.begin(); }
1133
1134 /**
1135 * Returns a read-only (constant) iterator that points to the first
1136 * element in the %Block. Iteration is done in ordinary element
1137 * order.
1138 */
1140 cbegin() const
1141 { return impl_.begin(); }
1142
1143 /**
1144 * Returns a read/write iterator that points one past the last
1145 * element in the %Block. Iteration is done in ordinary element
1146 * order.
1147 */
1148 iterator
1150 { return impl_.end(); }
1151
1152 /**
1153 * Returns a read-only (constant) iterator that points one past the
1154 * last element in the %Block. Iteration is done in ordinary element
1155 * order.
1156 */
1158 end() const
1159 { return impl_.end(); }
1160
1161 /**
1162 * Returns a read-only (constant) iterator that points one past the
1163 * last element in the %Block. Iteration is done in ordinary element
1164 * order.
1165 */
1167 cend() const
1168 { return impl_.end(); }
1169
1170 /**
1171 * Returns a read/write reverse iterator that points to the last
1172 * element in the %Block. Iteration is done in reverse element
1173 * order.
1174 */
1177 { return impl_.rbegin(); }
1178
1179 /**
1180 * Returns a read-only (constant) reverse iterator that points to
1181 * the last element in the %Block. Iteration is done in reverse
1182 * element order.
1183 */
1185 rbegin() const
1186 { return impl_.rbegin(); }
1187
1188 /**
1189 * Returns a read-only (constant) reverse iterator that points to
1190 * the last element in the %Block. Iteration is done in reverse
1191 * element order.
1192 */
1194 crbegin() const
1195 { return impl_.rbegin(); }
1196
1197 /**
1198 * Returns a read/write reverse iterator that points to one before
1199 * the first element in the %Block. Iteration is done in reverse
1200 * element order.
1201 */
1204 { return impl_.rend(); }
1205
1206 /**
1207 * Returns a read-only (constant) reverse iterator that points to
1208 * one before the first element in the %Block. Iteration is done
1209 * in reverse element order.
1210 */
1212 rend() const
1213 { return impl_.rend(); }
1214
1215 /**
1216 * Returns a read-only (constant) reverse iterator that points to
1217 * one before the first element in the %Block. Iteration is done
1218 * in reverse element order.
1219 */
1221 crend() const
1222 { return impl_.rend(); }
1223
1224 // lookup
1225 /**
1226 * \brief Tries to locate a Line in the %Block.
1227 * \param key First strings of the Line to be located.
1228 * \return Read/write iterator pointing to sought-after element, or
1229 * end() if not found.
1230 *
1231 * This function takes a key (which is a vector of strings) and
1232 * tries to locate the Line whose first strings are equal to the
1233 * strings in \p key. If successful the function returns a
1234 * read/write iterator pointing to the sought after Line. If
1235 * unsuccessful it returns end().
1236 */
1237 iterator
1238 find(const key_type& key)
1239 { return std::find_if(begin(), end(), key_matches(key)); }
1240
1241 /**
1242 * \brief Tries to locate a Line in the %Block.
1243 * \param key First strings of the Line to be located.
1244 * \return Read-only (constant) iterator pointing to sought-after
1245 * element, or end() const if not found.
1246 *
1247 * This function takes a key (which is a vector of strings) and
1248 * tries to locate the Line whose first strings are equal to the
1249 * strings in \p key. If successful the function returns a read-only
1250 * (constant) iterator pointing to the sought after Line. If
1251 * unsuccessful it returns end() const.
1252 */
1254 find(const key_type& key) const
1255 { return std::find_if(begin(), end(), key_matches(key)); }
1256
1257 /**
1258 * \brief Tries to locate a Line in a range.
1259 * \param first, last Input iterators to the initial and final
1260 * positions in a sequence.
1261 * \param key First strings of the Line to be located.
1262 * \return Iterator pointing to sought-after element, or \p last if
1263 * not found.
1264 *
1265 * This function tries to locate in the range [\p first, \p last)
1266 * the Line whose first strings are equal to the strings in \p key.
1267 * If successful the function returns an iterator pointing to the
1268 * sought after Line. If unsuccessful it returns \p last.
1269 */
1270 template<class InputIterator> static InputIterator
1271 find(InputIterator first, InputIterator last, const key_type& key)
1272 { return std::find_if(first, last, key_matches(key)); }
1273
1274 /**
1275 * Returns a read/write iterator that points to the first Line in
1276 * the %Block which is a block definition. If the %Block does not
1277 * contain a block definition, end() is returned.
1278 */
1279 iterator
1281 {
1282 return std::find_if(begin(), end(),
1284 }
1285
1286 /**
1287 * Returns a read-only (constant) iterator that points to the first
1288 * Line in the %Block which is a block definition. If the %Block
1289 * does not contain a block definition, end() const is returned.
1290 */
1293 {
1294 return std::find_if(begin(), end(),
1296 }
1297
1298 // introspection
1299 /**
1300 * \brief Counts all Lines that match a given key.
1301 * \param key First strings of the Lines that will be counted.
1302 * \return Number of lines whose first strings equal \p key.
1303 */
1304 size_type
1305 count(const key_type& key) const
1306 { return std::count_if(begin(), end(), key_matches(key)); }
1307
1308 // capacity
1309 /** Returns the number of elements in the %Block. */
1310 size_type
1311 size() const
1312 { return impl_.size(); }
1313
1314 /** Returns the number of data Lines in the %Block. */
1315 size_type
1317 {
1318 return std::count_if(begin(), end(),
1320 }
1321
1322 /** Returns the size() of the largest possible %Block. */
1323 size_type
1324 max_size() const
1325 { return impl_.max_size(); }
1326
1327 /** Returns true if the %Block is empty. */
1328 bool
1329 empty() const
1330 { return impl_.empty(); }
1331
1332 // modifiers
1333 /**
1334 * \brief Adds a Line to the end of the %Block.
1335 * \param line Line to be added.
1336 *
1337 * This function creates an element at the end of the %Block and
1338 * assigns the given \p line to it.
1339 */
1340 void
1342 { impl_.push_back(line); }
1343
1344 /**
1345 * \brief Adds a Line to the end of the %Block.
1346 * \param line String that is used to construct the Line that will
1347 * be added.
1348 *
1349 * This function creates an element at the end of the %Block and
1350 * assigns the Line that is constructed from \p line to it.
1351 */
1352 void
1353 push_back(const std::string& line)
1354 { impl_.push_back(value_type(line)); }
1355
1356 /**
1357 * Removes the last element. This function shrinks the size() of the
1358 * %Block by one.
1359 */
1360 void
1362 { impl_.pop_back(); }
1363
1364 /**
1365 * \brief Inserts a Line before given \p position.
1366 * \param position Iterator into the %Block.
1367 * \param line Line to be inserted.
1368 * \return Iterator pointing to the inserted element.
1369 *
1370 * This function inserts a copy of \p line before the specified
1371 * \p position and thus enlarges the %Block by one.
1372 */
1373 iterator
1374 insert(iterator position, const value_type& line)
1375 { return impl_.insert(position, line); }
1376
1377 /**
1378 * \brief Inserts a range into the %Block.
1379 * \param position Iterator into the %Block.
1380 * \param first, last Input iterators to the initial and final
1381 * positions in a sequence.
1382 *
1383 * This function inserts copies of the Lines in the range
1384 * [\p first, \p last) into the %Block before the specified
1385 * \p position and thus enlarges the %Block accordingly.
1386 */
1387 template<class InputIterator> void
1388 insert(iterator position, InputIterator first, InputIterator last)
1389 { impl_.insert(position, first, last); }
1390
1391 /**
1392 * \brief Erases element at given \p position.
1393 * \param position Iterator pointing to the element to be erased.
1394 * \return Iterator pointing to the next element (or end()).
1395 *
1396 * This function erases the element at the given \p position and
1397 * thus shortens the %Block by one.
1398 */
1399 iterator
1400 erase(iterator position)
1401 { return impl_.erase(position); }
1402
1403 /**
1404 * \brief Erases a range of elements.
1405 * \param first Iterator pointing to the first element to be erased.
1406 * \param last Iterator pointing to one past the last element to be
1407 * erased.
1408 * \return Iterator pointing to the element pointed to by \p last
1409 * prior to erasing (or end()).
1410 *
1411 * This function erases the elements in the range [\p first,
1412 * \p last) and shortens the %Block accordingly.
1413 */
1414 iterator
1416 { return impl_.erase(first, last); }
1417
1418 /**
1419 * \brief Erases first Line that matches the provided key.
1420 * \param key First strings of the Line to be erased.
1421 * \return Iterator pointing to the next element (or end()).
1422 *
1423 * This function takes a key (which is a vector of strings) and
1424 * erases the first Line whose first strings are equal to the strings
1425 * in \p key. If the %Block contains such Line, the function returns
1426 * an iterator pointing to the next element (or end()). If no such
1427 * Line exists, end() is returned.
1428 */
1429 iterator
1431 {
1432 iterator line = find(key);
1433 return (line != end()) ? erase(line) : line;
1434 }
1435
1436 /**
1437 * \brief Erases last Line that matches the provided key.
1438 * \param key First strings of the Line to be erased.
1439 * \return Iterator pointing to the next element (or end()).
1440 *
1441 * This function takes a key (which is a vector of strings) and
1442 * erases the last Line whose first strings are equal to the strings
1443 * in \p key. If the %Block contains such Line, the function returns
1444 * an iterator pointing to the next element (or end()). If no such
1445 * Line exists, end() is returned.
1446 */
1447 iterator
1449 {
1450 reverse_iterator line = find(rbegin(), rend(), key);
1451 return (line != rend()) ? erase((++line).base()) : end();
1452 }
1453
1454 /**
1455 * \brief Erases all Lines that match the provided key.
1456 * \param key First strings of the Lines to be erased.
1457 * \return The number of Lines erased.
1458 *
1459 * This function takes a key (which is a vector of strings) and
1460 * erases all Lines whose first strings are equal to the strings
1461 * in \p key.
1462 */
1463 size_type
1464 erase(const key_type& key)
1465 {
1466 const key_matches pred(key);
1467 size_type erased_count = 0;
1468
1469 for (iterator line = begin(); line != end();)
1470 {
1471 if (pred(*line))
1472 {
1473 line = erase(line);
1474 ++erased_count;
1475 }
1476 else ++line;
1477 }
1478 return erased_count;
1479 }
1480
1481 /**
1482 * \brief Swaps data with another %Block.
1483 * \param block %Block to be swapped with.
1484 */
1485 void
1486 swap(Block& block)
1487 {
1488 name_.swap(block.name_);
1489 impl_.swap(block.impl_);
1490 }
1491
1492 /**
1493 * Erases all the elements in the %Block and set its name to an
1494 * empty string.
1495 */
1496 void
1498 {
1499 name_.clear();
1500 impl_.clear();
1501 }
1502
1503 /**
1504 * \brief Reformats all Lines in the %Block.
1505 * \sa Line::reformat()
1506 */
1507 void
1509 { std::for_each(begin(), end(), MEM_FN(&value_type::reformat)); }
1510
1511 /**
1512 * \brief Comments all Lines in the %Block.
1513 * \sa Line::comment()
1514 */
1515 void
1517 { std::for_each(begin(), end(), MEM_FN(&value_type::comment)); }
1518
1519 /**
1520 * \brief Uncomments all Lines in the %Block.
1521 * \sa Line::uncomment()
1522 */
1523 void
1525 { std::for_each(begin(), end(), MEM_FN(&value_type::uncomment)); }
1526
1527 /** Unary predicate that checks if a provided key matches a Line. */
1529 {
1530 explicit
1531 key_matches(const key_type& key) : key_(key) {}
1532
1533 bool
1534 operator()(const value_type& line) const
1535 {
1536 return (key_.empty() || key_.size() > line.size()) ? false :
1537 std::equal(key_.begin(), key_.end(), line.begin(), parts_equal);
1538 }
1539
1540 void
1541 set_key(const key_type& key)
1542 { key_ = key; }
1543
1544 private:
1545 static bool
1546 parts_equal(const std::string& key_part, const std::string& field)
1547 { return (key_part == "(any)") || boost::iequals(key_part, field); }
1548
1549 private:
1550 key_type key_;
1551 };
1552
1553private:
1554 template<class Container> static key_type
1555 cont_to_key(const Container& cont)
1556 {
1557 key_type key;
1558 key.reserve(cont.size());
1559 std::string (*to_string)(const typename Container::value_type&) =
1560 boost::lexical_cast<std::string, typename Container::value_type>;
1561 std::transform(cont.begin(), cont.end(), std::back_inserter(key),
1562 to_string);
1563 return key;
1564 }
1565
1566 static key_type
1567 strings_to_key(const std::string& s0, const std::string& s1,
1568 const std::string& s2, const std::string& s3,
1569 const std::string& s4)
1570 {
1571 key_type key;
1572 key.reserve(5);
1573 if (s0.empty()) { return key; } key.push_back(s0);
1574 if (s1.empty()) { return key; } key.push_back(s1);
1575 if (s2.empty()) { return key; } key.push_back(s2);
1576 if (s3.empty()) { return key; } key.push_back(s3);
1577 if (s4.empty()) { return key; } key.push_back(s4);
1578 return key;
1579 }
1580
1581 static key_type
1582 ints_to_key(int i0, int i1, int i2, int i3, int i4)
1583 {
1584 key_type key;
1585 key.reserve(5);
1586 if (i0 == no_index_) { return key; } key.push_back(to_string(i0));
1587 if (i1 == no_index_) { return key; } key.push_back(to_string(i1));
1588 if (i2 == no_index_) { return key; } key.push_back(to_string(i2));
1589 if (i3 == no_index_) { return key; } key.push_back(to_string(i3));
1590 if (i4 == no_index_) { return key; } key.push_back(to_string(i4));
1591 return key;
1592 }
1593
1594private:
1595 std::string name_;
1596 impl_type impl_;
1597 static const int no_index_ = -32768;
1598};
1599
1600
1601/**
1602 * Container of Blocks that resembles a complete SLHA structure.
1603 * This class is a container of Blocks that resembles a complete SLHA
1604 * structure. Its name is an abbreviation of "collection" since it is
1605 * a collection of Blocks. The elements of %Coll objects can be
1606 * accessed via their names (which are always compared
1607 * case-insensitive) with the operator[]() and at() functions and
1608 * access to single fields, Lines and Blocks via the Key type is
1609 * provided by the field(), line() and block() functions. To fill this
1610 * container, the functions read() or str() can be used which read
1611 * data from an input stream or a string, respectively.
1612 */
1613class Coll
1614{
1615private:
1616 typedef std::deque<Block> impl_type;
1617
1618public:
1619 typedef std::string key_type;
1622 typedef const Block& const_reference;
1623 typedef impl_type::iterator iterator;
1624 typedef impl_type::const_iterator const_iterator;
1625 typedef impl_type::reverse_iterator reverse_iterator;
1626 typedef impl_type::const_reverse_iterator const_reverse_iterator;
1627 typedef impl_type::pointer pointer;
1628 typedef impl_type::const_pointer const_pointer;
1629 typedef impl_type::difference_type difference_type;
1630 typedef impl_type::size_type size_type;
1631
1632 // NOTE: The compiler-generated copy constructor and assignment
1633 // operator for this class are just fine, so we don't need to
1634 // write our own.
1635
1636 /** Constructs an empty %Coll. */
1637 Coll() : impl_() {}
1638
1639 /**
1640 * \brief Constructs a %Coll with content from an input stream.
1641 * \param is Input stream to read content from.
1642 * \sa read()
1643 */
1644 explicit
1645 Coll(std::istream& is) : impl_()
1646 { read(is); }
1647
1648 /**
1649 * \brief Constructs a %Coll with content from a string.
1650 * \param coll String to read content from.
1651 */
1652 static Coll
1653 from_str(const std::string& coll)
1654 {
1655 std::istringstream input(coll);
1656 return Coll(input);
1657 }
1658
1659 /**
1660 * \brief Assigns content from an input stream to the %Coll.
1661 * \param is Input stream to read content from.
1662 * \returns Reference to \c *this.
1663 *
1664 * This function reads non-empty lines from \p is, transforms them
1665 * into Lines, which are collected into the corresponding Blocks
1666 * that are added to the %Coll.
1667 */
1668 Coll&
1669 read(std::istream& is)
1670 {
1671 std::string line_str;
1672 Line line;
1673
1674 const size_type orig_size = size();
1675 pointer block = push_back_named_block("");
1676
1677 while (std::getline(is, line_str))
1678 {
1679 if (detail::is_all_whitespace(line_str)) continue;
1680
1681 line.str(line_str);
1682 if (line.is_block_def()) block = push_back_named_block(line[1]);
1684 }
1685
1686 erase_if_empty("", orig_size);
1687 return *this;
1688 }
1689
1690 /**
1691 * \brief Assigns content from a string to the %Coll.
1692 * \param coll String that is used as content for the %Coll.
1693 * \returns Reference to \c *this.
1694 */
1695 Coll&
1696 str(const std::string& coll)
1697 {
1698 std::istringstream input(coll);
1699 clear();
1700 read(input);
1701 return *this;
1702 }
1703
1704 /** Returns a string representation of the %Coll. */
1705 std::string
1706 str() const
1707 {
1708 std::ostringstream output;
1709 output << *this;
1710 return output.str();
1711 }
1712
1713 // element access
1714 /**
1715 * \brief Locates a Block in the %Coll.
1716 * \param blockName Name of the Block to be located.
1717 * \return Read/write reference to sought-after Block.
1718 *
1719 * This function locates the first Block whose name equals
1720 * \p blockName. If no such Block is present, an empty Block with
1721 * this name is added to the end of the %Coll and a reference to it
1722 * is then returned.
1723 */
1724 reference
1725 operator[](const key_type& blockName)
1726 {
1727 iterator block = find(blockName);
1728 if (block != end()) return *block;
1729
1730 push_back(value_type(blockName));
1731 return back();
1732 }
1733
1734 /**
1735 * \brief Locates a Block in the %Coll.
1736 * \param blockName Name of the Block to be located.
1737 * \return Read/write reference to sought-after Block.
1738 * \throw std::out_of_range If no Block with the name \p blockName
1739 * exists.
1740 */
1741 reference
1742 at(const key_type& blockName)
1743 {
1744 iterator block = find(blockName);
1745 if (block != end()) return *block;
1746
1747 throw std::out_of_range("SLHAea::Coll::at(‘" + blockName + "’)");
1748 }
1749
1750 /**
1751 * \brief Locates a Block in the %Coll.
1752 * \param blockName Name of the Block to be located.
1753 * \return Read-only (constant) reference to sought-after Block.
1754 * \throw std::out_of_range If no Block with the name \p blockName
1755 * exists.
1756 */
1758 at(const key_type& blockName) const
1759 {
1760 const_iterator block = find(blockName);
1761 if (block != end()) return *block;
1762
1763 throw std::out_of_range("SLHAea::Coll::at(‘" + blockName + "’)");
1764 }
1765
1766 /**
1767 * \brief Locates a Block in the %Coll.
1768 * \param key First strings of the block definition of the Block
1769 * to be located.
1770 * \return Read/write reference to sought-after Block.
1771 * \throw std::out_of_range If \p key does not match any block
1772 * definition.
1773 *
1774 * This functions takes a vector of strings and locates the Block
1775 * whose first strings of the block definition are equal to the
1776 * strings in \p key. If no such Block exists, \c std::out_of_range
1777 * is thrown.
1778 */
1779 reference
1781 {
1782 iterator block = find(key);
1783 if (block != end()) return *block;
1784
1785 throw std::out_of_range(
1786 "SLHAea::Coll::at(‘" + boost::join(key, ",") + "’)");
1787 }
1788
1789 /**
1790 * \brief Locates a Block in the %Coll.
1791 * \param key First strings of the block definition of the Block
1792 * to be located.
1793 * \return Read-only (constant) reference to sought-after Block.
1794 * \throw std::out_of_range If \p key does not match any block
1795 * definition.
1796 *
1797 * This functions takes a vector of strings and locates the Block
1798 * whose first strings of the block definition are equal to the
1799 * strings in \p key. If no such Block exists, \c std::out_of_range
1800 * is thrown.
1801 */
1803 at(const value_type::key_type& key) const
1804 {
1805 const_iterator block = find(key);
1806 if (block != end()) return *block;
1807
1808 throw std::out_of_range(
1809 "SLHAea::Coll::at(‘" + boost::join(key, ",") + "’)");
1810 }
1811
1812 /**
1813 * Returns a read/write reference to the first element of the %Coll.
1814 */
1815 reference
1817 { return impl_.front(); }
1818
1819 /**
1820 * Returns a read-only (constant) reference to the first element of
1821 * the %Coll.
1822 */
1824 front() const
1825 { return impl_.front(); }
1826
1827 /**
1828 * Returns a read/write reference to the last element of the %Coll.
1829 */
1830 reference
1832 { return impl_.back(); }
1833
1834 /**
1835 * Returns a read-only (constant) reference to the last element of
1836 * the %Coll.
1837 */
1839 back() const
1840 { return impl_.back(); }
1841
1842 // (nested) element access via Key
1843 /**
1844 * \brief Accesses a Block in the %Coll.
1845 * \param key Key that refers to the Block that should be accessed.
1846 * \return Read/write reference to the Block referred to by \p key.
1847 * \throw std::out_of_range If \p key refers to a non-existing
1848 * Block.
1849 */
1850 reference
1851 block(const Key& key);
1852
1853 /**
1854 * \brief Accesses a Block in the %Coll.
1855 * \param key Key that refers to the Block that should be accessed.
1856 * \return Read-only (constant) reference to the Block referred to
1857 * by \p key.
1858 * \throw std::out_of_range If \p key refers to a non-existing
1859 * Block.
1860 */
1862 block(const Key& key) const;
1863
1864 /**
1865 * \brief Accesses a single Line in the %Coll.
1866 * \param key Key that refers to the Line that should be accessed.
1867 * \return Read/write reference to the Line referred to by \p key.
1868 * \throw std::out_of_range If \p key refers to a non-existing Line.
1869 */
1871 line(const Key& key);
1872
1873 /**
1874 * \brief Accesses a single Line in the %Coll.
1875 * \param key Key that refers to the Line that should be accessed.
1876 * \return Read-only (constant) reference to the Line referred to by
1877 * \p key.
1878 * \throw std::out_of_range If \p key refers to a non-existing Line.
1879 */
1881 line(const Key& key) const;
1882
1883 /**
1884 * \brief Accesses a single field in the %Coll.
1885 * \param key Key that refers to the field that should be accessed.
1886 * \return Read/write reference to the field referred to by \p key.
1887 * \throw std::out_of_range If \p key refers to a non-existing
1888 * field.
1889 */
1891 field(const Key& key);
1892
1893 /**
1894 * \brief Accesses a single field in the %Coll.
1895 * \param key Key that refers to the field that should be accessed.
1896 * \return Read-only (constant) reference to the field referred to
1897 * by \p key.
1898 * \throw std::out_of_range If \p key refers to a non-existing
1899 * field.
1900 */
1902 field(const Key& key) const;
1903
1904 // iterators
1905 /**
1906 * Returns a read/write iterator that points to the first element in
1907 * the %Coll. Iteration is done in ordinary element order.
1908 */
1909 iterator
1911 { return impl_.begin(); }
1912
1913 /**
1914 * Returns a read-only (constant) iterator that points to the first
1915 * element in the %Coll. Iteration is done in ordinary element
1916 * order.
1917 */
1919 begin() const
1920 { return impl_.begin(); }
1921
1922 /**
1923 * Returns a read-only (constant) iterator that points to the first
1924 * element in the %Coll. Iteration is done in ordinary element
1925 * order.
1926 */
1928 cbegin() const
1929 { return impl_.begin(); }
1930
1931 /**
1932 * Returns a read/write iterator that points one past the last
1933 * element in the %Coll. Iteration is done in ordinary element
1934 * order.
1935 */
1936 iterator
1938 { return impl_.end(); }
1939
1940 /**
1941 * Returns a read-only (constant) iterator that points one past the
1942 * last element in the %Coll. Iteration is done in ordinary element
1943 * order.
1944 */
1946 end() const
1947 { return impl_.end(); }
1948
1949 /**
1950 * Returns a read-only (constant) iterator that points one past the
1951 * last element in the %Coll. Iteration is done in ordinary element
1952 * order.
1953 */
1955 cend() const
1956 { return impl_.end(); }
1957
1958 /**
1959 * Returns a read/write reverse iterator that points to the last
1960 * element in the %Coll. Iteration is done in reverse element order.
1961 */
1964 { return impl_.rbegin(); }
1965
1966 /**
1967 * Returns a read-only (constant) reverse iterator that points to
1968 * the last element in the %Coll. Iteration is done in reverse
1969 * element order.
1970 */
1972 rbegin() const
1973 { return impl_.rbegin(); }
1974
1975 /**
1976 * Returns a read-only (constant) reverse iterator that points to
1977 * the last element in the %Coll. Iteration is done in reverse
1978 * element order.
1979 */
1981 crbegin() const
1982 { return impl_.rbegin(); }
1983
1984 /**
1985 * Returns a read/write reverse iterator that points to one before
1986 * the first element in the %Coll. Iteration is done in reverse
1987 * element order.
1988 */
1991 { return impl_.rend(); }
1992
1993 /**
1994 * Returns a read-only (constant) reverse iterator that points to
1995 * one before the first element in the %Coll. Iteration is done in
1996 * reverse element order.
1997 */
1999 rend() const
2000 { return impl_.rend(); }
2001
2002 /**
2003 * Returns a read-only (constant) reverse iterator that points to
2004 * one before the first element in the %Coll. Iteration is done in
2005 * reverse element order.
2006 */
2008 crend() const
2009 { return impl_.rend(); }
2010
2011 // lookup
2012 /**
2013 * \brief Tries to locate a Block in the %Coll.
2014 * \param blockName Name of the Block to be located.
2015 * \return Read/write iterator pointing to sought-after element, or
2016 * end() if not found.
2017 *
2018 * This function takes a key and tries to locate the Block whose
2019 * name matches \p blockName. If successful the function returns a
2020 * read/write iterator pointing to the sought after Block. If
2021 * unsuccessful it returns end().
2022 */
2023 iterator
2024 find(const key_type& blockName)
2025 { return std::find_if(begin(), end(), key_matches(blockName)); }
2026
2027 /**
2028 * \brief Tries to locate a Block in the %Coll.
2029 * \param blockName Name of the Block to be located.
2030 * \return Read-only (constant) iterator pointing to sought-after
2031 * element, or end() const if not found.
2032 *
2033 * This function takes a key and tries to locate the Block whose
2034 * name matches \p blockName. If successful the function returns a
2035 * read-only (constant) iterator pointing to the sought after Block.
2036 * If unsuccessful it returns end() const.
2037 */
2039 find(const key_type& blockName) const
2040 { return std::find_if(begin(), end(), key_matches(blockName)); }
2041
2042 /**
2043 * \brief Tries to locate a Block in a range.
2044 * \param first, last Input iterators to the initial and final
2045 * positions in a sequence.
2046 * \param blockName Name of the Block to be located.
2047 * \return Iterator pointing to sought-after element, or \p last if
2048 * not found.
2049 *
2050 * This function tries to locate in the range [\p first, \p last)
2051 * the Block whose name matches \p blockName. If successful the
2052 * function returns an iterator pointing to the sought after Block.
2053 * If unsuccessful it returns \p last.
2054 */
2055 template<class InputIterator> static InputIterator
2056 find(InputIterator first, InputIterator last, const key_type& blockName)
2057 { return std::find_if(first, last, key_matches(blockName)); }
2058
2059 /**
2060 * \brief Tries to locate a Block in the %Coll.
2061 * \param key First strings of the block definition of the Block
2062 * to be located.
2063 * \return Read/write iterator pointing to sought-after element, or
2064 * end() if not found.
2065 *
2066 * This functions takes a vector of strings and tries to locate the
2067 * Block whose first strings of the block definition are equal to
2068 * the strings in \p key. If successful the function returns a
2069 * read/write iterator pointing to the sought after Block. If
2070 * unsuccessful it returns end().
2071 */
2072 iterator
2074 { return std::find_if(begin(), end(), key_matches_block_def(key)); }
2075
2076 /**
2077 * \brief Tries to locate a Block in the %Coll.
2078 * \param key First strings of the block definition of the Block
2079 * to be located.
2080 * \return Read-only (constant) iterator pointing to sought-after
2081 * element, or end() const if not found.
2082 *
2083 * This functions takes a vector of strings and tries to locate the
2084 * Block whose first strings of the block definition are equal to
2085 * the strings in \p key. If successful the function returns a
2086 * read-only (constant) iterator pointing to the sought after Block.
2087 * If unsuccessful it returns end() const.
2088 */
2090 find(const value_type::key_type& key) const
2091 { return std::find_if(begin(), end(), key_matches_block_def(key)); }
2092
2093 /**
2094 * \brief Tries to locate a Block in a range.
2095 * \param first, last Input iterators to the initial and final
2096 * positions in a sequence.
2097 * \param key First strings of the block definition of the Block
2098 * to be located.
2099 * \return Iterator pointing to sought-after element, or \p last if
2100 * not found.
2101 *
2102 * This function tries to locate in the range [\p first, \p last)
2103 * the Block whose first strings of the block definition are equal
2104 * to the strings in \p key. If successful the function returns an
2105 * iterator pointing to the sought after Block. If unsuccessful it
2106 * returns \p last.
2107 */
2108 template<class InputIterator> static InputIterator
2109 find(InputIterator first, InputIterator last,
2110 const value_type::key_type& key)
2111 { return std::find_if(first, last, key_matches_block_def(key)); }
2112
2113 // introspection
2114 /**
2115 * \brief Counts all Blocks with a given name.
2116 * \param blockName Name of the Blocks that will be counted.
2117 * \return Number of blocks whose name equals \p blockName.
2118 */
2119 size_type
2120 count(const key_type& blockName) const
2121 { return std::count_if(begin(), end(), key_matches(blockName)); }
2122
2123 // capacity
2124 /** Returns the number of elements in the %Coll. */
2125 size_type
2126 size() const
2127 { return impl_.size(); }
2128
2129 /** Returns the size() of the largest possible %Coll. */
2130 size_type
2131 max_size() const
2132 { return impl_.max_size(); }
2133
2134 /** Returns true if the %Coll is empty. */
2135 bool
2136 empty() const
2137 { return impl_.empty(); }
2138
2139 // modifiers
2140 /**
2141 * \brief Adds a Block to the end of the %Coll.
2142 * \param block Block to be added.
2143 *
2144 * This function creates an element at the end of the %Coll and
2145 * assigns the given \p block to it.
2146 */
2147 void
2149 { impl_.push_back(block); }
2150
2151 /**
2152 * \brief Adds a Block to the end of the %Coll.
2153 * \param blockString String that is used to construct the Block
2154 * that will be added.
2155 *
2156 * This function creates an element at the end of the %Coll and
2157 * assigns the Block that is constructed from \p blockString to it.
2158 */
2159 void
2160 push_back(const std::string& blockString)
2161 {
2163 block.str(blockString);
2164 impl_.push_back(block);
2165 }
2166
2167 /**
2168 * \brief Adds a Block to the begin of the %Coll.
2169 * \param block Block to be added.
2170 *
2171 * This function creates an element at the begin of the %Coll and
2172 * assigns the given \p block to it.
2173 */
2174 void
2176 { impl_.push_front(block); }
2177
2178 /**
2179 * \brief Adds a Block to the begin of the %Coll.
2180 * \param blockString String that is used to construct the Block
2181 * that will be added.
2182 *
2183 * This function creates an element at the begin of the %Coll and
2184 * assigns the Block that is constructed from \p blockString to it.
2185 */
2186 void
2187 push_front(const std::string& blockString)
2188 {
2190 block.str(blockString);
2191 impl_.push_front(block);
2192 }
2193
2194 /**
2195 * Removes the last element. This function shrinks the size() of the
2196 * %Coll by one.
2197 */
2198 void
2200 { impl_.pop_back(); }
2201
2202 /**
2203 * \brief Inserts a Block before given \p position.
2204 * \param position Iterator into the %Coll.
2205 * \param block Block to be inserted.
2206 * \return Iterator pointing to the inserted element.
2207 *
2208 * This function inserts a copy of \p block before the specified
2209 * \p position and thus enlarges the %Coll by one.
2210 */
2211 iterator
2213 { return impl_.insert(position, block); }
2214
2215 /**
2216 * \brief Inserts a range into the %Coll.
2217 * \param position Iterator into the %Coll.
2218 * \param first, last Input iterators to the initial and final
2219 * positions in a sequence.
2220 *
2221 * This function inserts copies of the Blocks in the range
2222 * [\p first, \p last) into the %Coll before the specified
2223 * \p position and thus enlarges the %Coll accordingly.
2224 */
2225 template<class InputIterator> void
2226 insert(iterator position, InputIterator first, InputIterator last)
2227 { impl_.insert(position, first, last); }
2228
2229 /**
2230 * \brief Erases element at given \p position.
2231 * \param position Iterator pointing to the element to be erased.
2232 * \return Iterator pointing to the next element (or end()).
2233 *
2234 * This function erases the element at the given \p position and
2235 * thus shortens the %Coll by one.
2236 */
2237 iterator
2238 erase(iterator position)
2239 { return impl_.erase(position); }
2240
2241 /**
2242 * \brief Erases a range of elements.
2243 * \param first Iterator pointing to the first element to be erased.
2244 * \param last Iterator pointing to one past the last element to be
2245 * erased.
2246 * \return Iterator pointing to the element pointed to by \p last
2247 * prior to erasing (or end()).
2248 *
2249 * This function erases the elements in the range [\p first,
2250 * \p last) and shortens the %Coll accordingly.
2251 */
2252 iterator
2254 { return impl_.erase(first, last); }
2255
2256 /**
2257 * \brief Erases first Block with a given name.
2258 * \param blockName Name of the Block to be erased.
2259 * \return Iterator pointing to the next element (or end()).
2260 *
2261 * This function takes a key and erases the first Block whose name
2262 * matches \p blockName. If the %Coll contains such Block, the
2263 * function returns an iterator pointing to the next element (or
2264 * end()). If no such Block exists, end() is returned.
2265 */
2266 iterator
2267 erase_first(const key_type& blockName)
2268 {
2269 iterator block = find(blockName);
2270 return (block != end()) ? erase(block) : block;
2271 }
2272
2273 /**
2274 * \brief Erases last Block with a given name.
2275 * \param blockName Name of the Block to be erased.
2276 * \return Iterator pointing to the next element (or end()).
2277 *
2278 * This function takes a key and erases the last Block whose name
2279 * matches \p blockName. If the %Coll contains such Block, the
2280 * function returns an iterator pointing to the next element (or
2281 * end()). If no such Block exists, end() is returned.
2282 */
2283 iterator
2284 erase_last(const key_type& blockName)
2285 {
2286 reverse_iterator block = find(rbegin(), rend(), blockName);
2287 return (block != rend()) ? erase((++block).base()) : end();
2288 }
2289
2290 /**
2291 * \brief Erases all Blocks with a given name.
2292 * \param blockName Name of the Blocks to be erased.
2293 * \return The number of Blocks erased.
2294 */
2295 size_type
2296 erase(const key_type& blockName)
2297 {
2298 const key_matches pred(blockName);
2299 size_type erased_count = 0;
2300
2301 for (iterator block = begin(); block != end();)
2302 {
2303 if (pred(*block))
2304 {
2305 block = erase(block);
2306 ++erased_count;
2307 }
2308 else ++block;
2309 }
2310 return erased_count;
2311 }
2312
2313 /**
2314 * \brief Swaps data with another %Coll.
2315 * \param coll %Coll to be swapped with.
2316 */
2317 void
2318 swap(Coll& coll)
2319 { impl_.swap(coll.impl_); }
2320
2321 /** Erases all the elements in the %Coll. */
2322 void
2324 { impl_.clear(); }
2325
2326 /**
2327 * \brief Reformats all Blocks in the %Coll.
2328 * \sa Block::reformat()
2329 */
2330 void
2332 { std::for_each(begin(), end(), MEM_FN(&value_type::reformat)); }
2333
2334 /**
2335 * \brief Comments all Blocks in the %Coll.
2336 * \sa Block::comment()
2337 */
2338 void
2340 { std::for_each(begin(), end(), MEM_FN(&value_type::comment)); }
2341
2342 /**
2343 * \brief Uncomments all Blocks in the %Coll.
2344 * \sa Block::uncomment()
2345 */
2346 void
2348 { std::for_each(begin(), end(), MEM_FN(&value_type::uncomment)); }
2349
2350 /**
2351 * Unary predicate that checks if a provided name matches the name
2352 * of a Block.
2353 */
2355 {
2356 explicit
2357 key_matches(const key_type& blockName) : name_(blockName) {}
2358
2359 bool
2361 { return boost::iequals(name_, block.name()); }
2362
2363 void
2364 set_key(const key_type& blockName)
2365 { name_ = blockName; }
2366
2367 private:
2368 key_type name_;
2369 };
2370
2371 /**
2372 * Unary predicate that checks if a provided key matches the block
2373 * definition of a Block.
2374 */
2376 {
2377 explicit
2379 : key_matches_(key) {}
2380
2381 bool
2383 {
2385 return (block_def == block.end()) ? false : key_matches_(*block_def);
2386 }
2387
2388 void
2390 { key_matches_.set_key(key); }
2391
2392 private:
2393 value_type::key_matches key_matches_;
2394 };
2395
2396private:
2397 pointer
2398 push_back_named_block(const key_type& blockName)
2399 {
2400 push_back(value_type(blockName));
2401 return &back();
2402 }
2403
2404 iterator
2405 erase_if_empty(const key_type& blockName, const size_type& offset = 0)
2406 {
2407 iterator block = find(begin() + offset, end(), blockName);
2408 return (block != end() && block->empty()) ? erase(block) : block;
2409 }
2410
2411private:
2412 impl_type impl_;
2413};
2414
2415
2416/**
2417 * Reference to a single field in a SLHA structure.
2418 * This data type represents a reference to a single field in a SLHA
2419 * structure, but which is independent of any concrete Coll object.
2420 * That means that only the keys and the index of the Coll, Block, and
2421 * Line containers of the corresponding field are stored. One of the
2422 * main purposes of this data type is the conversion to string and
2423 * vice versa in a way that the string representation of a %Key can be
2424 * used as a single field in a SLHA structure. For example, the string
2425 * representation of a %Key that refers to the entry in the first row
2426 * and third column of the RVHMIX matrix is \c "RVHMIX;1,3;2". Further
2427 * examples are \c "1000022;DECAY;2" which refers to the total decay
2428 * width of the lightest neutralino or \c "1000022;(any),2,11,24;0"
2429 * which refers to the branching ratio of the decay of the lightest
2430 * neutralino into an electron and a W boson.
2431 */
2432struct Key
2433{
2434public:
2435 /** Name of the Block that contains the field. */
2437
2438 /** First field(s) of the Line that contains the field. */
2440
2441 /** Index of the field in the Line. */
2443
2444 /**
2445 * \brief Constructs a %Key from explicit key values.
2446 * \param _block Name of the Block that contains the field.
2447 * \param _line First field(s) of the Line that contains the field.
2448 * \param _field Index of the field in the Line.
2449 */
2450 Key(const Coll::key_type& _block,
2451 const Block::key_type& _line,
2452 const Line::size_type& _field)
2453 : block(_block), line(_line), field(_field) {}
2454
2455 /**
2456 * \brief Constructs a %Key from a string.
2457 * \param keyString String from which the %Key is constructed.
2458 * \sa str()
2459 */
2460 Key(const std::string& keyString)
2461 { str(keyString); }
2462
2463 /**
2464 * \brief Constructs a %Key from a string.
2465 * \param keyString String from which the %Key is constructed.
2466 * \sa str()
2467 */
2468 Key(const char* keyString)
2469 { str(keyString); }
2470
2471 /**
2472 * \brief Converts a string to a %Key.
2473 * \param keyString String that represents a %Key.
2474 * \return Reference to \c *this.
2475 */
2476 Key&
2477 str(const std::string& keyString)
2478 {
2479 std::vector<std::string> keys;
2480 boost::split(keys, keyString, boost::is_any_of(";"));
2481
2482 if (keys.size() != 3)
2483 { throw std::invalid_argument("SLHAea::Key::str(‘" + keyString + "’)"); }
2484
2485 block = keys[0];
2486 line.clear();
2487 boost::split(line, keys[1], boost::is_any_of(","));
2488 field = to<Line::size_type>(keys[2]);
2489
2490 return *this;
2491 }
2492
2493 /**
2494 * \brief Converts a %Key into its string representation.
2495 * \return String that represents the %Key.
2496 */
2497 std::string
2498 str() const
2499 {
2500 std::ostringstream output;
2501 output << block << ";" << boost::join(line, ",") << ";" << field;
2502 return output.str();
2503 }
2504};
2505
2506
2507inline Coll::reference
2508Coll::block(const Key& key)
2509{ return at(key.block); }
2510
2512Coll::block(const Key& key) const
2513{ return at(key.block); }
2514
2515inline Block::reference
2516Coll::line(const Key& key)
2517{ return block(key).at(key.line); }
2518
2520Coll::line(const Key& key) const
2521{ return block(key).at(key.line); }
2522
2523inline Line::reference
2524Coll::field(const Key& key)
2525{ return line(key).at(key.field); }
2526
2528Coll::field(const Key& key) const
2529{ return line(key).at(key.field); }
2530
2531
2532// stream operators
2533inline std::istream&
2534operator>>(std::istream& is, Block& block)
2535{
2536 block.read(is);
2537 return is;
2538}
2539
2540inline std::istream&
2541operator>>(std::istream& is, Coll& coll)
2542{
2543 coll.read(is);
2544 return is;
2545}
2546
2547inline std::ostream&
2548operator<<(std::ostream& os, const Line& line)
2549{ return os << line.str(); }
2550
2551inline std::ostream&
2552operator<<(std::ostream& os, const Block& block)
2553{
2554 std::copy(block.begin(), block.end(),
2555 std::ostream_iterator<Block::value_type>(os, "\n"));
2556 return os;
2557}
2558
2559inline std::ostream&
2560operator<<(std::ostream& os, const Coll& coll)
2561{
2562 std::copy(coll.begin(), coll.end(),
2563 std::ostream_iterator<Coll::value_type>(os));
2564 return os;
2565}
2566
2567inline std::ostream&
2568operator<<(std::ostream& os, const Key& key)
2569{ return os << key.str(); }
2570
2571
2572// relational operators for Line
2573inline bool
2574operator==(const Line& a, const Line& b)
2575{
2576 return a.size() == b.size() && std::equal(a.begin(), a.end(), b.begin())
2577 && a.str() == b.str();
2578}
2579
2580inline bool
2581operator<(const Line& a, const Line& b)
2582{
2583 const bool a_is_block_def = a.is_block_def();
2584
2585 return (a_is_block_def != b.is_block_def()) ? a_is_block_def :
2586 std::lexicographical_compare(a.begin(), a.end(), b.begin(), b.end());
2587}
2588
2589inline bool
2590operator!=(const Line& a, const Line& b)
2591{ return !(a == b); }
2592
2593inline bool
2594operator>(const Line& a, const Line& b)
2595{ return b < a; }
2596
2597inline bool
2598operator<=(const Line& a, const Line& b)
2599{ return !(b < a); }
2600
2601inline bool
2602operator>=(const Line& a, const Line& b)
2603{ return !(a < b); }
2604
2605
2606// relational operators for Block
2607inline bool
2608operator==(const Block& a, const Block& b)
2609{
2610 return a.size() == b.size() && a.name() == b.name()
2611 && std::equal(a.begin(), a.end(), b.begin());
2612}
2613
2614inline bool
2615operator<(const Block& a, const Block& b)
2616{
2617 return (a.name() != b.name()) ? a.name() < b.name() :
2618 std::lexicographical_compare(a.begin(), a.end(), b.begin(), b.end());
2619}
2620
2621inline bool
2622operator!=(const Block& a, const Block& b)
2623{ return !(a == b); }
2624
2625inline bool
2626operator>(const Block& a, const Block& b)
2627{ return b < a; }
2628
2629inline bool
2630operator<=(const Block& a, const Block& b)
2631{ return !(b < a); }
2632
2633inline bool
2634operator>=(const Block& a, const Block& b)
2635{ return !(a < b); }
2636
2637
2638// relational operators for Coll
2639inline bool
2640operator==(const Coll& a, const Coll& b)
2641{ return a.size() == b.size() && std::equal(a.begin(), a.end(), b.begin()); }
2642
2643inline bool
2644operator<(const Coll& a, const Coll& b)
2645{
2646 return std::lexicographical_compare(a.begin(), a.end(),
2647 b.begin(), b.end());
2648}
2649
2650inline bool
2651operator!=(const Coll& a, const Coll& b)
2652{ return !(a == b); }
2653
2654inline bool
2655operator>(const Coll& a, const Coll& b)
2656{ return b < a; }
2657
2658inline bool
2659operator<=(const Coll& a, const Coll& b)
2660{ return !(b < a); }
2661
2662inline bool
2663operator>=(const Coll& a, const Coll& b)
2664{ return !(a < b); }
2665
2666} // namespace SLHAea
2667
2668#undef MEM_FN
2669
2670#endif // SLHAEA_H
Container of Lines that resembles a block in a SLHA structure.
Definition slhaea.h:731
size_type size() const
Returns the number of elements in the Block.
Definition slhaea.h:1311
void push_back(const value_type &line)
Adds a Line to the end of the Block.
Definition slhaea.h:1341
iterator erase_first(const key_type &key)
Erases first Line that matches the provided key.
Definition slhaea.h:1430
void insert(iterator position, InputIterator first, InputIterator last)
Inserts a range into the Block.
Definition slhaea.h:1388
size_type erase(const key_type &key)
Erases all Lines that match the provided key.
Definition slhaea.h:1464
iterator find(const key_type &key)
Tries to locate a Line in the Block.
Definition slhaea.h:1238
reference at(int i0, int i1=no_index_, int i2=no_index_, int i3=no_index_, int i4=no_index_)
Locates a Line in the Block.
Definition slhaea.h:1065
reference at(const std::vector< int > &key)
Locates a Line in the Block.
Definition slhaea.h:999
impl_type::pointer pointer
Definition slhaea.h:744
void uncomment()
Uncomments all Lines in the Block.
Definition slhaea.h:1524
const_reference at(const key_type &key) const
Locates a Line in the Block.
Definition slhaea.h:979
reference front()
Returns a read/write reference to the first element of the Block.
Definition slhaea.h:1090
void push_back(const std::string &line)
Adds a Line to the end of the Block.
Definition slhaea.h:1353
iterator begin()
Returns a read/write iterator that points to the first element in the Block.
Definition slhaea.h:1122
void rename(const std::string &newName)
Changes the name and definition of the Block.
Definition slhaea.h:804
void swap(Block &block)
Swaps data with another Block.
Definition slhaea.h:1486
const_iterator find(const key_type &key) const
Tries to locate a Line in the Block.
Definition slhaea.h:1254
const_reverse_iterator crend() const
Returns a read-only (constant) reverse iterator that points to one before the first element in the Bl...
Definition slhaea.h:1221
const_iterator begin() const
Returns a read-only (constant) iterator that points to the first element in the Block.
Definition slhaea.h:1131
const_iterator find_block_def() const
Returns a read-only (constant) iterator that points to the first Line in the Block which is a block d...
Definition slhaea.h:1292
const_reference front() const
Returns a read-only (constant) reference to the first element of the Block.
Definition slhaea.h:1098
static Block from_str(const std::string &block)
Constructs a Block with content from a string.
Definition slhaea.h:774
reverse_iterator rend()
Returns a read/write reverse iterator that points to one before the first element in the Block.
Definition slhaea.h:1203
const_reference at(const std::vector< int > &key) const
Locates a Line in the Block.
Definition slhaea.h:1013
iterator erase(iterator position)
Erases element at given position.
Definition slhaea.h:1400
iterator erase_last(const key_type &key)
Erases last Line that matches the provided key.
Definition slhaea.h:1448
size_type max_size() const
Returns the size() of the largest possible Block.
Definition slhaea.h:1324
reference back()
Returns a read/write reference to the last element of the Block.
Definition slhaea.h:1105
const_reference at(int i0, int i1=no_index_, int i2=no_index_, int i3=no_index_, int i4=no_index_) const
Locates a Line in the Block.
Definition slhaea.h:1081
size_type data_size() const
Returns the number of data Lines in the Block.
Definition slhaea.h:1316
iterator find_block_def()
Returns a read/write iterator that points to the first Line in the Block which is a block definition.
Definition slhaea.h:1280
Line value_type
Definition slhaea.h:737
Block(const std::string &name="")
Constructs an empty Block.
Definition slhaea.h:758
void comment()
Comments all Lines in the Block.
Definition slhaea.h:1516
size_type count(const key_type &key) const
Counts all Lines that match a given key.
Definition slhaea.h:1305
iterator insert(iterator position, const value_type &line)
Inserts a Line before given position.
Definition slhaea.h:1374
const_reverse_iterator rend() const
Returns a read-only (constant) reverse iterator that points to one before the first element in the Bl...
Definition slhaea.h:1212
static InputIterator find(InputIterator first, InputIterator last, const key_type &key)
Tries to locate a Line in a range.
Definition slhaea.h:1271
iterator end()
Returns a read/write iterator that points one past the last element in the Block.
Definition slhaea.h:1149
reference operator[](int key)
Locates a Line in the Block.
Definition slhaea.h:945
std::vector< std::string > key_type
Definition slhaea.h:736
impl_type::size_type size_type
Definition slhaea.h:747
impl_type::const_iterator const_iterator
Definition slhaea.h:741
impl_type::iterator iterator
Definition slhaea.h:740
impl_type::const_reverse_iterator const_reverse_iterator
Definition slhaea.h:743
const_iterator cend() const
Returns a read-only (constant) iterator that points one past the last element in the Block.
Definition slhaea.h:1167
const_iterator end() const
Returns a read-only (constant) iterator that points one past the last element in the Block.
Definition slhaea.h:1158
reference at(const std::string &s0, const std::string &s1="", const std::string &s2="", const std::string &s3="", const std::string &s4="")
Locates a Line in the Block.
Definition slhaea.h:1029
void pop_back()
Removes the last element.
Definition slhaea.h:1361
iterator erase(iterator first, iterator last)
Erases a range of elements.
Definition slhaea.h:1415
reference operator[](const std::vector< int > &key)
Locates a Line in the Block.
Definition slhaea.h:918
const_iterator cbegin() const
Returns a read-only (constant) iterator that points to the first element in the Block.
Definition slhaea.h:1140
Line & reference
Definition slhaea.h:738
const Line & const_reference
Definition slhaea.h:739
Block & str(const std::string &block)
Assigns content from a string to the Block.
Definition slhaea.h:868
const_reference back() const
Returns a read-only (constant) reference to the last element of the Block.
Definition slhaea.h:1113
impl_type::const_pointer const_pointer
Definition slhaea.h:745
void name(const std::string &newName)
Sets the name of the Block.
Definition slhaea.h:788
impl_type::difference_type difference_type
Definition slhaea.h:746
impl_type::reverse_iterator reverse_iterator
Definition slhaea.h:742
const_reverse_iterator rbegin() const
Returns a read-only (constant) reverse iterator that points to the last element in the Block.
Definition slhaea.h:1185
reverse_iterator rbegin()
Returns a read/write reverse iterator that points to the last element in the Block.
Definition slhaea.h:1176
std::string str() const
Returns a string representation of the Block.
Definition slhaea.h:878
Block & read(std::istream &is)
Assigns content from an input stream to the Block.
Definition slhaea.h:824
reference operator[](const std::string &key)
Locates a Line in the Block.
Definition slhaea.h:931
bool empty() const
Returns true if the Block is empty.
Definition slhaea.h:1329
reference at(const key_type &key)
Locates a Line in the Block.
Definition slhaea.h:959
Block(std::istream &is)
Constructs a Block with content from an input stream.
Definition slhaea.h:766
const_reverse_iterator crbegin() const
Returns a read-only (constant) reverse iterator that points to the last element in the Block.
Definition slhaea.h:1194
const std::string & name() const
Returns the name of the Block.
Definition slhaea.h:793
const_reference at(const std::string &s0, const std::string &s1="", const std::string &s2="", const std::string &s3="", const std::string &s4="") const
Locates a Line in the Block.
Definition slhaea.h:1047
void reformat()
Reformats all Lines in the Block.
Definition slhaea.h:1508
void clear()
Erases all the elements in the Block and set its name to an empty string.
Definition slhaea.h:1497
reference operator[](const key_type &key)
Locates a Line in the Block.
Definition slhaea.h:897
Container of Blocks that resembles a complete SLHA structure.
Definition slhaea.h:1614
iterator begin()
Returns a read/write iterator that points to the first element in the Coll.
Definition slhaea.h:1910
iterator erase_first(const key_type &blockName)
Erases first Block with a given name.
Definition slhaea.h:2267
reference back()
Returns a read/write reference to the last element of the Coll.
Definition slhaea.h:1831
const_iterator find(const value_type::key_type &key) const
Tries to locate a Block in the Coll.
Definition slhaea.h:2090
impl_type::size_type size_type
Definition slhaea.h:1630
const_reference front() const
Returns a read-only (constant) reference to the first element of the Coll.
Definition slhaea.h:1824
void swap(Coll &coll)
Swaps data with another Coll.
Definition slhaea.h:2318
void uncomment()
Uncomments all Blocks in the Coll.
Definition slhaea.h:2347
void push_front(const std::string &blockString)
Adds a Block to the begin of the Coll.
Definition slhaea.h:2187
impl_type::difference_type difference_type
Definition slhaea.h:1629
Block & reference
Definition slhaea.h:1621
std::string key_type
Definition slhaea.h:1619
iterator end()
Returns a read/write iterator that points one past the last element in the Coll.
Definition slhaea.h:1937
reference block(const Key &key)
Accesses a Block in the Coll.
Definition slhaea.h:2508
const_reference back() const
Returns a read-only (constant) reference to the last element of the Coll.
Definition slhaea.h:1839
void clear()
Erases all the elements in the Coll.
Definition slhaea.h:2323
impl_type::const_reverse_iterator const_reverse_iterator
Definition slhaea.h:1626
const_iterator cbegin() const
Returns a read-only (constant) iterator that points to the first element in the Coll.
Definition slhaea.h:1928
const_iterator end() const
Returns a read-only (constant) iterator that points one past the last element in the Coll.
Definition slhaea.h:1946
const_reference at(const key_type &blockName) const
Locates a Block in the Coll.
Definition slhaea.h:1758
impl_type::const_iterator const_iterator
Definition slhaea.h:1624
void push_front(const value_type &block)
Adds a Block to the begin of the Coll.
Definition slhaea.h:2175
Coll()
Constructs an empty Coll.
Definition slhaea.h:1637
const_reverse_iterator rbegin() const
Returns a read-only (constant) reverse iterator that points to the last element in the Coll.
Definition slhaea.h:1972
iterator erase_last(const key_type &blockName)
Erases last Block with a given name.
Definition slhaea.h:2284
Coll & str(const std::string &coll)
Assigns content from a string to the Coll.
Definition slhaea.h:1696
impl_type::pointer pointer
Definition slhaea.h:1627
Block value_type
Definition slhaea.h:1620
void reformat()
Reformats all Blocks in the Coll.
Definition slhaea.h:2331
iterator find(const key_type &blockName)
Tries to locate a Block in the Coll.
Definition slhaea.h:2024
bool empty() const
Returns true if the Coll is empty.
Definition slhaea.h:2136
void push_back(const std::string &blockString)
Adds a Block to the end of the Coll.
Definition slhaea.h:2160
const_reverse_iterator rend() const
Returns a read-only (constant) reverse iterator that points to one before the first element in the Co...
Definition slhaea.h:1999
Coll(std::istream &is)
Constructs a Coll with content from an input stream.
Definition slhaea.h:1645
void pop_back()
Removes the last element.
Definition slhaea.h:2199
iterator find(const value_type::key_type &key)
Tries to locate a Block in the Coll.
Definition slhaea.h:2073
const_reverse_iterator crbegin() const
Returns a read-only (constant) reverse iterator that points to the last element in the Coll.
Definition slhaea.h:1981
const_reverse_iterator crend() const
Returns a read-only (constant) reverse iterator that points to one before the first element in the Co...
Definition slhaea.h:2008
size_type erase(const key_type &blockName)
Erases all Blocks with a given name.
Definition slhaea.h:2296
impl_type::const_pointer const_pointer
Definition slhaea.h:1628
reference at(const key_type &blockName)
Locates a Block in the Coll.
Definition slhaea.h:1742
Coll & read(std::istream &is)
Assigns content from an input stream to the Coll.
Definition slhaea.h:1669
size_type size() const
Returns the number of elements in the Coll.
Definition slhaea.h:2126
reverse_iterator rend()
Returns a read/write reverse iterator that points to one before the first element in the Coll.
Definition slhaea.h:1990
void push_back(const value_type &block)
Adds a Block to the end of the Coll.
Definition slhaea.h:2148
impl_type::reverse_iterator reverse_iterator
Definition slhaea.h:1625
impl_type::iterator iterator
Definition slhaea.h:1623
size_type count(const key_type &blockName) const
Counts all Blocks with a given name.
Definition slhaea.h:2120
void comment()
Comments all Blocks in the Coll.
Definition slhaea.h:2339
iterator erase(iterator first, iterator last)
Erases a range of elements.
Definition slhaea.h:2253
reference front()
Returns a read/write reference to the first element of the Coll.
Definition slhaea.h:1816
const_iterator find(const key_type &blockName) const
Tries to locate a Block in the Coll.
Definition slhaea.h:2039
iterator insert(iterator position, const value_type &block)
Inserts a Block before given position.
Definition slhaea.h:2212
void insert(iterator position, InputIterator first, InputIterator last)
Inserts a range into the Coll.
Definition slhaea.h:2226
reverse_iterator rbegin()
Returns a read/write reverse iterator that points to the last element in the Coll.
Definition slhaea.h:1963
reference operator[](const key_type &blockName)
Locates a Block in the Coll.
Definition slhaea.h:1725
Block::reference line(const Key &key)
Accesses a single Line in the Coll.
Definition slhaea.h:2516
const_iterator cend() const
Returns a read-only (constant) iterator that points one past the last element in the Coll.
Definition slhaea.h:1955
static Coll from_str(const std::string &coll)
Constructs a Coll with content from a string.
Definition slhaea.h:1653
std::string str() const
Returns a string representation of the Coll.
Definition slhaea.h:1706
const_reference at(const value_type::key_type &key) const
Locates a Block in the Coll.
Definition slhaea.h:1803
static InputIterator find(InputIterator first, InputIterator last, const key_type &blockName)
Tries to locate a Block in a range.
Definition slhaea.h:2056
size_type max_size() const
Returns the size() of the largest possible Coll.
Definition slhaea.h:2131
const Block & const_reference
Definition slhaea.h:1622
reference at(const value_type::key_type &key)
Locates a Block in the Coll.
Definition slhaea.h:1780
iterator erase(iterator position)
Erases element at given position.
Definition slhaea.h:2238
static InputIterator find(InputIterator first, InputIterator last, const value_type::key_type &key)
Tries to locate a Block in a range.
Definition slhaea.h:2109
Line::reference field(const Key &key)
Accesses a single field in the Coll.
Definition slhaea.h:2524
const_iterator begin() const
Returns a read-only (constant) iterator that points to the first element in the Coll.
Definition slhaea.h:1919
Container of strings that represents a line in a SLHA structure.
Definition slhaea.h:153
reverse_iterator rbegin()
Returns a read/write reverse iterator that points to the last element in the Line.
Definition slhaea.h:458
impl_type::const_reverse_iterator const_reverse_iterator
Definition slhaea.h:164
iterator end()
Returns a read/write iterator that points one past the last element in the Line.
Definition slhaea.h:432
void clear()
Erases all the elements in the Line.
Definition slhaea.h:570
Line()
Constructs an empty Line.
Definition slhaea.h:175
size_type data_size() const
Returns the number of elements without the comment in the Line.
Definition slhaea.h:543
impl_type::pointer pointer
Definition slhaea.h:165
bool is_data_line() const
Returns true if the Line is not empty and if it does not begin with "#", "BLOCK" or "DECAY".
Definition slhaea.h:530
Line & append(const std::string &arg)
Appends a string to the end of the Line.
Definition slhaea.h:250
const_reverse_iterator rend() const
Returns a read-only (constant) reverse iterator that points to one before the first element in the Li...
Definition slhaea.h:494
reference operator[](size_type n)
Subscript access to the strings contained in the Line.
Definition slhaea.h:333
const_iterator begin() const
Returns a read-only (constant) iterator that points to the first element in the Line.
Definition slhaea.h:414
void uncomment()
Uncomments the Line.
Definition slhaea.h:634
void reformat()
Reformats the string representation of the Line.
Definition slhaea.h:578
impl_type::difference_type difference_type
Definition slhaea.h:167
const_iterator cbegin() const
Returns a read-only (constant) iterator that points to the first element in the Line.
Definition slhaea.h:423
const_reference front() const
Returns a read-only (constant) reference to the first element of the Line.
Definition slhaea.h:381
size_type max_size() const
Returns the size() of the largest possible Line.
Definition slhaea.h:548
const_reverse_iterator crend() const
Returns a read-only (constant) reverse iterator that points to one before the first element in the Li...
Definition slhaea.h:503
impl_type::reverse_iterator reverse_iterator
Definition slhaea.h:163
Line(const std::string &line)
Constructs a Line from a string.
Definition slhaea.h:182
std::string str() const
Returns a formatted string representation of the Line.
Definition slhaea.h:303
reference front()
Returns a read/write reference to the first element of the Line.
Definition slhaea.h:373
reference at(size_type n)
Provides access to the strings contained in the Line.
Definition slhaea.h:356
const_reference at(size_type n) const
Provides access to the strings contained in the Line.
Definition slhaea.h:366
size_type size() const
Returns the number of elements in the Line.
Definition slhaea.h:536
impl_type::const_pointer const_pointer
Definition slhaea.h:166
const_iterator end() const
Returns a read-only (constant) iterator that points one past the last element in the Line.
Definition slhaea.h:441
Line & operator+=(const std::string &arg)
Appends a string to the end of the Line.
Definition slhaea.h:207
Line & operator<<(const T &field)
Inserts an element at the end of the Line.
Definition slhaea.h:223
impl_type::iterator iterator
Definition slhaea.h:161
void comment()
Comments the Line.
Definition slhaea.h:625
bool is_block_def() const
Returns true if the Line begins with "BLOCK" or "DECAY" followed by a block name.
Definition slhaea.h:512
reference back()
Returns a read/write reference to the last element of the Line.
Definition slhaea.h:388
std::string value_type
Definition slhaea.h:158
const_iterator cend() const
Returns a read-only (constant) iterator that points one past the last element in the Line.
Definition slhaea.h:450
Line & operator=(const std::string &line)
Assigns content from a string to the Line.
Definition slhaea.h:193
const std::string & const_reference
Definition slhaea.h:160
std::string & reference
Definition slhaea.h:159
bool empty() const
Returns true if the Line is empty.
Definition slhaea.h:553
Line & str(const std::string &line)
Assigns content to the Line based on a string.
Definition slhaea.h:269
reverse_iterator rend()
Returns a read/write reverse iterator that points to one before the first element in the Line.
Definition slhaea.h:485
bool is_comment_line() const
Returns true if the Line begins with "#".
Definition slhaea.h:522
void swap(Line &line)
Swaps data with another Line.
Definition slhaea.h:562
impl_type::size_type size_type
Definition slhaea.h:168
const_reference back() const
Returns a read-only (constant) reference to the last element of the Line.
Definition slhaea.h:396
iterator begin()
Returns a read/write iterator that points to the first element in the Line.
Definition slhaea.h:405
const_reverse_iterator rbegin() const
Returns a read-only (constant) reverse iterator that points to the last element in the Line.
Definition slhaea.h:467
const_reverse_iterator crbegin() const
Returns a read-only (constant) reverse iterator that points to the last element in the Line.
Definition slhaea.h:476
const_reference operator[](size_type n) const
Subscript access to the strings contained in the Line.
Definition slhaea.h:346
impl_type::const_iterator const_iterator
Definition slhaea.h:162
void trim_right(std::string &str)
Definition slhaea.h:109
std::string to_upper_copy(const std::string &str)
Definition slhaea.h:92
void trim_left(std::string &str)
Definition slhaea.h:101
bool is_all_whitespace(const std::string &str)
Definition slhaea.h:88
std::istream & operator>>(std::istream &is, Block &block)
Definition slhaea.h:2534
bool operator==(const Line &a, const Line &b)
Definition slhaea.h:2574
bool operator!=(const Line &a, const Line &b)
Definition slhaea.h:2590
bool operator<(const Line &a, const Line &b)
Definition slhaea.h:2581
bool operator>(const Line &a, const Line &b)
Definition slhaea.h:2594
std::ostream & operator<<(std::ostream &os, const Line &line)
Definition slhaea.h:2548
bool operator<=(const Line &a, const Line &b)
Definition slhaea.h:2598
std::string to_string(const Source &arg)
Converts an object of type Source to a string.
Definition slhaea.h:62
Target to(const Source &arg)
Converts an object of type Source to an object of type Target.
Definition slhaea.h:50
bool operator>=(const Line &a, const Line &b)
Definition slhaea.h:2602
#define MEM_FN
Definition slhaea.h:32
Unary predicate that checks if a provided key matches a Line.
Definition slhaea.h:1529
bool operator()(const value_type &line) const
Definition slhaea.h:1534
key_matches(const key_type &key)
Definition slhaea.h:1531
void set_key(const key_type &key)
Definition slhaea.h:1541
Unary predicate that checks if a provided key matches the block definition of a Block.
Definition slhaea.h:2376
key_matches_block_def(const value_type::key_type &key)
Definition slhaea.h:2378
bool operator()(const value_type &block) const
Definition slhaea.h:2382
void set_key(const value_type::key_type &key)
Definition slhaea.h:2389
Unary predicate that checks if a provided name matches the name of a Block.
Definition slhaea.h:2355
void set_key(const key_type &blockName)
Definition slhaea.h:2364
key_matches(const key_type &blockName)
Definition slhaea.h:2357
bool operator()(const value_type &block) const
Definition slhaea.h:2360
Reference to a single field in a SLHA structure.
Definition slhaea.h:2433
Line::size_type field
Index of the field in the Line.
Definition slhaea.h:2442
Key(const Coll::key_type &_block, const Block::key_type &_line, const Line::size_type &_field)
Constructs a Key from explicit key values.
Definition slhaea.h:2450
std::string str() const
Converts a Key into its string representation.
Definition slhaea.h:2498
Key(const std::string &keyString)
Constructs a Key from a string.
Definition slhaea.h:2460
Key & str(const std::string &keyString)
Converts a string to a Key.
Definition slhaea.h:2477
Key(const char *keyString)
Constructs a Key from a string.
Definition slhaea.h:2468
Block::key_type line
First field(s) of the Line that contains the field.
Definition slhaea.h:2439
Coll::key_type block
Name of the Block that contains the field.
Definition slhaea.h:2436