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>
31#if __cplusplus <= 199711L
32#define MEM_FN std::mem_fun_ref
34#define MEM_FN std::mem_fn
49template<
class Target,
class Source>
inline Target
51{
return boost::lexical_cast<Target>(arg); }
61template<
class Source>
inline std::string
63{
return boost::lexical_cast<std::string>(arg); }
76template<
class Source>
inline std::string
79 std::ostringstream output;
80 output << std::setprecision(precision) << std::scientific << arg;
89{
return str.find_first_not_of(
" \t\n\v\f\r") == std::string::npos; }
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));
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);
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);
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);
155 typedef std::vector<std::string> impl_type;
175 Line() : impl_(), columns_() {}
182 Line(
const std::string& line) : impl_(), columns_()
225 std::string field_str =
to_string(field);
227 if (field_str.empty())
return *
this;
229 if (contains_comment())
230 {
back() += field_str; }
234 impl_.push_back(field_str);
269 str(
const std::string& line)
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;
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);
281 std::size_t pos1 = data.find_first_not_of(whitespace, 0);
282 std::size_t pos2 = data.find_first_of(whitespace, pos1);
284 while (pos1 != std::string::npos)
286 impl_.push_back(data.substr(pos1, pos2 - pos1));
287 columns_.push_back(pos1);
289 pos1 = data.find_first_not_of(whitespace, pos2);
290 pos2 = data.find_first_of(whitespace, pos1);
293 if (comment_pos != std::string::npos)
295 impl_.push_back(trimmed_line.substr(comment_pos));
296 columns_.push_back(comment_pos);
305 if (
empty())
return "";
307 std::ostringstream output;
308 int length = 0, spaces = 0;
311 std::vector<std::size_t>::const_iterator column = columns_.begin();
312 for (; field !=
end() && column != columns_.end(); ++field, ++column)
314 spaces = std::max(0,
static_cast<int>(*column) - length + 1);
315 length += spaces + field->length();
317 output << std::setw(spaces) <<
" " << *field;
319 return output.str().substr(1);
357 {
return impl_.at(n); }
367 {
return impl_.at(n); }
374 {
return impl_.front(); }
382 {
return impl_.front(); }
389 {
return impl_.back(); }
397 {
return impl_.back(); }
406 {
return impl_.begin(); }
415 {
return impl_.begin(); }
424 {
return impl_.begin(); }
433 {
return impl_.end(); }
442 {
return impl_.end(); }
451 {
return impl_.end(); }
459 {
return impl_.rbegin(); }
468 {
return impl_.rbegin(); }
477 {
return impl_.rbegin(); }
486 {
return impl_.rend(); }
495 {
return impl_.rend(); }
504 {
return impl_.rend(); }
514 if (
size() < 2)
return false;
517 return is_block_specifier(*field) && !is_comment(*++field);
531 {
return !
empty() && !is_comment(
front()) && !is_block_specifier(
front()); }
537 {
return impl_.size(); }
544 {
return std::distance(
begin(), std::find_if(
begin(),
end(), is_comment)); }
549 {
return impl_.max_size(); }
554 {
return impl_.empty(); }
564 impl_.swap(line.impl_);
565 columns_.swap(line.columns_);
584 std::size_t pos1 = 0, pos2 = 0;
586 if (is_block_specifier(*field))
589 pos2 = pos1 + field->length();
590 columns_.push_back(pos1);
592 if (++field ==
end())
return;
595 pos2 = pos1 + field->length();
596 columns_.push_back(pos1);
598 else if (is_comment(*field))
601 pos2 = pos1 + field->length();
602 columns_.push_back(pos1);
607 pos2 = pos1 + field->length();
608 columns_.push_back(pos1);
611 while (++field !=
end())
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);
645 contains_comment()
const
649 calc_spaces_for_indent(
const std::size_t& pos)
651 std::size_t width = shift_width_ - (pos % shift_width_);
652 if (width < min_width_) width += shift_width_;
659 static const std::size_t specifier_length = 5;
660 if (field.length() != specifier_length)
return false;
663 return (field_upper ==
"BLOCK") || (field_upper ==
"DECAY");
668 {
return !field.empty() && field[0] ==
'#'; }
670 template<
class T>
Line&
671 insert_fundamental_type(
const T& arg)
673 static const int digits = std::numeric_limits<T>::digits10;
679 {
return !field.empty() && (field[0] ==
'-' || field[0] ==
'+'); }
683 std::vector<std::size_t> columns_;
685 static const std::size_t shift_width_ = 4;
686 static const std::size_t min_width_ = 2;
689template<>
inline Line&
690Line::operator<< <float>(
const float& number)
692 insert_fundamental_type(number);
696template<>
inline Line&
697Line::operator<< <double>(
const double& number)
699 insert_fundamental_type(number);
703template<>
inline Line&
704Line::operator<< <long double>(
const long double& number)
706 insert_fundamental_type(number);
733 typedef std::vector<Line> impl_type;
766 Block(std::istream& is) : name_(), impl_()
776 std::istringstream input(block);
788 name(
const std::string& newName)
808 if (block_def !=
end()) (*block_def)[1] = newName;
826 std::string line_str;
829 std::size_t def_count = 0;
832 while (std::getline(is, line_str))
841 is.seekg(-
static_cast<std::ptrdiff_t
>(line_str.length() + 1), std::ios_base::cur);
868 str(
const std::string& block)
870 std::istringstream input(block);
880 std::ostringstream output;
900 if (line !=
end())
return *line;
919 {
return (*
this)[cont_to_key(key)]; }
932 {
return (*
this)[
key_type(1, key)]; }
962 if (line !=
end())
return *line;
964 throw std::out_of_range(
965 "SLHAea::Block::at(‘" + boost::join(key,
",") +
"’)");
982 if (line !=
end())
return *line;
984 throw std::out_of_range(
985 "SLHAea::Block::at(‘" + boost::join(key,
",") +
"’)");
999 at(
const std::vector<int>& key)
1000 {
return at(cont_to_key(key)); }
1013 at(
const std::vector<int>& key)
const
1014 {
return at(cont_to_key(key)); }
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)); }
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)); }
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)); }
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)); }
1091 {
return impl_.front(); }
1099 {
return impl_.front(); }
1106 {
return impl_.back(); }
1114 {
return impl_.back(); }
1123 {
return impl_.begin(); }
1132 {
return impl_.begin(); }
1141 {
return impl_.begin(); }
1150 {
return impl_.end(); }
1159 {
return impl_.end(); }
1168 {
return impl_.end(); }
1177 {
return impl_.rbegin(); }
1186 {
return impl_.rbegin(); }
1195 {
return impl_.rbegin(); }
1204 {
return impl_.rend(); }
1213 {
return impl_.rend(); }
1222 {
return impl_.rend(); }
1270 template<
class InputIterator>
static InputIterator
1272 {
return std::find_if(first, last,
key_matches(key)); }
1282 return std::find_if(
begin(),
end(),
1294 return std::find_if(
begin(),
end(),
1312 {
return impl_.size(); }
1318 return std::count_if(
begin(),
end(),
1325 {
return impl_.max_size(); }
1330 {
return impl_.empty(); }
1342 { impl_.push_back(line); }
1362 { impl_.pop_back(); }
1375 {
return impl_.insert(position, line); }
1387 template<
class InputIterator>
void
1389 { impl_.insert(position, first, last); }
1401 {
return impl_.erase(position); }
1416 {
return impl_.erase(first, last); }
1433 return (line !=
end()) ?
erase(line) : line;
1451 return (line !=
rend()) ?
erase((++line).base()) :
end();
1478 return erased_count;
1488 name_.swap(block.name_);
1489 impl_.swap(block.impl_);
1536 return (key_.empty() || key_.size() > line.
size()) ? false :
1537 std::equal(key_.begin(), key_.end(), line.
begin(), parts_equal);
1546 parts_equal(
const std::string& key_part,
const std::string& field)
1547 {
return (key_part ==
"(any)") || boost::iequals(key_part, field); }
1554 template<
class Container>
static key_type
1555 cont_to_key(
const Container& cont)
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),
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)
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);
1582 ints_to_key(
int i0,
int i1,
int i2,
int i3,
int i4)
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));
1597 static const int no_index_ = -32768;
1616 typedef std::deque<Block> impl_type;
1655 std::istringstream input(coll);
1671 std::string line_str;
1677 while (std::getline(is, line_str))
1686 erase_if_empty(
"", orig_size);
1698 std::istringstream input(coll);
1708 std::ostringstream output;
1710 return output.str();
1747 throw std::out_of_range(
"SLHAea::Coll::at(‘" + blockName +
"’)");
1763 throw std::out_of_range(
"SLHAea::Coll::at(‘" + blockName +
"’)");
1785 throw std::out_of_range(
1786 "SLHAea::Coll::at(‘" + boost::join(key,
",") +
"’)");
1808 throw std::out_of_range(
1809 "SLHAea::Coll::at(‘" + boost::join(key,
",") +
"’)");
1817 {
return impl_.front(); }
1825 {
return impl_.front(); }
1832 {
return impl_.back(); }
1840 {
return impl_.back(); }
1911 {
return impl_.begin(); }
1920 {
return impl_.begin(); }
1929 {
return impl_.begin(); }
1938 {
return impl_.end(); }
1947 {
return impl_.end(); }
1956 {
return impl_.end(); }
1964 {
return impl_.rbegin(); }
1973 {
return impl_.rbegin(); }
1982 {
return impl_.rbegin(); }
1991 {
return impl_.rend(); }
2000 {
return impl_.rend(); }
2009 {
return impl_.rend(); }
2055 template<
class InputIterator>
static InputIterator
2057 {
return std::find_if(first, last,
key_matches(blockName)); }
2108 template<
class InputIterator>
static InputIterator
2109 find(InputIterator first, InputIterator last,
2127 {
return impl_.size(); }
2132 {
return impl_.max_size(); }
2137 {
return impl_.empty(); }
2149 { impl_.push_back(
block); }
2164 impl_.push_back(
block);
2176 { impl_.push_front(
block); }
2191 impl_.push_front(
block);
2200 { impl_.pop_back(); }
2213 {
return impl_.insert(position,
block); }
2225 template<
class InputIterator>
void
2227 { impl_.insert(position, first, last); }
2239 {
return impl_.erase(position); }
2254 {
return impl_.erase(first, last); }
2310 return erased_count;
2319 { impl_.swap(coll.impl_); }
2361 {
return boost::iequals(name_,
block.
name()); }
2365 { name_ = blockName; }
2379 : key_matches_(key) {}
2385 return (block_def ==
block.
end()) ? false : key_matches_(*block_def);
2390 { key_matches_.
set_key(key); }
2398 push_back_named_block(
const key_type& blockName)
2460 Key(
const std::string& keyString)
2477 str(
const std::string& keyString)
2479 std::vector<std::string> keys;
2480 boost::split(keys, keyString, boost::is_any_of(
";"));
2482 if (keys.size() != 3)
2483 {
throw std::invalid_argument(
"SLHAea::Key::str(‘" + keyString +
"’)"); }
2487 boost::split(
line, keys[1], boost::is_any_of(
","));
2488 field = to<Line::size_type>(keys[2]);
2500 std::ostringstream output;
2501 output <<
block <<
";" << boost::join(
line,
",") <<
";" <<
field;
2502 return output.str();
2549{
return os << line.
str(); }
2554 std::copy(block.
begin(), block.
end(),
2555 std::ostream_iterator<Block::value_type>(os,
"\n"));
2562 std::copy(coll.
begin(), coll.
end(),
2563 std::ostream_iterator<Coll::value_type>(os));
2569{
return os << key.
str(); }
2585 return (a_is_block_def != b.
is_block_def()) ? a_is_block_def :
2591{
return !(a == b); }
2623{
return !(a == b); }
2646 return std::lexicographical_compare(a.
begin(), a.
end(),
2652{
return !(a == b); }
Container of Lines that resembles a block in a SLHA structure.
size_type size() const
Returns the number of elements in the Block.
void push_back(const value_type &line)
Adds a Line to the end of the Block.
iterator erase_first(const key_type &key)
Erases first Line that matches the provided key.
void insert(iterator position, InputIterator first, InputIterator last)
Inserts a range into the Block.
size_type erase(const key_type &key)
Erases all Lines that match the provided key.
iterator find(const key_type &key)
Tries to locate a Line in the Block.
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.
reference at(const std::vector< int > &key)
Locates a Line in the Block.
impl_type::pointer pointer
void uncomment()
Uncomments all Lines in the Block.
const_reference at(const key_type &key) const
Locates a Line in the Block.
reference front()
Returns a read/write reference to the first element of the Block.
void push_back(const std::string &line)
Adds a Line to the end of the Block.
iterator begin()
Returns a read/write iterator that points to the first element in the Block.
void rename(const std::string &newName)
Changes the name and definition of the Block.
void swap(Block &block)
Swaps data with another Block.
const_iterator find(const key_type &key) const
Tries to locate a Line in the Block.
const_reverse_iterator crend() const
Returns a read-only (constant) reverse iterator that points to one before the first element in the Bl...
const_iterator begin() const
Returns a read-only (constant) iterator that points to the first element in the Block.
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...
const_reference front() const
Returns a read-only (constant) reference to the first element of the Block.
static Block from_str(const std::string &block)
Constructs a Block with content from a string.
reverse_iterator rend()
Returns a read/write reverse iterator that points to one before the first element in the Block.
const_reference at(const std::vector< int > &key) const
Locates a Line in the Block.
iterator erase(iterator position)
Erases element at given position.
iterator erase_last(const key_type &key)
Erases last Line that matches the provided key.
size_type max_size() const
Returns the size() of the largest possible Block.
reference back()
Returns a read/write reference to the last element of the Block.
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.
size_type data_size() const
Returns the number of data Lines in the Block.
iterator find_block_def()
Returns a read/write iterator that points to the first Line in the Block which is a block definition.
Block(const std::string &name="")
Constructs an empty Block.
void comment()
Comments all Lines in the Block.
size_type count(const key_type &key) const
Counts all Lines that match a given key.
iterator insert(iterator position, const value_type &line)
Inserts a Line before given position.
const_reverse_iterator rend() const
Returns a read-only (constant) reverse iterator that points to one before the first element in the Bl...
static InputIterator find(InputIterator first, InputIterator last, const key_type &key)
Tries to locate a Line in a range.
iterator end()
Returns a read/write iterator that points one past the last element in the Block.
reference operator[](int key)
Locates a Line in the Block.
std::vector< std::string > key_type
impl_type::size_type size_type
impl_type::const_iterator const_iterator
impl_type::iterator iterator
impl_type::const_reverse_iterator const_reverse_iterator
const_iterator cend() const
Returns a read-only (constant) iterator that points one past the last element in the Block.
const_iterator end() const
Returns a read-only (constant) iterator that points one past the last element in the Block.
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.
void pop_back()
Removes the last element.
iterator erase(iterator first, iterator last)
Erases a range of elements.
reference operator[](const std::vector< int > &key)
Locates a Line in the Block.
const_iterator cbegin() const
Returns a read-only (constant) iterator that points to the first element in the Block.
const Line & const_reference
Block & str(const std::string &block)
Assigns content from a string to the Block.
const_reference back() const
Returns a read-only (constant) reference to the last element of the Block.
impl_type::const_pointer const_pointer
void name(const std::string &newName)
Sets the name of the Block.
impl_type::difference_type difference_type
impl_type::reverse_iterator reverse_iterator
const_reverse_iterator rbegin() const
Returns a read-only (constant) reverse iterator that points to the last element in the Block.
reverse_iterator rbegin()
Returns a read/write reverse iterator that points to the last element in the Block.
std::string str() const
Returns a string representation of the Block.
Block & read(std::istream &is)
Assigns content from an input stream to the Block.
reference operator[](const std::string &key)
Locates a Line in the Block.
bool empty() const
Returns true if the Block is empty.
reference at(const key_type &key)
Locates a Line in the Block.
Block(std::istream &is)
Constructs a Block with content from an input stream.
const_reverse_iterator crbegin() const
Returns a read-only (constant) reverse iterator that points to the last element in the Block.
const std::string & name() const
Returns the name of the Block.
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.
void reformat()
Reformats all Lines in the Block.
void clear()
Erases all the elements in the Block and set its name to an empty string.
reference operator[](const key_type &key)
Locates a Line in the Block.
Container of Blocks that resembles a complete SLHA structure.
iterator begin()
Returns a read/write iterator that points to the first element in the Coll.
iterator erase_first(const key_type &blockName)
Erases first Block with a given name.
reference back()
Returns a read/write reference to the last element of the Coll.
const_iterator find(const value_type::key_type &key) const
Tries to locate a Block in the Coll.
impl_type::size_type size_type
const_reference front() const
Returns a read-only (constant) reference to the first element of the Coll.
void swap(Coll &coll)
Swaps data with another Coll.
void uncomment()
Uncomments all Blocks in the Coll.
void push_front(const std::string &blockString)
Adds a Block to the begin of the Coll.
impl_type::difference_type difference_type
iterator end()
Returns a read/write iterator that points one past the last element in the Coll.
reference block(const Key &key)
Accesses a Block in the Coll.
const_reference back() const
Returns a read-only (constant) reference to the last element of the Coll.
void clear()
Erases all the elements in the Coll.
impl_type::const_reverse_iterator const_reverse_iterator
const_iterator cbegin() const
Returns a read-only (constant) iterator that points to the first element in the Coll.
const_iterator end() const
Returns a read-only (constant) iterator that points one past the last element in the Coll.
const_reference at(const key_type &blockName) const
Locates a Block in the Coll.
impl_type::const_iterator const_iterator
void push_front(const value_type &block)
Adds a Block to the begin of the Coll.
Coll()
Constructs an empty Coll.
const_reverse_iterator rbegin() const
Returns a read-only (constant) reverse iterator that points to the last element in the Coll.
iterator erase_last(const key_type &blockName)
Erases last Block with a given name.
Coll & str(const std::string &coll)
Assigns content from a string to the Coll.
impl_type::pointer pointer
void reformat()
Reformats all Blocks in the Coll.
iterator find(const key_type &blockName)
Tries to locate a Block in the Coll.
bool empty() const
Returns true if the Coll is empty.
void push_back(const std::string &blockString)
Adds a Block to the end of the Coll.
const_reverse_iterator rend() const
Returns a read-only (constant) reverse iterator that points to one before the first element in the Co...
Coll(std::istream &is)
Constructs a Coll with content from an input stream.
void pop_back()
Removes the last element.
iterator find(const value_type::key_type &key)
Tries to locate a Block in the Coll.
const_reverse_iterator crbegin() const
Returns a read-only (constant) reverse iterator that points to the last element in the Coll.
const_reverse_iterator crend() const
Returns a read-only (constant) reverse iterator that points to one before the first element in the Co...
size_type erase(const key_type &blockName)
Erases all Blocks with a given name.
impl_type::const_pointer const_pointer
reference at(const key_type &blockName)
Locates a Block in the Coll.
Coll & read(std::istream &is)
Assigns content from an input stream to the Coll.
size_type size() const
Returns the number of elements in the Coll.
reverse_iterator rend()
Returns a read/write reverse iterator that points to one before the first element in the Coll.
void push_back(const value_type &block)
Adds a Block to the end of the Coll.
impl_type::reverse_iterator reverse_iterator
impl_type::iterator iterator
size_type count(const key_type &blockName) const
Counts all Blocks with a given name.
void comment()
Comments all Blocks in the Coll.
iterator erase(iterator first, iterator last)
Erases a range of elements.
reference front()
Returns a read/write reference to the first element of the Coll.
const_iterator find(const key_type &blockName) const
Tries to locate a Block in the Coll.
iterator insert(iterator position, const value_type &block)
Inserts a Block before given position.
void insert(iterator position, InputIterator first, InputIterator last)
Inserts a range into the Coll.
reverse_iterator rbegin()
Returns a read/write reverse iterator that points to the last element in the Coll.
reference operator[](const key_type &blockName)
Locates a Block in the Coll.
Block::reference line(const Key &key)
Accesses a single Line in the Coll.
const_iterator cend() const
Returns a read-only (constant) iterator that points one past the last element in the Coll.
static Coll from_str(const std::string &coll)
Constructs a Coll with content from a string.
std::string str() const
Returns a string representation of the Coll.
const_reference at(const value_type::key_type &key) const
Locates a Block in the Coll.
static InputIterator find(InputIterator first, InputIterator last, const key_type &blockName)
Tries to locate a Block in a range.
size_type max_size() const
Returns the size() of the largest possible Coll.
const Block & const_reference
reference at(const value_type::key_type &key)
Locates a Block in the Coll.
iterator erase(iterator position)
Erases element at given position.
static InputIterator find(InputIterator first, InputIterator last, const value_type::key_type &key)
Tries to locate a Block in a range.
Line::reference field(const Key &key)
Accesses a single field in the Coll.
const_iterator begin() const
Returns a read-only (constant) iterator that points to the first element in the Coll.
Container of strings that represents a line in a SLHA structure.
reverse_iterator rbegin()
Returns a read/write reverse iterator that points to the last element in the Line.
impl_type::const_reverse_iterator const_reverse_iterator
iterator end()
Returns a read/write iterator that points one past the last element in the Line.
void clear()
Erases all the elements in the Line.
Line()
Constructs an empty Line.
size_type data_size() const
Returns the number of elements without the comment in the Line.
impl_type::pointer pointer
bool is_data_line() const
Returns true if the Line is not empty and if it does not begin with "#", "BLOCK" or "DECAY".
Line & append(const std::string &arg)
Appends a string to the end of the Line.
const_reverse_iterator rend() const
Returns a read-only (constant) reverse iterator that points to one before the first element in the Li...
reference operator[](size_type n)
Subscript access to the strings contained in the Line.
const_iterator begin() const
Returns a read-only (constant) iterator that points to the first element in the Line.
void uncomment()
Uncomments the Line.
void reformat()
Reformats the string representation of the Line.
impl_type::difference_type difference_type
const_iterator cbegin() const
Returns a read-only (constant) iterator that points to the first element in the Line.
const_reference front() const
Returns a read-only (constant) reference to the first element of the Line.
size_type max_size() const
Returns the size() of the largest possible Line.
const_reverse_iterator crend() const
Returns a read-only (constant) reverse iterator that points to one before the first element in the Li...
impl_type::reverse_iterator reverse_iterator
Line(const std::string &line)
Constructs a Line from a string.
std::string str() const
Returns a formatted string representation of the Line.
reference front()
Returns a read/write reference to the first element of the Line.
reference at(size_type n)
Provides access to the strings contained in the Line.
const_reference at(size_type n) const
Provides access to the strings contained in the Line.
size_type size() const
Returns the number of elements in the Line.
impl_type::const_pointer const_pointer
const_iterator end() const
Returns a read-only (constant) iterator that points one past the last element in the Line.
Line & operator+=(const std::string &arg)
Appends a string to the end of the Line.
Line & operator<<(const T &field)
Inserts an element at the end of the Line.
impl_type::iterator iterator
void comment()
Comments the Line.
bool is_block_def() const
Returns true if the Line begins with "BLOCK" or "DECAY" followed by a block name.
reference back()
Returns a read/write reference to the last element of the Line.
const_iterator cend() const
Returns a read-only (constant) iterator that points one past the last element in the Line.
Line & operator=(const std::string &line)
Assigns content from a string to the Line.
const std::string & const_reference
bool empty() const
Returns true if the Line is empty.
Line & str(const std::string &line)
Assigns content to the Line based on a string.
reverse_iterator rend()
Returns a read/write reverse iterator that points to one before the first element in the Line.
bool is_comment_line() const
Returns true if the Line begins with "#".
void swap(Line &line)
Swaps data with another Line.
impl_type::size_type size_type
const_reference back() const
Returns a read-only (constant) reference to the last element of the Line.
iterator begin()
Returns a read/write iterator that points to the first element in the Line.
const_reverse_iterator rbegin() const
Returns a read-only (constant) reverse iterator that points to the last element in the Line.
const_reverse_iterator crbegin() const
Returns a read-only (constant) reverse iterator that points to the last element in the Line.
const_reference operator[](size_type n) const
Subscript access to the strings contained in the Line.
impl_type::const_iterator const_iterator
void trim_right(std::string &str)
std::string to_upper_copy(const std::string &str)
void trim_left(std::string &str)
bool is_all_whitespace(const std::string &str)
std::istream & operator>>(std::istream &is, Block &block)
bool operator==(const Line &a, const Line &b)
bool operator!=(const Line &a, const Line &b)
bool operator<(const Line &a, const Line &b)
bool operator>(const Line &a, const Line &b)
std::ostream & operator<<(std::ostream &os, const Line &line)
bool operator<=(const Line &a, const Line &b)
std::string to_string(const Source &arg)
Converts an object of type Source to a string.
Target to(const Source &arg)
Converts an object of type Source to an object of type Target.
bool operator>=(const Line &a, const Line &b)
Unary predicate that checks if a provided key matches a Line.
bool operator()(const value_type &line) const
key_matches(const key_type &key)
void set_key(const key_type &key)
Unary predicate that checks if a provided key matches the block definition of a Block.
key_matches_block_def(const value_type::key_type &key)
bool operator()(const value_type &block) const
void set_key(const value_type::key_type &key)
Unary predicate that checks if a provided name matches the name of a Block.
void set_key(const key_type &blockName)
key_matches(const key_type &blockName)
bool operator()(const value_type &block) const
Reference to a single field in a SLHA structure.
Line::size_type field
Index of the field in the Line.
Key(const Coll::key_type &_block, const Block::key_type &_line, const Line::size_type &_field)
Constructs a Key from explicit key values.
std::string str() const
Converts a Key into its string representation.
Key(const std::string &keyString)
Constructs a Key from a string.
Key & str(const std::string &keyString)
Converts a string to a Key.
Key(const char *keyString)
Constructs a Key from a string.
Block::key_type line
First field(s) of the Line that contains the field.
Coll::key_type block
Name of the Block that contains the field.