| [28c025] | 1 | /*
 | 
|---|
 | 2 |  * Project: MoleCuilder
 | 
|---|
 | 3 |  * Description: creates and alters molecular systems
 | 
|---|
 | 4 |  * Copyright (C)  2012 University of Bonn. All rights reserved.
 | 
|---|
 | 5 |  * 
 | 
|---|
 | 6 |  *
 | 
|---|
 | 7 |  *   This file is part of MoleCuilder.
 | 
|---|
 | 8 |  *
 | 
|---|
 | 9 |  *    MoleCuilder is free software: you can redistribute it and/or modify
 | 
|---|
 | 10 |  *    it under the terms of the GNU General Public License as published by
 | 
|---|
 | 11 |  *    the Free Software Foundation, either version 2 of the License, or
 | 
|---|
 | 12 |  *    (at your option) any later version.
 | 
|---|
 | 13 |  *
 | 
|---|
 | 14 |  *    MoleCuilder is distributed in the hope that it will be useful,
 | 
|---|
 | 15 |  *    but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
|---|
 | 16 |  *    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | 
|---|
 | 17 |  *    GNU General Public License for more details.
 | 
|---|
 | 18 |  *
 | 
|---|
 | 19 |  *    You should have received a copy of the GNU General Public License
 | 
|---|
 | 20 |  *    along with MoleCuilder.  If not, see <http://www.gnu.org/licenses/>.
 | 
|---|
 | 21 |  */
 | 
|---|
 | 22 | 
 | 
|---|
 | 23 | /*
 | 
|---|
 | 24 |  * SamplingGrid.cpp
 | 
|---|
 | 25 |  *
 | 
|---|
 | 26 |  *  Created on: 25.07.2012
 | 
|---|
 | 27 |  *      Author: heber
 | 
|---|
 | 28 |  */
 | 
|---|
 | 29 | 
 | 
|---|
 | 30 | // include config.h
 | 
|---|
 | 31 | #ifdef HAVE_CONFIG_H
 | 
|---|
 | 32 | #include <config.h>
 | 
|---|
 | 33 | #endif
 | 
|---|
 | 34 | 
 | 
|---|
 | 35 | // include headers that implement a archive in simple text format
 | 
|---|
 | 36 | // otherwise BOOST_CLASS_EXPORT_IMPLEMENT has no effect
 | 
|---|
 | 37 | #include <boost/archive/text_oarchive.hpp>
 | 
|---|
 | 38 | #include <boost/archive/text_iarchive.hpp>
 | 
|---|
 | 39 | 
 | 
|---|
 | 40 | #include "CodePatterns/MemDebug.hpp"
 | 
|---|
 | 41 | 
 | 
|---|
 | 42 | #include "Jobs/Grid/SamplingGridProperties.hpp"
 | 
|---|
 | 43 | 
 | 
|---|
 | 44 | SamplingGridProperties::SamplingGridProperties(
 | 
|---|
 | 45 |     const double _begin[3],
 | 
|---|
 | 46 |     const double _size,
 | 
|---|
 | 47 |     const int _level) :
 | 
|---|
 | 48 |   size(_size),
 | 
|---|
 | 49 |   level(_level)
 | 
|---|
 | 50 | {
 | 
|---|
 | 51 |   for(size_t i=0; i<3; ++i)
 | 
|---|
 | 52 |     begin[i] = _begin[i];
 | 
|---|
 | 53 | }
 | 
|---|
 | 54 | 
 | 
|---|
 | 55 | SamplingGridProperties::SamplingGridProperties(const SamplingGridProperties &_props) :
 | 
|---|
 | 56 |   size(_props.size),
 | 
|---|
 | 57 |   level(_props.level)
 | 
|---|
 | 58 | {
 | 
|---|
 | 59 |   for(size_t i=0; i<3; ++i)
 | 
|---|
 | 60 |     begin[i] = _props.begin[i];
 | 
|---|
 | 61 | }
 | 
|---|
 | 62 | 
 | 
|---|
 | 63 | SamplingGridProperties::SamplingGridProperties() :
 | 
|---|
 | 64 |   size(0.),
 | 
|---|
 | 65 |   level(0)
 | 
|---|
 | 66 | {
 | 
|---|
 | 67 |   for(size_t i=0; i<3; ++i)
 | 
|---|
 | 68 |     begin[i] = 0.;
 | 
|---|
 | 69 | }
 | 
|---|
 | 70 | 
 | 
|---|
 | 71 | SamplingGridProperties::~SamplingGridProperties()
 | 
|---|
 | 72 | {}
 | 
|---|
 | 73 | 
 | 
|---|
| [c889b7] | 74 | bool SamplingGridProperties::operator==(const SamplingGridProperties &_props) const
 | 
|---|
 | 75 | {
 | 
|---|
 | 76 |   bool status = true;
 | 
|---|
 | 77 |   for (size_t i=0; i<3; ++i)
 | 
|---|
 | 78 |     status &= begin[i] == _props.begin[i];
 | 
|---|
 | 79 |   status &= size == _props.size;
 | 
|---|
 | 80 |   status &= level == _props.level;
 | 
|---|
 | 81 |   return status;
 | 
|---|
 | 82 | }
 | 
|---|
 | 83 | 
 | 
|---|
| [28c025] | 84 | // we need to explicitly instantiate the serialization functions as
 | 
|---|
 | 85 | // its is only serialized through its base class FragmentJob
 | 
|---|
 | 86 | BOOST_CLASS_EXPORT_IMPLEMENT(SamplingGridProperties)
 | 
|---|