PSCF v1.2
Format.cpp
1/*
2* Util Package - C++ Utilities for Scientific Computation
3*
4* Copyright 2010 - 2017, The Regents of the University of Minnesota
5* Distributed under the terms of the GNU General Public License.
6*/
7
8#include "Format.h"
9#include <util/global.h>
10
11namespace Util
12{
13
14 // Define and initialize static constants
15 int Format::defaultWidth_ = 15;
16 int Format::defaultPrecision_ = 7;
17
22 { Format::defaultWidth_ = width; }
23
24 /*
25 * Set Format::defaultPrecision_
26 */
27 void Format::setDefaultPrecision(int precision)
28 { Format::defaultPrecision_ = precision; }
29
30 /*
31 * Get the default output field width.
32 */
34 { return defaultWidth_; }
35
36 /*
37 * Get the default output precision.
38 */
40 { return defaultPrecision_; }
41
42 /*
43 * This static method exists to guarantee initialization of static
44 * constants that are defined in the same file. Call it somewhere
45 * in the program to guarantee that the contents of this file will
46 * be linked, rather than optimized away. It may only be called once.
47 */
49 {
50 // This function can only be called once.
51 static int nCall = 0; // static value is only initialized once
52 UTIL_CHECK(nCall == 0);
53 Format::defaultWidth_ = 15;
54 Format::defaultPrecision_ = 7;
55 ++nCall;
56 }
57
58}
static void initStatic()
Initialize or reset default width and precision values.
Definition Format.cpp:48
static void setDefaultPrecision(int precision)
Set the default output precision.
Definition Format.cpp:27
static int defaultWidth()
Return the default output field width.
Definition Format.cpp:33
static void setDefaultWidth(int width)
Set the default output field width.
Definition Format.cpp:21
static int defaultPrecision()
Return the default output precision.
Definition Format.cpp:39
File containing preprocessor macros for error handling.
#define UTIL_CHECK(condition)
Assertion macro suitable for serial or parallel production code.
Definition global.h:68
Utility classes for scientific computation.