DFT-EFE
 
Loading...
Searching...
No Matches
Defaults.h
Go to the documentation of this file.
1/******************************************************************************
2 * Copyright (c) 2021. *
3 * The Regents of the University of Michigan and DFT-EFE developers. *
4 * *
5 * This file is part of the DFT-EFE code. *
6 * *
7 * DFT-EFE is free software: you can redistribute it and/or modify *
8 * it under the terms of the Lesser GNU General Public License as *
9 * published by the Free Software Foundation, either version 3 of *
10 * the License, or (at your option) any later version. *
11 * *
12 * DFT-EFE is distributed in the hope that it will be useful, but *
13 * WITHOUT ANY WARRANTY; without even the implied warranty *
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. *
15 * See the Lesser GNU General Public License for more details. *
16 * *
17 * You should have received a copy of the GNU Lesser General Public *
18 * License at the top level of DFT-EFE distribution. If not, see *
19 * <https://www.gnu.org/licenses/>. *
20 ******************************************************************************/
21
22/*
23 * @author Bikash Kanungo
24 */
25
26#ifndef dftefeUtilsDefaults_h
27#define dftefeUtilsDefaults_h
28
29#include <complex>
30#include <string>
31#include <utils/TypeConfig.h>
32namespace dftefe
33{
34 namespace utils
35 {
36 template <typename T>
37 class Types
38 {
39 public:
40 static const T zero;
41 };
42
43 template <>
44 class Types<int>
45 {
46 public:
47 static const int zero;
48 };
49
50 template <>
51 class Types<unsigned int>
52 {
53 public:
54 static const unsigned int zero;
55 };
56
57 template <>
58 class Types<short int>
59 {
60 public:
61 static const short int zero;
62 };
63
64 template <>
65 class Types<unsigned short int>
66 {
67 public:
68 static const unsigned short int zero;
69 };
70
71 template <>
72 class Types<long int>
73 {
74 public:
75 static const long int zero;
76 };
77
78 template <>
79 class Types<unsigned long int>
80 {
81 public:
82 static const unsigned long int zero;
83 };
84
85 template <>
86 class Types<double>
87 {
88 public:
89 static const double zero;
90 };
91
92 template <>
93 class Types<float>
94 {
95 public:
96 static const float zero;
97 };
98
99 template <>
100 class Types<std::complex<double>>
101 {
102 public:
103 static const std::complex<double> zero;
104 };
105
106 template <>
107 class Types<std::complex<float>>
108 {
109 public:
110 static const std::complex<float> zero;
111 };
112
113 template <>
114 class Types<char>
115 {
116 public:
117 static const char zero;
118 };
119
120 template <>
121 class Types<std::string>
122 {
123 public:
124 static const std::string zero;
125 };
126
128 {
129 public:
130 //
131 // floating point precision to which one should print
132 //
133 static const size_type PRECISION;
134 };
135
136 } // end of namespace utils
137} // end of namespace dftefe
138#include <utils/Defaults.t.cpp>
139#endif // dftefeUtilsDefaults_h
static const size_type PRECISION
Definition: Defaults.h:133
static const char zero
Definition: Defaults.h:117
static const double zero
Definition: Defaults.h:89
static const float zero
Definition: Defaults.h:96
static const int zero
Definition: Defaults.h:47
static const long int zero
Definition: Defaults.h:75
static const short int zero
Definition: Defaults.h:61
static const std::complex< double > zero
Definition: Defaults.h:103
static const std::complex< float > zero
Definition: Defaults.h:110
static const std::string zero
Definition: Defaults.h:124
static const unsigned int zero
Definition: Defaults.h:54
static const unsigned long int zero
Definition: Defaults.h:82
static const unsigned short int zero
Definition: Defaults.h:68
Definition: Defaults.h:38
static const T zero
Definition: Defaults.h:40
dealii includes
Definition: AtomFieldDataSpherical.cpp:31
unsigned int size_type
Definition: TypeConfig.h:8