PSCF v1.1
SpaceGroup.cpp
1/*
2* Simpatico - Simulation Package for Polymeric and Molecular Liquids
3*
4* Copyright 2016 - 2022, The Regents of the University of Minnesota
5* Distributed under the terms of the GNU General Public License.
6*/
7
8#include <pscf/crystal/SpaceGroup.tpp>
9
10namespace Pscf
11{
12
13 template class SpaceGroup<1>;
14 template class SpaceGroup<2>;
15 template class SpaceGroup<3>;
16
17 template void readGroup(std::string, SpaceGroup<1>& );
18 template void readGroup(std::string, SpaceGroup<2>& );
19 template void readGroup(std::string, SpaceGroup<3>& );
20
21 template void writeGroup(std::string, SpaceGroup<1> const&);
22 template void writeGroup(std::string, SpaceGroup<2> const&);
23 template void writeGroup(std::string, SpaceGroup<3> const&);
24
25}
C++ namespace for polymer self-consistent field theory (PSCF).