|
funkalicious 0.1
|
00001 /**Constants for dotcode 00002 00003 Copyright (C) 2011 Joseph Pingenot 00004 00005 This program is free software: you can redistribute it and/or modify 00006 it under the terms of the GNU Affero General Public License as published by 00007 the Free Software Foundation, either version 3 of the License, or 00008 (at your option) any later version. 00009 00010 This program is distributed in the hope that it will be useful, 00011 but WITHOUT ANY WARRANTY; without even the implied warranty of 00012 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00013 GNU Affero General Public License for more details. 00014 00015 You should have received a copy of the GNU Affero General Public License 00016 along with this program. If not, see <http://www.gnu.org/licenses/>. 00017 00018 */ 00019 #include <libdotcode/dotcode_data.h> 00020 00021 const char* dotcode_band_names[] = { 00022 "Conduction S +1/2", 00023 "Conduction S -1/2", 00024 "Valence Light Hole +1/2", 00025 "Valence Heavy Hole +3/2", 00026 "Valence Heavy Hole -3/2", 00027 "Valence Light Hole -1/2", 00028 "Valence Split-Off -1/2", 00029 "Valence Split-Off +1/2", 00030 }; 00031 const char* dotcode_band_LaTeX_names[] = { 00032 "\\Gamma^c_{6 -\\frac{1}{2}}", 00033 "\\Gamma^c_{6 +\\frac{1}{2}}", 00034 "\\Gamma^c_{8 +\\frac{1}{2}}", 00035 "\\Gamma^c_{8 +\\frac{3}{2}}", 00036 "\\Gamma^c_{8 -\\frac{3}{2}}", 00037 "\\Gamma^c_{8 -\\frac{1}{2}}", 00038 "\\Gamma^c_{7 -\\frac{1}{2}}", 00039 "\\Gamma^c_{7 +\\frac{1}{2}}", 00040 }; 00041 const char* dotcode_band_short_names[] = { 00042 "CS-", 00043 "CS+", 00044 "VL+", 00045 "VH+", 00046 "VH-", 00047 "VL-", 00048 "VO-", 00049 "VO+" 00050 };