-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFile.cpp
More file actions
33 lines (26 loc) · 712 Bytes
/
File.cpp
File metadata and controls
33 lines (26 loc) · 712 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#include "File.h"
#include "input.h"
bool File::ReadGeometry( Cell &cel )
{
TITLE("File","ReadGeometry");
return ReadGeometry_ABACUS(cel);
else
{
cout << " Error here: ReadGeometry." << endl;
cout << " msd_in_type = " << INPUT.msd_in_type << endl;
exit(0);
}
return false;
}
bool File::ReadDeltaR( Cell &cel )
{
TITLE("File","ReadDeltaR");
return ReadDeltaR_ABACUS(cel);
return false;
}
bool File::CheckGeometry( Cell &cel)
{
TITLE("File","CheckGeometry");
return CheckGeometry_ABACUS(cel);
return false;
}