Loading...
Searching...
No Matches
testWriteR.cpp
Go to the documentation of this file.
1/*
2** This file is part of eOn.
3**
4** SPDX-License-Identifier: BSD-3-Clause
5**
6** Copyright (c) 2010--present, eOn Development Team
7** All rights reserved.
8**
9** Repo:
10** https://github.com/TheochemUI/eOn
11*/
12#include "eon/Matter.h"
13#include "eon/Parameters.h"
14#include <cstdlib>
15#include <string>
16
17using namespace std::string_literals;
18
19int main() {
20 std::string confile("pos.con");
21 Parameters parameters;
22 auto pot = eonc::helpers::makePotential(parameters);
23 Matter matter(pot, parameters);
24 matter.con2matter(confile);
25 matter.writeTibble("rSysdat.txt"s);
26 return EXIT_SUCCESS;
27}
io::IoStatus writeTibble(std::string filename)
Definition Matter.h:266
io::IoStatus con2matter(std::string filename)
Definition Matter.h:269
std::shared_ptr< Potential > makePotential(const Parameters &params)
int main()