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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: su_private.hpp,v $
  4.  * PRODUCTION Revision 1000.0  2004/06/01 18:14:38  gouriano
  5.  * PRODUCTION PRODUCTION: IMPORTED [GCC34_MSVC7] Dev-tree R1.7
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: su_private.hpp,v 1000.0 2004/06/01 18:14:38 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. *  Although all reasonable efforts have been taken to ensure the accuracy
  23. *  and reliability of the software and data, the NLM and 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. * Authors:  Paul Thiessen
  35. *
  36. * File Description:
  37. *       private common stuff for alignment utility algorithms
  38. *
  39. * ===========================================================================
  40. */
  41. #ifndef STRUCT_UTIL_PRIVATE__HPP
  42. #define STRUCT_UTIL_PRIVATE__HPP
  43. #include <corelib/ncbistd.hpp>
  44. #include <corelib/ncbiexpt.hpp>
  45. BEGIN_SCOPE(struct_util)
  46. #define ERROR_MESSAGE(s) ERR_POST(ncbi::Error << "struct_util: " << s << '!')
  47. #define WARNING_MESSAGE(s) ERR_POST(ncbi::Warning << "struct_util: " << s)
  48. #define INFO_MESSAGE(s) ERR_POST(ncbi::Info << "struct_util: " << s)
  49. #define TRACE_MESSAGE(s) ERR_POST(ncbi::Trace << "struct_util: " << s)
  50. #define THROW_MESSAGE(str) throw ncbi::CException(__FILE__, __LINE__, NULL, ncbi::CException::eUnknown, (str))
  51. // utility function to remove some elements from a vector. Actually does this by copying to a new
  52. // vector, so T should have an efficient copy ctor.
  53. template < class T >
  54. void VectorRemoveElements(std::vector < T >& v, const std::vector < bool >& remove, unsigned int nToRemove)
  55. {
  56.     if (v.size() != remove.size()) {
  57. #ifndef _DEBUG
  58.         // MSVC 6 gets internal compiler error here on debug builds... ugh!
  59.         ERROR_MESSAGE("VectorRemoveElements() - size mismatch");
  60. #endif
  61.         return;
  62.     }
  63.     std::vector < T > copy(v.size() - nToRemove);
  64.     unsigned int i, nRemoved = 0;
  65.     for (i=0; i<v.size(); ++i) {
  66.         if (remove[i])
  67.             ++nRemoved;
  68.         else
  69.             copy[i - nRemoved] = v[i];
  70.     }
  71.     if (nRemoved != nToRemove) {
  72. #ifndef _DEBUG
  73.         ERROR_MESSAGE("VectorRemoveElements() - bad nToRemove");
  74. #endif
  75.         return;
  76.     }
  77.     v = copy;
  78. }
  79. END_SCOPE(struct_util)
  80. #endif // STRUCT_UTIL_PRIVATE__HPP
  81. /*
  82. * ---------------------------------------------------------------------------
  83. * $Log: su_private.hpp,v $
  84. * Revision 1000.0  2004/06/01 18:14:38  gouriano
  85. * PRODUCTION: IMPORTED [GCC34_MSVC7] Dev-tree R1.7
  86. *
  87. * Revision 1.7  2004/05/26 02:40:24  thiessen
  88. * progress towards LOO - all but PSSM and row ordering
  89. *
  90. * Revision 1.6  2004/05/25 17:47:23  ucko
  91. * Proper fix: make sure to qualify Error (and a few other things for
  92. * good measure) with ncbi::.
  93. *
  94. * Revision 1.5  2004/05/25 17:25:16  ucko
  95. * Avoid the "Error" diagnostic manipulator, as that severity is already
  96. * the default and some compilers claim the manipulator is undeclared(!).
  97. *
  98. * Revision 1.4  2004/05/25 16:24:51  thiessen
  99. * remove WorkShop warnings
  100. *
  101. * Revision 1.3  2004/05/25 16:12:30  thiessen
  102. * fix GCC warnings
  103. *
  104. * Revision 1.2  2004/05/25 15:52:18  thiessen
  105. * add BlockMultipleAlignment, IBM algorithm
  106. *
  107. * Revision 1.1  2004/05/24 23:04:05  thiessen
  108. * initial checkin
  109. *
  110. */