Geant4-11
Functions
pyG4AtomicShells.cc File Reference
#include <boost/python.hpp>
#include "G4AtomicShells.hh"

Go to the source code of this file.

Functions

void export_G4AtomicShells ()
 

Function Documentation

◆ export_G4AtomicShells()

void export_G4AtomicShells ( )

Definition at line 39 of file pyG4AtomicShells.cc.

40{
41 class_<G4AtomicShells, boost::noncopyable>
42 ("G4AtomicShells", "Atomic subshell binding energy table", no_init)
43
44 .def("GetNumberOfShells", &G4AtomicShells::GetNumberOfShells)
45 .staticmethod("GetNumberOfShells")
46
47 .def("GetNumberOfElectrons", &G4AtomicShells::GetNumberOfElectrons)
48 .staticmethod("GetNumberOfElectrons")
49
50 .def("GetBindingEnergy", &G4AtomicShells::GetBindingEnergy)
51 .staticmethod("GetBindingEnergy")
52
53 .def("GetTotalBindingEnergy", &G4AtomicShells::GetTotalBindingEnergy)
54 ;
55}
static G4double GetTotalBindingEnergy(G4int Z)
static G4int GetNumberOfElectrons(G4int Z, G4int SubshellNb)
static G4double GetBindingEnergy(G4int Z, G4int SubshellNb)
static G4int GetNumberOfShells(G4int Z)

References G4AtomicShells::GetBindingEnergy(), G4AtomicShells::GetNumberOfElectrons(), G4AtomicShells::GetNumberOfShells(), and G4AtomicShells::GetTotalBindingEnergy().

Referenced by BOOST_PYTHON_MODULE().