mirror of
https://git.gfz-potsdam.de/naaice/poet.git
synced 2025-12-16 12:54:50 +01:00
11 lines
231 B
C++
11 lines
231 B
C++
#ifndef ENUMS_H_
|
|
#define ENUMS_H_
|
|
|
|
namespace poet {
|
|
enum DHT_PROP_TYPES { DHT_TYPE_DEFAULT, DHT_TYPE_CHARGE, DHT_TYPE_TOTAL };
|
|
|
|
enum CHEMISTRY_OUT_SOURCE { CHEM_PQC, CHEM_DHT, CHEM_INTERP };
|
|
} // namespace poet
|
|
|
|
#endif // ENUMS_H_
|