diff --git a/Device/Instrument/Instrument.cpp b/Device/Instrument/Instrument.cpp index 86336c4dbc9df6042a7d69754ccdd66729dd936a..00a7a819da828259274e78568e848a32117a52e0 100644 --- a/Device/Instrument/Instrument.cpp +++ b/Device/Instrument/Instrument.cpp @@ -113,8 +113,3 @@ const IDetector2D& Instrument::detector2D() const { throw std::runtime_error("Error: Detector is not twodimensional"); return *p; } - -void Instrument::setAnalyzerProperties(const kvector_t direction, double efficiency, - double total_transmission) { - m_detector->setAnalyzerProperties(direction, efficiency, total_transmission); -} diff --git a/Device/Instrument/Instrument.h b/Device/Instrument/Instrument.h index 139e48cb2e7d522204067ed57abfd2abf2af0605..a2d76b757091ff0e4c188f72556ee30a0b786e46 100644 --- a/Device/Instrument/Instrument.h +++ b/Device/Instrument/Instrument.h @@ -62,10 +62,6 @@ public: //! Sets the detector (axes can be overwritten later) void setDetector(const IDetector& detector); - //! Sets the polarization analyzer characteristics of the detector - void setAnalyzerProperties(const kvector_t direction, double efficiency, - double total_transmission); - //! init detector with beam settings void initDetector(); diff --git a/auto/Wrap/doxygenDevice.i b/auto/Wrap/doxygenDevice.i index 8eb0bba4b0afadfa719667b3c7fe477844c054e3..02df7fc4beb287be9f34154cfde07aee1a25c146 100644 --- a/auto/Wrap/doxygenDevice.i +++ b/auto/Wrap/doxygenDevice.i @@ -1510,11 +1510,6 @@ Sets the beam's polarization according to the given Bloch vector. Sets the detector (axes can be overwritten later) "; -%feature("docstring") Instrument::setAnalyzerProperties "void Instrument::setAnalyzerProperties(const kvector_t direction, double efficiency, double total_transmission) - -Sets the polarization analyzer characteristics of the detector. -"; - %feature("docstring") Instrument::initDetector "void Instrument::initDetector() init detector with beam settings diff --git a/auto/Wrap/libBornAgainDevice.py b/auto/Wrap/libBornAgainDevice.py index 42bae1f28076195d45bf3ba1ccbb6548e7d4c324..666683474fe5e0422d86eb77c4ab4c0130f833d8 100644 --- a/auto/Wrap/libBornAgainDevice.py +++ b/auto/Wrap/libBornAgainDevice.py @@ -3972,16 +3972,6 @@ class Instrument(libBornAgainParam.INode): """ return _libBornAgainDevice.Instrument_setDetector(self, detector) - def setAnalyzerProperties(self, direction, efficiency, total_transmission): - r""" - setAnalyzerProperties(Instrument self, kvector_t direction, double efficiency, double total_transmission) - void Instrument::setAnalyzerProperties(const kvector_t direction, double efficiency, double total_transmission) - - Sets the polarization analyzer characteristics of the detector. - - """ - return _libBornAgainDevice.Instrument_setAnalyzerProperties(self, direction, efficiency, total_transmission) - def initDetector(self): r""" initDetector(Instrument self) diff --git a/auto/Wrap/libBornAgainDevice_wrap.cpp b/auto/Wrap/libBornAgainDevice_wrap.cpp index af29803fbfb65d5a03f3d0937570c3c095d2d9ff..53b8ee2beccb5c527c4c856199e14a37003af0eb 100644 --- a/auto/Wrap/libBornAgainDevice_wrap.cpp +++ b/auto/Wrap/libBornAgainDevice_wrap.cpp @@ -35675,59 +35675,6 @@ fail: } -SWIGINTERN PyObject *_wrap_Instrument_setAnalyzerProperties(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - Instrument *arg1 = (Instrument *) 0 ; - kvector_t arg2 ; - double arg3 ; - double arg4 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 ; - int res2 = 0 ; - double val3 ; - int ecode3 = 0 ; - double val4 ; - int ecode4 = 0 ; - PyObject *swig_obj[4] ; - - if (!SWIG_Python_UnpackTuple(args, "Instrument_setAnalyzerProperties", 4, 4, swig_obj)) SWIG_fail; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_Instrument, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Instrument_setAnalyzerProperties" "', argument " "1"" of type '" "Instrument *""'"); - } - arg1 = reinterpret_cast< Instrument * >(argp1); - { - res2 = SWIG_ConvertPtr(swig_obj[1], &argp2, SWIGTYPE_p_BasicVector3DT_double_t, 0 | 0); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "Instrument_setAnalyzerProperties" "', argument " "2"" of type '" "kvector_t const""'"); - } - if (!argp2) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "Instrument_setAnalyzerProperties" "', argument " "2"" of type '" "kvector_t const""'"); - } else { - kvector_t * temp = reinterpret_cast< kvector_t * >(argp2); - arg2 = *temp; - if (SWIG_IsNewObj(res2)) delete temp; - } - } - ecode3 = SWIG_AsVal_double(swig_obj[2], &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "Instrument_setAnalyzerProperties" "', argument " "3"" of type '" "double""'"); - } - arg3 = static_cast< double >(val3); - ecode4 = SWIG_AsVal_double(swig_obj[3], &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "Instrument_setAnalyzerProperties" "', argument " "4"" of type '" "double""'"); - } - arg4 = static_cast< double >(val4); - (arg1)->setAnalyzerProperties(arg2,arg3,arg4); - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - SWIGINTERN PyObject *_wrap_Instrument_initDetector(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; Instrument *arg1 = (Instrument *) 0 ; @@ -47252,13 +47199,6 @@ static PyMethodDef SwigMethods[] = { "Sets the detector (axes can be overwritten later) \n" "\n" ""}, - { "Instrument_setAnalyzerProperties", _wrap_Instrument_setAnalyzerProperties, METH_VARARGS, "\n" - "Instrument_setAnalyzerProperties(Instrument self, kvector_t direction, double efficiency, double total_transmission)\n" - "void Instrument::setAnalyzerProperties(const kvector_t direction, double efficiency, double total_transmission)\n" - "\n" - "Sets the polarization analyzer characteristics of the detector. \n" - "\n" - ""}, { "Instrument_initDetector", _wrap_Instrument_initDetector, METH_O, "\n" "Instrument_initDetector(Instrument self)\n" "void Instrument::initDetector()\n"