Chaste Release::3.1
|
00001 /* 00002 00003 Copyright (c) 2005-2012, University of Oxford. 00004 All rights reserved. 00005 00006 University of Oxford means the Chancellor, Masters and Scholars of the 00007 University of Oxford, having an administrative office at Wellington 00008 Square, Oxford OX1 2JD, UK. 00009 00010 This file is part of Chaste. 00011 00012 Redistribution and use in source and binary forms, with or without 00013 modification, are permitted provided that the following conditions are met: 00014 * Redistributions of source code must retain the above copyright notice, 00015 this list of conditions and the following disclaimer. 00016 * Redistributions in binary form must reproduce the above copyright notice, 00017 this list of conditions and the following disclaimer in the documentation 00018 and/or other materials provided with the distribution. 00019 * Neither the name of the University of Oxford nor the names of its 00020 contributors may be used to endorse or promote products derived from this 00021 software without specific prior written permission. 00022 00023 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 00024 AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 00025 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 00026 ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE 00027 LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 00028 CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE 00029 GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 00030 HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 00031 LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT 00032 OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 00033 00034 */ 00035 00036 #include "FibreWriter.hpp" 00037 #include "Version.hpp" 00038 00039 template<unsigned DIM> 00040 FibreWriter<DIM>::FibreWriter(const std::string& rDirectory, 00041 const std::string& rBaseName, 00042 const bool clearOutputDir) 00043 : mBaseName(rBaseName), 00044 mFileIsBinary(false) 00045 { 00046 mpOutputFileHandler = new OutputFileHandler(rDirectory, clearOutputDir); 00047 } 00048 00049 template<unsigned DIM> 00050 FibreWriter<DIM>::~FibreWriter() 00051 { 00052 delete mpOutputFileHandler; 00053 } 00054 00055 template<unsigned DIM> 00056 void FibreWriter<DIM>::WriteAllAxi(const std::vector< c_vector<double, DIM> >& fibres) 00057 { 00058 // Write axi file 00059 out_stream p_axi_file = OpenFileAndWriteHeader(this->mBaseName + ".axi", fibres.size()); 00060 00061 //Now give the fibre directions 00062 for (unsigned i=0; i<fibres.size();i++ ) 00063 { 00064 if (this->mFileIsBinary) 00065 { 00066 p_axi_file->write((char*)&fibres[i][0], DIM*sizeof(double)); 00067 } 00068 else 00069 { 00070 for(unsigned j=0; j<DIM; j++) 00071 { 00072 *p_axi_file << fibres[i][j] << "\t"; 00073 } 00074 *p_axi_file <<"\n"; 00075 } 00076 } 00077 *p_axi_file << "#\n# " << ChasteBuildInfo::GetProvenanceString(); 00078 p_axi_file->close(); 00079 } 00080 00081 template<unsigned DIM> 00082 void FibreWriter<DIM>::WriteAllOrtho(const std::vector< c_vector<double, DIM> >& fibres, 00083 const std::vector< c_vector<double, DIM> >& second, 00084 const std::vector< c_vector<double, DIM> >& third) 00085 { 00086 assert(fibres.size() == second.size()); 00087 assert(second.size() == third.size()); 00088 // Write ortho file 00089 out_stream p_file = OpenFileAndWriteHeader(this->mBaseName + ".ortho", fibres.size()); 00090 00091 //Now give the fibre directions 00092 for (unsigned i=0; i<fibres.size();i++ ) 00093 { 00094 if (this->mFileIsBinary) 00095 { 00096 //The binary file is row-major 00097 p_file->write((char*)&fibres[i][0], DIM*sizeof(double)); 00098 p_file->write((char*)&second[i][0], DIM*sizeof(double)); 00099 p_file->write((char*)&third[i][0], DIM*sizeof(double)); 00100 } 00101 else 00102 { 00103 //The ascii file is row-major 00104 for(unsigned j=0; j<DIM; j++) 00105 { 00106 *p_file << fibres[i][j] << "\t"; 00107 } 00108 for(unsigned j=0; j<DIM; j++) 00109 { 00110 *p_file << second[i][j] << "\t"; 00111 } 00112 for(unsigned j=0; j<DIM; j++) 00113 { 00114 *p_file << third[i][j] << "\t"; 00115 } 00116 *p_file <<"\n"; 00117 } 00118 } 00119 *p_file << "#\n# " << ChasteBuildInfo::GetProvenanceString(); 00120 p_file->close(); 00121 } 00122 00123 template<unsigned DIM> 00124 out_stream FibreWriter<DIM>::OpenFileAndWriteHeader(const std::string& rFileName, unsigned numItems) 00125 { 00126 out_stream p_fibre_file = this->mpOutputFileHandler->OpenOutputFile(rFileName); 00127 00128 //Header line says how many fibres are coming... 00129 *p_fibre_file << numItems; 00130 //... and whether the fibres are binary 00131 if (this->mFileIsBinary) 00132 { 00133 *p_fibre_file << "\tBIN\n"; 00134 } 00135 else 00136 { 00137 *p_fibre_file << "\n"; 00138 } 00139 return p_fibre_file; 00140 } 00141 00142 00143 template<unsigned DIM> 00144 void FibreWriter<DIM>::SetWriteFileAsBinary() 00145 { 00146 mFileIsBinary = true; 00147 } 00148 00149 template class FibreWriter<1>; 00150 template class FibreWriter<2>; 00151 template class FibreWriter<3>; 00152 00153 00154 00155 00156