GQCP
Loading...
Searching...
No Matches
RTransformation.hpp
Go to the documentation of this file.
1// This file is part of GQCG-GQCP.
2//
3// Copyright (C) 2017-2020 the GQCG developers
4//
5// GQCG-GQCP is free software: you can redistribute it and/or modify
6// it under the terms of the GNU Lesser General Public License as published by
7// the Free Software Foundation, either version 3 of the License, or
8// (at your option) any later version.
9//
10// GQCG-GQCP is distributed in the hope that it will be useful,
11// but WITHOUT ANY WARRANTY; without even the implied warranty of
12// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13// GNU Lesser General Public License for more details.
14//
15// You should have received a copy of the GNU Lesser General Public License
16// along with GQCG-GQCP. If not, see <http://www.gnu.org/licenses/>.
17
18#pragma once
19
20
23
24
25namespace GQCP {
26
27
28/*
29 * MARK: RTransformation implementation
30 */
31
39template <typename _Scalar>
41 public SimpleTransformation<_Scalar, RTransformation<_Scalar>> {
42public:
43 // The scalar type used for a transformation coefficient: real or complex.
44 using Scalar = _Scalar;
45
46public:
47 /*
48 * MARK: Constructors
49 */
50
51 // Inherit SimpleTransformation' constructors.
52 using SimpleTransformation<Scalar, RTransformation<Scalar>>::SimpleTransformation;
53};
54
55
56/*
57 * MARK: BasisTransformableTraits
58 */
59
63template <typename Scalar>
65
66 // The type of the transformation for which the basis transformation should be defined. A transformation should naturally be transformable with itself.
68};
69
70
71/*
72 * MARK: JacobiRotatableTraits
73 */
74
78template <typename Scalar>
80
81 // The type of Jacobi rotation for which the Jacobi rotation should be defined.
83};
84
85
86/*
87 * MARK: OrbitalRotationGeneratorTraits
88 */
89
93template <typename Scalar>
95
96 // The type of orbital rotation generators associated with an `RTransformation`.
98};
99
100
101} // namespace GQCP
Definition: JacobiRotation.hpp:33
Definition: ROrbitalRotationGenerators.hpp:38
Definition: RTransformation.hpp:41
_Scalar Scalar
Definition: RTransformation.hpp:44
Definition: SimpleTransformation.hpp:49
Definition: BaseOneElectronIntegralBuffer.hpp:25
Definition: BasisTransformable.hpp:37
Definition: JacobiRotatable.hpp:37
Definition: OrbitalRotationGeneratorTraits.hpp:28