MOAB: Mesh Oriented datABase
(version 5.4.1)
|
00001 /* ***************************************************************** 00002 MESQUITE -- The Mesh Quality Improvement Toolkit 00003 00004 Copyright 2006 Sandia National Laboratories. Developed at the 00005 University of Wisconsin--Madison under SNL contract number 00006 624796. The U.S. Government and the University of Wisconsin 00007 retain certain rights to this software. 00008 00009 This library is free software; you can redistribute it and/or 00010 modify it under the terms of the GNU Lesser General Public 00011 License as published by the Free Software Foundation; either 00012 version 2.1 of the License, or (at your option) any later version. 00013 00014 This library is distributed in the hope that it will be useful, 00015 but WITHOUT ANY WARRANTY; without even the implied warranty of 00016 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00017 Lesser General Public License for more details. 00018 00019 You should have received a copy of the GNU Lesser General Public License 00020 (lgpl.txt) along with this library; if not, write to the Free Software 00021 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 00022 00023 (2006) [email protected] 00024 00025 ***************************************************************** */ 00026 00027 /** \file TargetWriter.hpp 00028 * \brief 00029 * \author Jason Kraftcheck 00030 */ 00031 00032 #ifndef MSQ_TARGET_WRITER_HPP 00033 #define MSQ_TARGET_WRITER_HPP 00034 00035 #include "Mesquite.hpp" 00036 #include "Instruction.hpp" 00037 #include "MeshInterface.hpp" 00038 00039 namespace MBMesquite 00040 { 00041 00042 class TargetCalculator; 00043 class WeightCalculator; 00044 00045 /** Save target matrices in tag data 00046 * 00047 * Store element target matrices in tag data. The stored target 00048 * matrices may be retreived using the TargetReader class. 00049 */ 00050 class TargetWriter : public Instruction 00051 { 00052 public: 00053 MESQUITE_EXPORT 00054 TargetWriter( TargetCalculator* tc, 00055 WeightCalculator* wc = 0, 00056 std::string target_base_name = "MSQ_TARGET_MATRIX", 00057 std::string weight_base_name = "MSQ_TARGET_WEIGHT" ); 00058 00059 MESQUITE_EXPORT virtual ~TargetWriter(); 00060 00061 MESQUITE_EXPORT 00062 double loop_over_mesh( MeshDomainAssoc* mesh_and_domain, const Settings*, MsqError& ); 00063 00064 MESQUITE_EXPORT 00065 void initialize_queue( MeshDomainAssoc* mesh_and_domain, const Settings* settings, MsqError& err ); 00066 00067 MESQUITE_EXPORT 00068 std::string get_name() const; 00069 00070 private: 00071 TagHandle get_target_tag( unsigned dimension, unsigned count, Mesh* mesh, MsqError& err ); 00072 TagHandle get_weight_tag( unsigned count, Mesh* mesh, MsqError& err ); 00073 TagHandle get_tag_handle( const std::string& base_name, unsigned num_dbl, Mesh* mesh, MsqError& err ); 00074 00075 TargetCalculator* targetCalc; 00076 WeightCalculator* weightCalc; 00077 00078 std::string targetName, weightName; 00079 std::vector< TagHandle > targetTags, weightTags; 00080 }; 00081 00082 } // namespace MBMesquite 00083 00084 #endif