Files
rdkit/Code/Shape/alignmentInfo.cpp
Jan Domanski c046d9abaa Initial work on shape-it integration
- flattened out the structure (cpp and h files are in one directory),
- changed includes to be #include <Shape/xxx.h>,
- removed openbabel dependancies
2013-10-12 22:31:21 +01:00

48 lines
1.3 KiB
C++

/*******************************************************************************
alignmentInfo.cpp - Shape-it
Copyright 2012 by Silicos-it, a division of Imacosi BVBA
This file is part of Shape-it.
Shape-it is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published
by the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Shape-it is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with Shape-it. If not, see <http://www.gnu.org/licenses/>.
Shape-it is linked against OpenBabel version 2.
OpenBabel is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation version 2 of the License.
***********************************************************************/
#include <Shape/alignmentInfo.h>
AlignmentInfo::AlignmentInfo(void)
: overlap(0.0)
, rotor(4, 0.0)
{
rotor[0] = 1.0;
}
AlignmentInfo::~AlignmentInfo(void)
{
}