SpectrumSet.hpp
上传用户:yhdzpy8989
上传日期:2007-06-13
资源大小:13604k
文件大小:4k
源码类别:

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: SpectrumSet.hpp,v $
  4.  * PRODUCTION Revision 1000.2  2004/06/01 18:08:55  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.4
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /* $Id: SpectrumSet.hpp,v 1000.2 2004/06/01 18:08:55 gouriano Exp $
  10.  * ===========================================================================
  11.  *
  12.  *                            PUBLIC DOMAIN NOTICE
  13.  *               National Center for Biotechnology Information
  14.  *
  15.  *  This software/database is a "United States Government Work" under the
  16.  *  terms of the United States Copyright Act.  It was written as part of
  17.  *  the author's official duties as a United States Government employee and
  18.  *  thus cannot be copyrighted.  This software/database is freely available
  19.  *  to the public for use. The National Library of Medicine and the U.S.
  20.  *  Government have not placed any restriction on its use or reproduction.
  21.  *
  22.  *  and reliability of the software and data, the NLM 
  23.  *  Although all reasonable efforts have been taken to ensure the accuracyand the U.S.
  24.  *  Government do not and cannot warrant the performance or results that
  25.  *  may be obtained by using this software or data. The NLM and the U.S.
  26.  *  Government disclaim all warranties, express or implied, including
  27.  *  warranties of performance, merchantability or fitness for any particular
  28.  *  purpose.
  29.  *
  30.  *  Please cite the author in any work or product based on this material.
  31.  *
  32.  * ===========================================================================
  33.  *
  34.  * Author:  Lewis Y. Geer
  35.  *
  36.  * File Description:
  37.  *   Code for loading in spectrum datasets
  38.  *
  39.  * Remark:
  40.  *   This code was originally generated by application DATATOOL
  41.  *   using specifications from the data definition file
  42.  *   'omssa.asn'.
  43.  */
  44. #ifndef SPECTRUMSET_HPP
  45. #define SPECTRUMSET_HPP
  46. // generated includes
  47. #include <objects/omssa/MSSpectrumset.hpp>
  48. #include <iostream>
  49. // generated classes
  50. BEGIN_NCBI_SCOPE
  51. BEGIN_objects_SCOPE // namespace ncbi::objects::
  52. class NCBI_XOMSSA_EXPORT CSpectrumSet : public CMSSpectrumset {
  53.     //    typedef CMSSpectrumset_Base Tparent;
  54.     typedef CMSSpectrumset Tparent;
  55. public:
  56.     // constructor
  57.     CSpectrumSet(void);
  58.     // destructor
  59.     ~CSpectrumSet(void);
  60.     ///
  61.     /// load in a single dta file
  62.     ///
  63.     int LoadDTA(
  64. std::istream& DTA  // stream containing dta
  65. );
  66.     ///
  67.     /// load in multiple dta files with <dta> tag separators
  68.     ///
  69.     int LoadMultDTA(
  70.     std::istream& DTA  // stream containing tag delimited dtas
  71.     );
  72.     ///
  73.     /// load multiple dta's separated by a blank line
  74.     ///
  75.     int LoadMultBlankLineDTA(
  76.      std::istream& DTA  // stream containing blank delimited dtas
  77.      );
  78. protected:
  79.     ///
  80.     ///  Read in the header of a DTA file
  81.     ///
  82.     void GetDTAHeader(
  83.       std::istream& DTA,  // input stream
  84.       CRef <CMSSpectrum>& MySpectrum   // asn.1 container for spectra
  85.       );
  86.     ///
  87.     /// Read in the body of a dta file
  88.     ///
  89.     bool CSpectrumSet::GetDTABody(
  90.   std::istream& DTA,   // input stream
  91.   CRef <CMSSpectrum>& MySpectrum   // asn.1 container for spectra
  92.   );
  93. private:
  94.     // Prohibit copy constructor and assignment operator
  95.     CSpectrumSet(const CSpectrumSet& value);
  96.     CSpectrumSet& operator=(const CSpectrumSet& value);
  97. };
  98. /////////////////// CSpectrumSet inline methods
  99. // constructor
  100. inline
  101. CSpectrumSet::CSpectrumSet(void)
  102. {
  103. }
  104. // destructor
  105. inline
  106. CSpectrumSet::~CSpectrumSet(void)
  107. {
  108. }
  109. /////////////////// end of CSpectrumSet inline methods
  110. /*
  111.  * ===========================================================================
  112.  *
  113.  * $Log: SpectrumSet.hpp,v $
  114.  * Revision 1000.2  2004/06/01 18:08:55  gouriano
  115.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.4
  116.  *
  117.  * Revision 1.4  2004/05/27 20:52:15  lewisg
  118.  * better exception checking, use of AutoPtr, command line parsing
  119.  *
  120.  * Revision 1.3  2004/03/16 20:18:54  gorelenk
  121.  * Changed includes of private headers.
  122.  *
  123.  * Revision 1.2  2003/10/24 21:28:41  lewisg
  124.  * add omssa, xomssa, omssacl to win32 build, including dll
  125.  *
  126.  * Revision 1.1  2003/10/20 21:32:13  lewisg
  127.  * ommsa toolkit version
  128.  *
  129.  *
  130.  *
  131.  * ===========================================================================
  132.  */
  133. END_objects_SCOPE // namespace ncbi::objects::
  134. END_NCBI_SCOPE
  135. #endif // SPECTRUMSET_HPP
  136. /* Original file checksum: lines: 85, chars: 2278, CRC32: c22a6458 */