9 #ifndef INP_POLICYDECK_H
10 #define INP_POLICYDECK_H
13 #include "util/utilIO.h"
53 std::string
printStr(
int nt = 0,
int lvl = 0)
const {
55 std::ostringstream oss;
56 oss << tabS <<
"------- PolicyDeck --------" << std::endl << std::endl;
59 oss << tabS << std::endl;
71 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 policy related input data.
Definition: policyDeck.h:23
bool d_enablePostProcessing
Enable post-processing calculation.
Definition: policyDeck.h:37
std::string printStr(int nt=0, int lvl=0) const
Returns the string containing information about the instance of the object.
Definition: policyDeck.h:53
int d_memControlFlag
Flag which indicates level of memory control to be enforced.
Definition: policyDeck.h:30
void print(int nt=0, int lvl=0) const
Prints the information about the instance of the object.
Definition: policyDeck.h:71
PolicyDeck()
Constructor.
Definition: policyDeck.h:42