GQCP
Loading...
Searching...
No Matches
SpinResolved1DMComponent.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: SpinResolved1DMComponent implementation
30 */
31
39template <typename _Scalar>
41 public Simple1DM<_Scalar, SpinResolved1DMComponent<_Scalar>> {
42public:
43 // The scalar type used for a density matrix element: real or complex.
44 using Scalar = _Scalar;
45
46public:
47 /*
48 * MARK: Constructors
49 */
50
51 // Inherit `Simple1DM`'s constructors.
53};
54
55
56/*
57 * MARK: BasisTransformableTraits
58 */
59
63template <typename Scalar>
65
66 // The type of transformation that is naturally related to a `SpinResolved1DMComponent`.
68};
69
70
71/*
72 * MARK: JacobiRotatableTraits
73 */
74
78template <typename Scalar>
80
81 // The type of Jacobi rotation that is naturally related to an `SpinResolved1DMComponent`.
83};
84
85
86/*
87 * MARK: DensityMatrixTraits
88 */
89
93template <typename Scalar>
95
96 // The type of transformation that is naturally related to a `SpinResolved1DMComponent`. Since a `SpinResolved1DM` naturally transforms with a `UTransformation`, a `SpinResolved1DMComponent` naturally transforms with a `UTransformationComponent`.
98};
99
100
101} // namespace GQCP
Definition: JacobiRotation.hpp:33
Definition: Simple1DM.hpp:48
Definition: SpinResolved1DMComponent.hpp:41
_Scalar Scalar
Definition: SpinResolved1DMComponent.hpp:44
Definition: BaseOneElectronIntegralBuffer.hpp:25
Definition: BasisTransformable.hpp:37
Definition: DensityMatrixTraits.hpp:28
Definition: JacobiRotatable.hpp:37