/*! \file sffwriters.cc * \brief functions to write sff data (implementation) * * ---------------------------------------------------------------------------- * * $Id: sffwriters.cc,v 1.1 2010-02-21 12:31:33 tforb Exp $ * \author Thomas Forbriger * \date 21/02/2010 * * functions to write sff data (implementation) * * Copyright (c) 2010 by Thomas Forbriger (BFO Schiltach) * * ---- * This program 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; either version 2 of the License, or * (at your option) any later version. * * This program 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 General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA * ---- * * * REVISIONS and CHANGES * - 21/02/2010 V1.0 Thomas Forbriger * * ============================================================================ */ #define DATWRITE_SFFWRITERS_CC_VERSION \ "DATWRITE_SFFWRITERS_CC V1.0 " #define DATWRITE_SFFWRITERS_CC_CVSID \ "$Id: sffwriters.cc,v 1.1 2010-02-21 12:31:33 tforb Exp $" #include #include namespace datwrite { namespace sff { void writesfftrace(std::ostream& os, const ::sff::TraceHeader& traceheader, const datwrite::util::seriesreservoir& series, const ::sff::Enormmode& normmode) { switch(series.valuetype()) { case ::datwrite::util::Fdouble: os << ::sff::OutputWaveform(series.dseries(), traceheader, normmode); break; case ::datwrite::util::Ffloat: os << ::sff::OutputWaveform(series.fseries(), traceheader, normmode); break; case ::datwrite::util::Finteger: os << ::sff::OutputWaveform(series.iseries(), traceheader, normmode); break; default: DATWRITE_abort("empty reservoir!"); } } // void writesfftrace } // namespace sff } // namespace datwrite /* ----- END OF sffwriters.cc ----- */