votca 2024.1-dev
Loading...
Searching...
No Matches
transition_densities.h
Go to the documentation of this file.
1/*
2 * Copyright 2009-2022 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_TRANSITION_DENSITIES_H
22#define VOTCA_XTP_TRANSITION_DENSITIES_H
23
24// Standard includes
25#include <memory>
26
27// Local VOTCA includes
28#include "logger.h"
29#include "orbitals.h"
30#include "qmstate.h"
31
32namespace votca {
33namespace xtp {
41 public:
43
44 TransitionDensities(Orbitals& orbitals1, Orbitals& orbitals2, Logger* log)
45 : orbitals1_(orbitals1), orbitals2_(orbitals2), log_(log) {};
46
47 void configure();
48
49 Eigen::MatrixXd Matrix(QMState state1, QMState state2);
50
51 private:
55
57
65
66 Eigen::MatrixXd occlevels1_;
67 Eigen::MatrixXd virtlevels1_;
68
69 Eigen::MatrixXd occlevels2_;
70 Eigen::MatrixXd virtlevels2_;
71};
72
73} // namespace xtp
74} // namespace votca
75
76#endif // VOTCA_XTP_TRANSITION_DENSITIES_H
Container to hold Basisfunctions for all atoms.
Definition aobasis.h:42
Logger is used for thread-safe output of messages.
Definition logger.h:164
container for molecular orbitals
Definition orbitals.h:46
Identifier for QMstates. Strings like S1 are converted into enum +zero indexed int.
Definition qmstate.h:132
Generalized transition densities tools for different excited states.
Eigen::MatrixXd Matrix(QMState state1, QMState state2)
TransitionDensities(Orbitals &orbitals1, Orbitals &orbitals2, Logger *log)
base class for all analysis tools
Definition basebead.h:33
Eigen::Index Index
Definition types.h:26