#include <boost/python.hpp>
#include "G4Version.hh"
#include "pyG4indexing.hh"
#include "G4Isotope.hh"
 
Go to the source code of this file.
◆ export_G4Isotope()
      
        
          | void export_G4Isotope  | 
          ( | 
           | ) | 
           | 
        
      
 
Definition at line 59 of file pyG4Isotope.cc.
   61   class_<G4Isotope, G4Isotope*, boost::noncopyable>
    62     (
"G4Isotope", 
"isotope class", no_init)
    64     .def(init<const G4String&, G4int, G4int>())
    65     .def(init<const G4String&, G4int, G4int, G4double>())
    68          return_value_policy<reference_existing_object>())
    75          [return_value_policy<reference_existing_object>()])
    76     .staticmethod(
"GetIsotope")
    78          return_value_policy<reference_existing_object>())
    79     .staticmethod(
"GetIsotopeTable")
    81     .staticmethod(
"GetNumberOfIsotopes")
    91   class_<G4IsotopeTable> (
"G4IsotopeTable", 
"isotope table")
    93     .def(self_ns::str(
self))
 
void SetName(const G4String &name)
 
static const G4IsotopeTable * GetIsotopeTable()
 
static G4Isotope * GetIsotope(const G4String &name, G4bool warning=false)
 
void Print(G4Isotope &iso)
 
static size_t GetNumberOfIsotopes()
 
const G4String & GetName() const