1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152
|
#/*##########################################################################
#
# The fisx library for X-Ray Fluorescence
#
# Copyright (c) 2014-2023 European Synchrotron Radiation Facility
#
# This file is part of the fisx X-ray developed by V.A. Sole
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.
#
#############################################################################*/
#import numpy as np
#cimport numpy as np
cimport cython
from libcpp.string cimport string as std_string
from libcpp.vector cimport vector as std_vector
from libcpp.map cimport map as std_map
from libcpp.pair cimport pair as std_pair
from Material cimport *
cdef extern from "fisx_elements.h" namespace "fisx":
cdef cppclass Elements:
Elements(std_string) except +
Elements(std_string, short) except +
Elements(std_string, std_string, std_string) except +
double getAtomicMass(std_string) except +
int getAtomicNumber(std_string) except +
double getDensity(std_string) except +
std_string getLongName(std_string) except +
int getColumn(std_string) except +
int getRow(std_string) except +
std_vector[std_string] getElementNames()
std_vector[std_string] getMaterialNames()
std_map[std_string, double] getComposition(std_string) except +
void addMaterial(Material, int) except +
void setShellConstantsFile(std_string, std_string) except +
void setShellRadiativeTransitionsFile(std_string, std_string) except +
void setShellNonradiativeTransitionsFile(std_string, std_string) except +
std_string getShellConstantsFile(std_string) except +
std_string getShellRadiativeTransitionsFile(std_string) except +
std_string getShellNonradiativeTransitionsFile(std_string) except +
void setMassAttenuationCoefficients(std_string,\
std_vector[double], \
std_vector[double], \
std_vector[double], \
std_vector[double], \
std_vector[double]) except +
void setMassAttenuationCoefficientsFile(std_string) except +
std_map[std_string, double] getMassAttenuationCoefficients(std_string, double) except +
std_map[std_string, std_vector[double]] getMassAttenuationCoefficients(std_string) except +
std_map[std_string, std_vector[double]]\
getMassAttenuationCoefficients(std_string, std_vector[double]) except +
std_map[std_string, std_vector[double]] getMassAttenuationCoefficients(std_map[std_string, double],\
double, int) except +
std_map[std_string, std_vector[double]]\
getMassAttenuationCoefficients(std_map[std_string, double],\
std_vector[double], int) except +
std_vector[std_map[std_string, std_map[std_string, double]]] getExcitationFactors( \
std_string element,
std_vector[double] energy,
std_vector[double] weights) except +
std_vector[std_pair[std_string, double]] getPeakFamilies(std_string, double) except +
std_vector[std_pair[std_string, double]] getPeakFamilies(std_vector[std_string], double) except +
std_map[std_string, double] getBindingEnergies(std_string) except +
std_map[std_string, std_map [std_string, double]] getEscape(std_map[std_string, double],\
double, double, double, int, double, double) except +
void updateEscapeCache(std_map[std_string, double],\
std_vector[double], double, double, int, double, double) except +
std_map[std_string, double] getEmittedXRayLines(std_string, double) except +
std_map[std_string, double] getRadiativeTransitions(std_string, std_string) except +
std_map[std_string, double] getNonradiativeTransitions(std_string, std_string) except +
std_map[std_string, double] getShellConstants(std_string, std_string) except +
std_map[std_string, double] getInitialPhotoelectricVacancyDistribution(\
std_string,
double) except +
std_map[std_string, double] getCascadeModifiedVacancyDistribution( \
std_string,
std_map[std_string, double]) except +
std_map[std_string, std_map[std_string, double] ]\
getXRayLinesFromVacancyDistribution(std_string, std_map[std_string, double],
int, int) except +
void setElementCascadeCacheEnabled(std_string, int) except +
void emptyElementCascadeCache(std_string) except +
void fillCache(std_string, std_vector[double]) except +
void updateCache(std_string, std_vector[double]) except +
void setCacheEnabled(std_string, int) except +
void clearCache(std_string) except +
int isCacheEnabled(std_string) except +
int isEscapeCacheEnabled() except +
void setEscapeCacheEnabled(int) except+
int getCacheSize(std_string) except+
void removeMaterials()
|