00001 /* 00002 00003 Copyright (C) University of Oxford, 2005-2011 00004 00005 University of Oxford means the Chancellor, Masters and Scholars of the 00006 University of Oxford, having an administrative office at Wellington 00007 Square, Oxford OX1 2JD, UK. 00008 00009 This file is part of Chaste. 00010 00011 Chaste is free software: you can redistribute it and/or modify it 00012 under the terms of the GNU Lesser General Public License as published 00013 by the Free Software Foundation, either version 2.1 of the License, or 00014 (at your option) any later version. 00015 00016 Chaste is distributed in the hope that it will be useful, but WITHOUT 00017 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 00018 FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public 00019 License for more details. The offer of Chaste under the terms of the 00020 License is subject to the License being interpreted in accordance with 00021 English Law and subject to any action against the University of Oxford 00022 being under the jurisdiction of the English Courts. 00023 00024 You should have received a copy of the GNU Lesser General Public License 00025 along with Chaste. If not, see <http://www.gnu.org/licenses/>. 00026 00027 */ 00028 00029 00030 #ifndef CHASTEELLIPSOID_HPP_ 00031 #define CHASTEELLIPSOID_HPP_ 00032 00033 #include "ChasteSerialization.hpp" 00034 #include <boost/serialization/base_object.hpp> 00035 00036 #include "AbstractChasteRegion.hpp" 00037 #include "ChastePoint.hpp" 00038 00039 00044 template <unsigned SPACE_DIM> 00045 class ChasteEllipsoid : public AbstractChasteRegion<SPACE_DIM> 00046 { 00048 friend class boost::serialization::access; 00055 template<class Archive> 00056 void serialize(Archive & archive, const unsigned int version) 00057 { 00058 archive & boost::serialization::base_object<AbstractChasteRegion<SPACE_DIM> >(*this); 00059 } 00060 00061 private: 00063 ChastePoint<SPACE_DIM> mCentre; 00064 00066 ChastePoint<SPACE_DIM> mRadii; 00067 00068 public: 00075 ChasteEllipsoid(ChastePoint<SPACE_DIM>& rCentre, ChastePoint<SPACE_DIM>& rRadii); 00076 00082 bool DoesContain(const ChastePoint<SPACE_DIM>& rPointToCheck) const; 00083 00085 const ChastePoint<SPACE_DIM>& rGetCentre() const; 00086 00088 const ChastePoint<SPACE_DIM>& rGetRadii() const; 00089 00090 }; 00091 00092 // Declare identifier for the serializer 00093 #include "SerializationExportWrapper.hpp" 00094 EXPORT_TEMPLATE_CLASS_SAME_DIMS(ChasteEllipsoid) 00095 00096 namespace boost 00097 { 00098 namespace serialization 00099 { 00100 00101 template<class Archive, unsigned SPACE_DIM> 00102 inline void save_construct_data( 00103 Archive & ar, const ChasteEllipsoid<SPACE_DIM> * t, const unsigned int file_version) 00104 { 00105 const ChastePoint<SPACE_DIM>* p_centre = &(t->rGetCentre()); 00106 const ChastePoint<SPACE_DIM>* p_radii = &(t->rGetRadii()); 00107 ar & p_centre; 00108 ar & p_radii; 00109 } 00110 00115 template<class Archive, unsigned SPACE_DIM> 00116 inline void load_construct_data( 00117 Archive & ar, ChasteEllipsoid<SPACE_DIM> * t, const unsigned int file_version) 00118 { 00119 ChastePoint<SPACE_DIM>* p_centre; 00120 ChastePoint<SPACE_DIM>* p_radii; 00121 00122 ar & p_centre; 00123 ar & p_radii; 00124 00125 ::new(t)ChasteEllipsoid<SPACE_DIM>((*p_centre), (*p_radii)); 00126 00127 delete p_centre; 00128 delete p_radii; 00129 } 00130 } 00131 } // namespace ... 00132 00133 #endif /*CHASTEELLIPSOID_HPP_*/