rename all "newParserDeck" objects to "deck"

The "new" parser is now "the" parser...
This commit is contained in:
Andreas Lauser
2014-04-26 12:03:07 +02:00
parent f360562aee
commit 6a50afb219
19 changed files with 255 additions and 256 deletions

View File

@@ -36,12 +36,12 @@ namespace Opm
RockFromDeck();
/// Initialize from deck and cell mapping.
/// \param newParserDeck Deck produced by the opm-parser code
/// \param deck Deck produced by the opm-parser code
/// \param number_of_cells The number of cells in the grid.
/// \param global_cell The mapping fom local to global cell indices.
/// global_cell[i] is the corresponding global index of i.
/// \param cart_dims The size of the underlying cartesian grid.
void init(Opm::DeckConstPtr newParserDeck,
void init(Opm::DeckConstPtr deck,
int number_of_cells, const int* global_cell,
const int* cart_dims);
@@ -72,10 +72,10 @@ namespace Opm
}
private:
void assignPorosity(Opm::DeckConstPtr newParserDeck,
void assignPorosity(Opm::DeckConstPtr deck,
int number_of_cells,
const int* global_cell);
void assignPermeability(Opm::DeckConstPtr newParserDeck,
void assignPermeability(Opm::DeckConstPtr deck,
int number_of_cells,
const int* global_cell,
const int* cart_dims,