70 lines
1.9 KiB
C++
70 lines
1.9 KiB
C++
/*
|
|
Copyright 2013 Statoil ASA.
|
|
|
|
This file is part of the Open Porous Media project (OPM).
|
|
|
|
OPM is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
OPM is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with OPM. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include <boost/lexical_cast.hpp>
|
|
|
|
#include <opm/parser/eclipse/Deck/DeckIntItem.hpp>
|
|
|
|
namespace Opm {
|
|
|
|
int DeckIntItem::getInt(size_t index) const {
|
|
if (index < m_data.size()) {
|
|
return m_data[index];
|
|
} else
|
|
throw std::out_of_range("Out of range, index must be lower than " + boost::lexical_cast<std::string>(m_data.size()));
|
|
}
|
|
|
|
|
|
const std::vector<int>& DeckIntItem::getIntData() const {
|
|
return m_data;
|
|
}
|
|
|
|
void DeckIntItem::push_back(std::deque<int> data, size_t items) {
|
|
for (size_t i = 0; i < items; i++) {
|
|
m_data.push_back(data[i]);
|
|
}
|
|
}
|
|
|
|
void DeckIntItem::push_back(std::deque<int> data) {
|
|
push_back(data, data.size());
|
|
}
|
|
|
|
void DeckIntItem::push_back(int data) {
|
|
m_data.push_back(data);
|
|
}
|
|
|
|
void DeckIntItem::push_backDefault(int data) {
|
|
m_data.push_back( data );
|
|
m_defaultApplied = true;
|
|
}
|
|
|
|
|
|
void DeckIntItem::push_backMultiple(int value, size_t numValues) {
|
|
for (size_t i = 0; i < numValues; i++)
|
|
m_data.push_back( value );
|
|
}
|
|
|
|
|
|
size_t DeckIntItem::size() const {
|
|
return m_data.size();
|
|
}
|
|
|
|
}
|
|
|