📄 periodic_table.hpp
字号:
/* * =========================================================================== * PRODUCTION $Log: periodic_table.hpp,v $ * PRODUCTION Revision 1000.1 2004/04/12 17:33:02 gouriano * PRODUCTION PRODUCTION: UPGRADED [CATCHUP_003] Dev-tree R1.6 * PRODUCTION * =========================================================================== *//* $Id: periodic_table.hpp,v 1000.1 2004/04/12 17:33:02 gouriano Exp $* ===========================================================================** PUBLIC DOMAIN NOTICE* National Center for Biotechnology Information** This software/database is a "United States Government Work" under the* terms of the United States Copyright Act. It was written as part of* the author's official duties as a United States Government employee and* thus cannot be copyrighted. This software/database is freely available* to the public for use. The National Library of Medicine and the U.S.* Government have not placed any restriction on its use or reproduction.** Although all reasonable efforts have been taken to ensure the accuracy* and reliability of the software and data, the NLM and the U.S.* Government do not and cannot warrant the performance or results that* may be obtained by using this software or data. The NLM and the U.S.* Government disclaim all warranties, express or implied, including* warranties of performance, merchantability or fitness for any particular* purpose.** Please cite the author in any work or product based on this material.** ===========================================================================** Authors: Paul Thiessen** File Description:* Classes to information about atomic elements** ===========================================================================*/#ifndef CN3D_PERIODICTABLE__HPP#define CN3D_PERIODICTABLE__HPP#include <corelib/ncbistl.hpp>#include <map>#include "vector_math.hpp"BEGIN_SCOPE(Cn3D)class Element{public: const char *name, *symbol; double vdWRadius; Vector color; Element(const char *n, const char *s, double r, double g, double b, double v) : name(n), symbol(s), color(r,g,b), vdWRadius(v) { }};class PeriodicTableClass{private: typedef std::map < int, const Element * > ZMapType; ZMapType ZMap;public: PeriodicTableClass(void); ~PeriodicTableClass(void); const Element * GetElement(int) const; void AddElement(int Z, const char * name, const char * symbol, double r, double g, double b, double vdW);};extern PeriodicTableClass PeriodicTable; // one global copy for now// general utility functionsinline bool IsMetal(int atomicNumber){ if ((atomicNumber >= 3 && atomicNumber <= 4) || // Li..Be (atomicNumber >= 11 && atomicNumber <= 13) || // Na..Al (atomicNumber >= 19 && atomicNumber <= 32) || // K..Ge (atomicNumber >= 37 && atomicNumber <= 51) || // Rb..Sb (atomicNumber >= 55 && atomicNumber <= 84) || // Cs..Po (atomicNumber >= 87 && atomicNumber <= 109)) // Fr..Mt return true; return false;}END_SCOPE(Cn3D)#endif // CN3D_PERIODICTABLE__HPP/** ---------------------------------------------------------------------------* $Log: periodic_table.hpp,v $* Revision 1000.1 2004/04/12 17:33:02 gouriano* PRODUCTION: UPGRADED [CATCHUP_003] Dev-tree R1.6** Revision 1.6 2004/02/19 17:05:02 thiessen* remove cn3d/ from include paths; add pragma to disable annoying msvc warning** Revision 1.5 2003/02/03 19:20:04 thiessen* format changes: move CVS Log to bottom of file, remove std:: from .cpp files, and use new diagnostic macros** Revision 1.4 2000/10/04 17:40:46 thiessen* rearrange STL #includes** Revision 1.3 2000/08/24 18:43:15 thiessen* tweaks for transparent sphere display** Revision 1.2 2000/07/27 13:30:10 thiessen* remove 'using namespace ...' from all headers** Revision 1.1 2000/07/12 23:30:47 thiessen* now draws basic CPK model**/
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -