9 #ifndef INP_MASSMATRIXDECK_H
10 #define INP_MASSMATRIXDECK_H
13 #include "util/utilIO.h"
47 std::string
printStr(
int nt = 0,
int lvl = 0)
const {
49 std::ostringstream oss;
50 oss << tabS <<
"------- MassMatrixDeck --------" << std::endl << std::endl;
51 oss << tabS <<
"Mass matrix type = " <<
d_MApproxType << std::endl;
52 oss << tabS << std::endl;
64 void print(
int nt = 0,
int lvl = 0)
const { std::cout <<
printStr(nt, lvl); };
Collection of methods and database related to input.
Definition: main.cpp:21
std::string getTabS(int nt)
Generate a string contaning nt tabs.
Definition: utilIO.h:26
Structure to read and store mass matrix related input data.
Definition: massMatrixDeck.h:23
MassMatrixDeck()=default
Constructor.
std::string d_MApproxType
Mass matrix approximation type.
Definition: massMatrixDeck.h:31
std::string printStr(int nt=0, int lvl=0) const
Returns the string containing information about the instance of the object.
Definition: massMatrixDeck.h:47
void print(int nt=0, int lvl=0) const
Prints the information about the instance of the object.
Definition: massMatrixDeck.h:64