9 #ifndef INP_NEIGHBORDECK_H
10 #define INP_NEIGHBORDECK_H
12 #include "util/utilIO.h"
51 std::string
printStr(
int nt = 0,
int lvl = 0)
const {
53 std::ostringstream oss;
54 oss << tabS <<
"------- NeighborDeck --------" << std::endl << std::endl;
58 oss << tabS << std::endl;
70 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 neighbor list related input data.
Definition: neighborDeck.h:22
bool d_addPartialElems
Flag to include partially inside nodes in neighbor list.
Definition: neighborDeck.h:35
double d_safetyFactor
Safety factor for neighbor list calculation.
Definition: neighborDeck.h:25
std::string printStr(int nt=0, int lvl=0) const
Returns the string containing information about the instance of the object.
Definition: neighborDeck.h:51
NeighborDeck()
Constructor.
Definition: neighborDeck.h:40
void print(int nt=0, int lvl=0) const
Prints the information about the instance of the object.
Definition: neighborDeck.h:70