LArSoft  v09_90_00
Liquid Argon Software toolkit - https://larsoft.org/
pyG4UIparameter.cc File Reference
#include <boost/python.hpp>
#include "G4UIparameter.hh"

Go to the source code of this file.

Functions

void export_G4UIparameter ()
 

Function Documentation

void export_G4UIparameter ( )

Definition at line 39 of file pyG4UIparameter.cc.

Referenced by BOOST_PYTHON_MODULE().

40 {
41  class_<G4UIparameter, G4UIparameter*>
42  ("G4UIparameter", "UI parameter")
43  // constructors
44  .def(init<char>())
45  .def(init<const char*, char, G4bool>())
46  // ---
47  .def("List", &G4UIparameter::List)
48  .def("GetDefaultValue", &G4UIparameter::GetDefaultValue)
49  .def("GetParameterType", &G4UIparameter::GetParameterType)
50  .def("GetParameterRange", &G4UIparameter::GetParameterRange)
51  .def("GetParameterName", &G4UIparameter::GetParameterName)
52  .def("GetParameterCandidates", &G4UIparameter::GetParameterCandidates)
53  .def("IsOmittable", &G4UIparameter::IsOmittable)
54  .def("GetCurrentAsDefault", &G4UIparameter::GetCurrentAsDefault)
55  .def("GetParameterGuidance", &G4UIparameter::GetParameterGuidance)
56  ;
57 }