votca 2024.2-dev
Loading...
Searching...
No Matches
apdft.h
Go to the documentation of this file.
1/*
2 * Copyright 2009-2020 The VOTCA Development Team
3 * (http://www.votca.org)
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License")
6 *
7 * You may not use this file except in compliance with the License.
8 * You may obtain a copy of the License at
9 *
10 * http://www.apache.org/licenses/LICENSE-2.0
11 *
12 * Unless required by applicable law or agreed to in writing, software
13 * distributed under the License is distributed on an "AS IS" BASIS,
14 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 * See the License for the specific language governing permissions and
16 * limitations under the License.
17 *
18 */
19
20#pragma once
21#ifndef VOTCA_XTP_APDFT_H
22#define VOTCA_XTP_APDFT_H
23
24// Local VOTCA includes
25#include "votca/xtp/qmstate.h"
26#include "votca/xtp/qmtool.h"
27
28namespace votca {
29namespace xtp {
30
31class APDFT final : public QMTool {
32 public:
33 APDFT() = default;
34
35 ~APDFT() = default;
36 std::string Identify() const { return "apdft"; }
37
38 protected:
39 void ParseOptions(const tools::Property &user_options);
40 bool Run();
41
42 private:
43 std::string grid_accuracy_;
44 std::string orbfile_;
46 std::string outputfile_;
47};
48
49} // namespace xtp
50} // namespace votca
51
52#endif // VOTCA_XTP_APDFT_H
class to manage program options with xml serialization functionality
Definition property.h:55
std::string grid_accuracy_
Definition apdft.h:43
std::string outputfile_
Definition apdft.h:46
std::string orbfile_
Definition apdft.h:44
void ParseOptions(const tools::Property &user_options)
Definition apdft.cc:32
std::string Identify() const
Calculator name.
Definition apdft.h:36
QMState state_
Definition apdft.h:45
Identifier for QMstates. Strings like S1 are converted into enum +zero indexed int.
Definition qmstate.h:132
base class for all analysis tools
Definition basebead.h:33