PSCF v1.2
groupFile.cpp
1/*
2* PSCF - Polymer Self-Consistent Field Theory
3*
4* Copyright 2016 - 2022, The Regents of the University of Minnesota
5* Distributed under the terms of the GNU General Public License.
6*/
7
8#include "groupFile.h"
9#include <pscf/paths.h>
10#include <util/global.h>
11
12// Macros to generated quoted path to data directory, DAT_DIR
13#define XSTR(s) STR(s)
14#define STR(s) # s
15#define DAT_DIR_STRING XSTR(PSCF_DATA_DIR)
16//#define DAT_DIR_STRING XSTR(DAT_DIR)
17
18namespace Pscf {
19namespace Prdc {
20
21 using namespace Util;
22
23 /*
24 * Generates the file name from a group name.
25 */
26 std::string makeGroupFileName(int D, std::string groupName)
27 {
28 std::string filename = DAT_DIR_STRING ;
29 filename += "groups/";
30 if (D==1) {
31 filename += "1/";
32 } else
33 if (D==2) {
34 filename += "2/";
35 } else
36 if (D==3) {
37 filename += "3/";
38 } else {
39 UTIL_THROW("Invalid dimension of space");
40 }
41 filename += groupName;
42 return filename;
43 }
44
45} // namespace Prdc
46} // namespace Pscf
File containing preprocessor macros for error handling.
#define UTIL_THROW(msg)
Macro for throwing an Exception, reporting function, file and line number.
Definition global.h:51
std::string makeGroupFileName(int D, std::string groupName)
Generates the file name from a group name.
Definition groupFile.cpp:26
PSCF package top-level namespace.
Definition param_pc.dox:1
Utility classes for scientific computation.
File containing absolute paths to data, for use in code and tests.