diff --git a/doc/html/.buildinfo b/doc/html/.buildinfo
index 9911b6ad..7c5e4ed5 100644
--- a/doc/html/.buildinfo
+++ b/doc/html/.buildinfo
@@ -1,4 +1,4 @@
# Sphinx build info version 1
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
-config: 20df816aeaa22714f2d1b51daabf53ca
+config: b0f54e143f8f1d163af95476812112f7
tags: 645f666f9bcd5a90fca523b33c5a78b7
diff --git a/doc/html/_sources/setup-standard.txt b/doc/html/_sources/setup-standard.txt
index a8dfab99..9cdc117d 100644
--- a/doc/html/_sources/setup-standard.txt
+++ b/doc/html/_sources/setup-standard.txt
@@ -67,7 +67,8 @@ Additionally, *only* if ``musrfit`` should support reading of data files in the
.. index:: minixml
**minixml**
- A small ``XML`` library that can be used to read and write ``XML`` and ``XML``-like data files. *Required version ≥ 2.2* (see `minixml `_).
+ A small ``XML`` library that can be used to read and write ``XML`` and ``XML``-like data files. *Required version ≥ 2.2* (see `minixml `_).
+ Currently the ``MXML`` support in ``NeXus`` is broken and hence you will **not** need to install ``minixml`` for the time being.
.. index:: nexus
@@ -172,23 +173,20 @@ Installation of NeXus requirements (optional)
*Only* if ``musrfit`` should support reading/writing data files in the ``NeXus`` format the further required
software has to be set up. The required libraries and header files could either be available through the user's
-GNU/Linux distribution or if this is not the case, the packages can be installed from the source code. The necessary
-packages to build ``NeXus`` are ``MXML``, (``HDF4``), and ``HDF5``. This means, for a rpm-package based distro try something like:
+GNU/Linux distribution or if this is not the case, the packages can be installed from the source code. In principle
+NeXus should support ``MXML``, ``HDF4``, and ``HDF5``. At the time of this writing, the ``MXML`` support in the
+NeXus project is broken, and ``HDF4`` is outdated on most platforms, hence currently only the ``HDF5`` binding is
+used. Hence, the necessary package to build ``NeXus`` is ``HDF5``. This means, for a rpm-package based distro try something like:
.. code-block:: bash
- $ yum install mxml-devel hdf-devel hdf5-devel
+ $ yum install hdf5-devel
and on a deb-package based distro try something like:
.. code-block:: bash
- $ apt-get install libmxml-dev libhdf4-dev libhdf5-dev
-
-.. note::
-
- ``HDF4`` support within ``NeXus`` will be dropped by ``musrfit`` in the near future. If you *not* urgently need
- to read old ``ISIS NeXus`` files, you safely can drop it.
+ $ apt-get install libhdf5-dev
**Only NeXus Version ≥ 4.4 is support!**
@@ -208,10 +206,7 @@ A brief instruction how to get ``NeXus`` compiled from source (lines starting wi
$ # next we will build NeXus out-of-source
$ mkdir build
$ cd build
- $ # The next line only if HDF4 support is needed
- $ cmake -DENABLE_HDF5=1 -DENABLE_HDF4=1 -DENABLE_MXML=1 ../code
- $ # The next line if HDF4 support is NOT needed
- $ cmake -DENABLE_HDF5=1 -DENABLE_MXML=1 ../code
+ $ cmake -DENABLE_HDF5=1 -DENABLE_HDF4=0 -DENABLE_MXML=0 ../code
$ cmake --build ./ --clean-first
$ # make install needs either to be carried out as root or sudo depending on your linux flavour.
$ sudo make install
@@ -550,11 +545,7 @@ to be set up. Under ``Cygwin`` of all the required libraries only ``HDF5`` is av
``libhdf5-devel`` can be installed through the ``Cygwin`` setup. One should also make sure that ``bison``, ``flex``
and a package containing ``/usr/lib/librpc.a`` (*e.g.* ``sunrpc = 4.0-3``, but *not* ``sunrpc = 4.0-4``) are installed.
-All other libraries have to be built from the sources. The following lines will track the installation of ``JPEG 6b``,
-``MXML 2.9``, ``HDF 4.2.7-patch1``, and ``NeXus 4.3.2``. The version numbers and source-code locations might of
-course change with time but should be easily adjustable.
-
-*Only* ``NeXus`` version ≥ 4.4 is support!
+**Only NeXus Version ≥ 4.4 is support!**
.. code-block:: bash
@@ -567,18 +558,6 @@ course change with time but should be easily adjustable.
$ make
$ make install
$ cd ..
- $ curl www.msweet.org/files/project3/mxml-2.9.tar.gz -G | tar xz
- $ cd mxml-2.9
- $ ./configure --prefix=/usr/local --enable-static
- $ make
- $ make install
- $ cd ..
- $ curl http://www.hdfgroup.org/ftp/HDF/HDF_Current/src/hdf-4.2.7-patch1.tar.gz -G | tar xz
- $ cd hdf-4.2.7-patch1
- $ ./configure --prefix=/usr/local --enable-static --disable-fortran --with-jpeg=/usr/local
- $ make
- $ make install
- $ cd ..
$ # create a directory for the NeXus source code
$ mkdir nexus
$ cd nexus
@@ -587,7 +566,7 @@ course change with time but should be easily adjustable.
$ # next we will build NeXus out-of-source
$ mkdir build
$ cd build
- $ cmake -DENABLE_HDF5=1 -DENABLE_HDF4=1 -DENABLE_MXML=1 ../code
+ $ cmake -DENABLE_HDF5=1 -DENABLE_HDF4=0 -DENABLE_MXML=0 ../code
$ make
$ make install
@@ -876,21 +855,14 @@ Installation of NeXus requirements (optional)
.. code-block:: bash
- $ sudo port -v install hdf4 hdf5
+ $ sudo port -v install hdf5
-Unfortunately, the ``minixml`` and ``NeXus`` libraries have to be compiled and installed directly from the source code.
-Given the respective version numbers of 2.9 and 4.4.2 (which are subject to change with time.
-Only ``NeXus`` Version ≥ 4.4 is support!) this can be achieved for example by:
+**Only NeXus Version ≥ 4.4 is support!**
+
+To get things compiled do:
.. code-block:: bash
- $ # get and instal Mini-XML
- $ cd $HOME/Applications
- $ git clone https://github.com/michaelrsweet/mxml.git
- $ cd mxml
- $ ./configure --prefix=/usr/local
- $ make
- $ sudo make install
$ # get and install NeXus
$ cd $HOME/Applications
$ # get the source code from the master repository
@@ -899,7 +871,7 @@ Only ``NeXus`` Version ≥ 4.4 is support!) this can be achieved for example by:
$ cd nexus
$ mkdir build
$ cd build
- $ cmake -DENABLE_HDF5=1 -DENABLE_HDF4=1 -DENABLE_MXML=1 ../code
+ $ cmake -DENABLE_HDF5=1 -DENABLE_HDF4=0 -DENABLE_MXML=0 ../code
$ make
$ sudo make install
@@ -1101,27 +1073,20 @@ packages can be installed through Fink (check for the most recent versions):
libjpeg hdf hdf5-cpp11 hdf5-cpp11-shlibs
-Unfortunately, the ``minixml`` and ``NeXus`` libraries have to be compiled and installed directly from
-the source code. Given the respective version numbers of 2.9 and 4.3.2 (which are subject to change with time)
+Unfortunately, the ``NeXus`` libraries have to be compiled and installed directly from
+the source code. Given the respective version number 4.4 (which are subject to change with time)
this can be achieved for example by:
.. code-block:: bash
- $ # first build Mini-XML
- $ cd $HOME/Applications
- $ git clone https://github.com/michaelrsweet/mxml.git
- $ cd mxml
- $ ./configure --prefix=/usr/local
- $ make
- $ sudo make install
- $ # second build NeXus
+ $ # build NeXus
$ cd ..
$ git clone https://github.com/nexusformat/code.git nexus/code
$ cd nexus
$ # build NeXus out-of-source
$ mkdir build
$ cd build
- $ cmake ../code -DENABLE_HDF4=1 -DENABLE_HDF5=1 -DENABLE_MXML=1
+ $ cmake ../code -DENABLE_HDF5=1 -DENABLE_HDF4=0 -DENABLE_MXML=0
$ cmake --build ./ --clean-first -- -j8
$ sudo make install
diff --git a/doc/html/_sources/user-libs.txt b/doc/html/_sources/user-libs.txt
index 91388440..8e00db15 100644
--- a/doc/html/_sources/user-libs.txt
+++ b/doc/html/_sources/user-libs.txt
@@ -449,7 +449,7 @@ where :math:`\tau_{\mathrm{Li}}=1.21`\ s is the :math:`^8`\ Li lifetime.
Functions
^^^^^^^^^^^^
-The ``libLineProfile`` library currently contains the following functions:
+The ``libBNMR`` library currently contains the following functions:
@@ -464,10 +464,10 @@ The ``libLineProfile`` library currently contains the following functions:
The parameters are:
-#. pulse length :math:`t_0` (ms)
-#. relaxation rate :math:`\sigma` (ms\ :math:`^{-1}`\ )
+#. pulse length :math:`t_0` (s)
+#. relaxation rate :math:`\lambda` (s\ :math:`^{-1}`\ )
-This function implements :math:`f(t)=e^{-\sigma t}`.
+This function implements :math:`f(t)=e^{-\lambda t}`.
.. index:: SExpRlx
@@ -479,11 +479,11 @@ This function implements :math:`f(t)=e^{-\sigma t}`.
The parameters are:
-#. pulse length :math:`t_0` (ms)
-#. relaxation rate :math:`\sigma` (ms\ :math:`^{-1}`\ )
+#. pulse length :math:`t_0` (s)
+#. relaxation rate :math:`\lambda` (s\ :math:`^{-1}`\ )
#. stretching exponent :math:`\beta`
-This function implements :math:`f(t)=e^{-(\sigma t)^{\beta}}`.
+This function implements :math:`f(t)=e^{-(\lambda t)^{\beta}}`.
diff --git a/doc/html/_sources/user-manual.txt b/doc/html/_sources/user-manual.txt
index fb90f631..667e36cc 100644
--- a/doc/html/_sources/user-manual.txt
+++ b/doc/html/_sources/user-manual.txt
@@ -1064,7 +1064,7 @@ In order to describe the operations needed for fitting and plotting, quite some
.. _msr-alpha-beta:
**alpha, beta** (fit type 2, 3, 5)
- These parameters are used to correct the asymmetry for different detector efficiencies, solid angles and initial asymmetries. They are defined as :math:`\alpha = N_{0,b}/N_{0,f}` and :math:`\beta = A_{0,b}/A_{0,f}`. If the parameters are not specified in the :ref:`RUN block `, for each one the value of 1 is assumed (for fittype 5 alpha is estimated from the ration of sum of Bp+Bm and Fp+Fm). Example for alpha with fit parameter number 1:
+ These parameters are used to correct the asymmetry for different detector efficiencies, solid angles and initial asymmetries. They are defined as :math:`\alpha = N_{0,b}/N_{0,f}` and :math:`\beta = A_{0,b}/A_{0,f}`. If the parameters are not specified in the :ref:`RUN block `, for each one the value of 1 is assumed (for fittype 5, alpha is estimated from the ratio of :math:`\sum_i \left( N_{\mathrm{bp}}(i)+N_{\mathrm{bm}}(i) \right)` and :math:`\sum_i \left( N_{\mathrm{fp}}(i)+N_{\mathrm{fm}}(i) \right)`). Example for alpha with fit parameter number 1:
::
@@ -1868,12 +1868,12 @@ Since MuMinus is quite generic, the full functional depends has to be written in
beta-NMR Asymmetry Fit (fit type 5)
+++++++++++++++++++++++++++++++++++
-For a beta-NMR asymmetry fit (fit type 5) four histograms are needed, two for positive and two for negative helicities. These are given by the :ref:`forward ` and :ref:`backward ` keywords
+Four histograms are needed for a beta-NMR asymmetry fit (fit type 5), two for positive helecity and two for negative. These are given by the :ref:`forward ` and :ref:`backward ` keywords
in the :ref:`RUN block `. Additionally, the parameters :ref:`alpha ` and :ref:`beta ` which relate the detector
efficiencies, solid angles and initial asymmetries of the two detectors can be supplied. The constant background for the two histograms is either given by
:ref:`background-determined intervals ` or specified through :ref:`backgr.fix ` in the :ref:`RUN-block `.
-The experimental asymmetry :math:`a(k)` then is calculated from the four histograms:
+The experimental asymmetry :math:`a(k)` is then calculated from the four histograms:
.. math::
@@ -1884,12 +1884,12 @@ with
* :math:`N_{\mathrm{fp}}(k)`: counts in the **forward** histogram channel with positive helicity :math:`k`
* :math:`N_{\mathrm{bp}}(k)`: counts in the **backward** histogram channel with positive helicity :math:`k`
- * :math:` B_{\mathrm{fp}}`: constant background in the **forward** histogram with positive helicity (RUN block: :ref:`backgr.fix ` or :ref:`background `)
- * :math:` B_{\mathrm{bp}}`: constant background in the **backward** histogram with positive helicity (RUN block: :ref:`backgr.fix ` or :ref:`background `)
+ * :math:`B_{\mathrm{fp}}`: constant background in the **forward** histogram with positive helicity (RUN block: :ref:`backgr.fix ` or :ref:`background `)
+ * :math:`B_{\mathrm{bp}}`: constant background in the **backward** histogram with positive helicity (RUN block: :ref:`backgr.fix ` or :ref:`background `)
* :math:`N_{\mathrm{fm}}(k)`: counts in the **forward** histogram channel with negative helicity :math:`k`
* :math:`N_{\mathrm{bm}}(k)`: counts in the **backward** histogram channel with negative helicity :math:`k`
- * :math:` B_{\mathrm{fm}}`: constant background in the **forward** histogram with negative helicity (RUN block: :ref:`backgr.fix ` or :ref:`background `)
- * :math:` B_{\mathrm{bm}}`: constant background in the **backward** histogram with negative helicity (RUN block: :ref:`backgr.fix ` or :ref:`background `)
+ * :math:`B_{\mathrm{fm}}`: constant background in the **forward** histogram with negative helicity (RUN block: :ref:`backgr.fix ` or :ref:`background `)
+ * :math:`B_{\mathrm{bm}}`: constant background in the **backward** histogram with negative helicity (RUN block: :ref:`backgr.fix ` or :ref:`background `)
This theoretical asymmetry :math:`a(t)` is used to fit the function
@@ -1907,7 +1907,8 @@ For the graphical representation in plot type 5 the equation above is rearranged
.. math::
- A(t)=\frac{(\alpha -1)+(\alpha +1)a(t)}{(\alpha\beta +1)+(\alpha\beta -1)a(t)}-\frac{(\alpha +1)a(t)-(\alpha -1)}{(\alpha\beta +1)+(1-\alpha\beta)a(t)}=\frac{\alpha\left[N_{\mathrm{fp}}(t)-B_{\mathrm{fp}}\right]-\left[N_{\mathrm{bp}}(t)-B_{\mathrm{bp}}\right]}{\alpha\beta\left[N_{\mathrm{fp}}(t)-B_{\mathrm{fp}}\right]+\left[N_{\mathrm{bp}}(t)-B_{\mathrm{bp}}\right]} -\frac{\alpha\left[N_{\mathrm{fm}}(t)-B_{\mathrm{fm}}\right]-\left[N_{\mathrm{bm}}(t)-B_{\mathrm{bm}}\right]}{\alpha\beta\left[N_{\mathrm{fm}}(t)-B_{\mathrm{fm}}\right]+\left[N_{\mathrm{bm}}(t)-B_{\mathrm{bm}}\right]}
+ A(t) &= \frac{(\alpha -1)+(\alpha +1)a(t)}{(\alpha\beta+1)+(\alpha\beta -1)a(t)}-\frac{(\alpha +1)a(t)-(\alpha-1)}{(\alpha\beta +1)+(1-\alpha\beta)a(t)} \\
+ &= \frac{\alpha\left[N_{\mathrm{fp}}(t)-B_{\mathrm{fp}}\right]-\left[N_{\mathrm{bp}}(t)-B_{\mathrm{bp}}\right]}{\alpha\beta\left[N_{\mathrm{fp}}(t)-B_{\mathrm{fp}}\right]+\left[N_{\mathrm{bp}}(t)-B_{\mathrm{bp}}\right]} -\frac{\alpha\left[N_{\mathrm{fm}}(t)-B_{\mathrm{fm}}\right]-\left[N_{\mathrm{bm}}(t)-B_{\mathrm{bm}}\right]}{\alpha\beta\left[N_{\mathrm{fm}}(t)-B_{\mathrm{fm}}\right]+\left[N_{\mathrm{bm}}(t)-B_{\mathrm{bm}}\right]}
and plotted together with the function given in the THEORY block.
diff --git a/doc/html/acknowledgement.html b/doc/html/acknowledgement.html
index e9b88234..7e38091e 100644
--- a/doc/html/acknowledgement.html
+++ b/doc/html/acknowledgement.html
@@ -6,7 +6,7 @@
- Acknowledgements — musrfit 1.5.0 documentation
+ Acknowledgements — musrfit 1.5.1 documentation
@@ -14,7 +14,7 @@
-
+
@@ -41,7 +41,7 @@
diff --git a/doc/html/searchindex.js b/doc/html/searchindex.js
index d0687193..b24b43ab 100644
--- a/doc/html/searchindex.js
+++ b/doc/html/searchindex.js
@@ -1 +1 @@
-Search.setIndex({filenames:["any2many","bugtracking","cite","index","msr2data","mupp","musr-root","musredit","setup-dks","setup-standard","tutorial","user-libs","user-manual","acknowledgement"],titles:["any2many - a Universal \u03bcSR-file-format converter","Bugtracking","How to Cite musrfit?","Welcome to the musrfit documentation!","msr2data - A Program for Automatically Processing Multiple musrfit msr Files","mupp - \u03bcSR Parameter Plotter","MusrRoot - an Extensible Open File Format for \u03bcSR","musredit: the GUI Based Interface to musrfit","Setting up musrfit / DKS: High Speed Fitting with GPU’s","Setting up musrfit on Different Platforms","Tutorial for musrfit","Documentation of user libs (user functions)","User manual","Acknowledgements"],terms:{"\u03b1":[4,12,5,7,13,2,0,11,8,6,9,10],"\u03b2":[],"\u03b4":[4,12,5,7,13,2,0,11,8,6,9,10],"\u03b7":[4,12,5,7,13,2,0,11,8,6,9,10],"\u03b5":[4,12,5,7,13,2,0,11,8,6,9,10],"\u03b3":[4,12,5,7,13,2,0,11,8,6,9,10],"\u03b9":[4,12,5,7,13,2,0,11,8,6,9,10],"\u03ba":[4,12,5,7,13,2,0,11,8,6,9,10],"\u03c7":[4,12,5,7,13,2,0,11,8,6,9,10],"\u03bb":[4,12,5,7,13,2,0,11,8,6,9,10],"\u03bc":[4,12,5,7,13,3,0,11,6,8,2,9,10],"\u03bd":[4,12,5,7,13,2,0,11,8,6,9,10],"\u03bf":[4,12,5,7,13,2,0,11,8,6,9,10],"\u03c9":[4,12,5,7,13,2,0,11,8,6,9,10],"\u03c0":[4,12,5,7,13,2,0,11,8,6,9,10],"\u03c6":[4,12,5,7,13,2,0,11,8,6,9,10],"\u03c8":[4,12,5,7,13,2,0,11,8,6,9,10],"\u03c1":[4,12,5,7,13,2,0,11,8,6,9,10],"\u03c2":[4,12,5,7,13,2,0,11,8,6,9,10],"\u03c3":[4,12,5,7,13,2,0,11,8,6,9,10],"\u03c4":[4,12,5,7,13,2,0,11,8,6,9,10],"\u03b8":[4,12,5,7,13,2,0,11,8,6,9,10],"\u03c5":[4,12,5,7,13,2,0,11,8,6,9,10],"\u03be":[4,12,5,7,13,2,0,11,8,6,9,10],"\u03b6":[4,12,5,7,13,2,0,11,8,6,9,10],bastian:13,wojek:[4,2,13],veri:[12,7,13,6,9,10],much:[12,5,13,7,6],indebt:13,bmw:[],rigor:13,test:[13,9,7],musrfit:[],mani:[4,12,9,7,13,6,11],suggest:[4,9,13],contribut:[13,12,11,10],largest:13,part:[12,7,13,2,11,6,9,10],user:[],manual:[],which:[4,12,5,7,13,11,8,6,9,10],make:[12,7,13,8,6,9],access:[],broader:13,audienc:13,thank:13,uldi:13,locan:[2,8,13],work:[4,12,7,13,11,8,6,9],enabl:[],gpu:[],support:[],kind:[6,11,13],calm:13,extrem:13,compet:13,wai:[4,12,5,7,13,11,8,6,9,10],deal:[12,9,13,8,6,11,10],project:[9,13],well:[4,12,13,8,11,10],chao:13,physicist:13,think:13,admir:13,allow:[4,12,5,7,0,11,8,6,9],most:[4,12,0,11,8,6,9],from:[],other:[12,5,0,8,6,9,10],detail:[12,7,0,11,8,6,9,10],descript:[],see:[4,12,5,7,0,11,8,6,9,10],here:[4,12,5,7,0,8,6,9,10],report:1,bug:[1,7],request:[12,1,5,9,10],"new":[4,12,1,7,6,9,10],featur:[],improv:[1,11,9],pleas:[4,12,1,11,6,2,9,10],bitbucket:[12,1,9],repo:[1,9,8],prefer:[12,1,9,7],send:[12,1],mail:1,suter:[1,2,8],psi:[12,1,7,11,8,6,9,10],sinc:[4,12,6,8,2,9,10],quit:[12,7,2,6,9],some:[],effort:2,develop:[],mainten:[6,2],packag:[],you:[12,5,7,2,8,6,9],should:[4,12,5,7,11,6,8,2,9,10],least:[4,12,2,9,10],your:[4,12,7,8,2,9],"public":[12,2,11,9],have:[4,12,7,11,6,8,2,9,10],analyz:[],data:[],even:[4,12,6,2,9],better:[4,12,2],cours:[4,12,2,9],properli:[4,12,2,8],refer:[12,7,2,11,8,6,9,10],given:[4,12,5,7,11,6,8,2,9,10],beneath:[2,7],free:[12,9,7,2,6,11],platform:[],independ:[12,2,11],framework:[],analysi:[4,12,11,6,8,2,9,10],physic:[6,12,2,8],procedia:2,http:[12,7,2,11,8,6,9],doi:2,org:[2,9],phpro:2,high:[],speed:[],version:[12,5,7,2,11,8,6,9],util:[12,2,8,6,9],"case":[4,12,5,7,11,6,8,2,9,10],thi:[4,12,5,7,11,6,8,2,9,10],also:[4,12,5,7,11,6,8,2,9,10],add:[4,12,5,7,6,8,2,9,10],follow:[4,12,5,7,11,6,8,2,9,10],citat:2,adelmann:2,dynam:[2,8],kernel:[2,8],schedul:[2,8],comput:[2,9,8],commun:2,cpc:2,real:[12,8,2,9,10],time:[12,5,7,2,11,8,6,9,10],paramet:[],fit:[],imag:[12,2,10],reconstruct:2,graphic:[],process:[],unit:[6,12,2,10],conf:[2,9,8],proc:2,jpscp:2,tutori:[],singl:[],histogram:[],asymmteri:[],introduct:[],avail:[],execut:[],configur:[],basic:[],usag:[],msr:[],type:[],"function":[],technic:[],lib:[],meissner:[],profil:[],vortex:[],lattic:[],relat:[],nonloc:[],superconduct:[],screen:[],nmr:[],bnmr:[],set:[],differ:[],oper:[],system:[],softwar:[],requir:[],restrict:[],gnu:[],linux:[],window:[],mac:[],maco:[],tesla:[],k40c:[],nvidia:[],amd:[],card:[],radeon:[],"390x":[],opencl:[],musredit:[],gui:[],base:[],interfac:[],musrwiz:[],musrstep:[],mupp:[],plotter:[],script:[],summari:[],msr2data:[],program:[],automat:[],multipl:[],option:[],global:[],mode:[],known:[],limit:[],provid:[],musrroot:[],extens:[],open:[],concern:[],root:[],tmusrrunhead:[],concept:[],runinfo:[],detectorinfo:[],sampleenvironmentinfo:[],magneticfieldenvironmentinfo:[],beamlineinfo:[],exhaust:[],tree:[],includ:[],everyth:[],tmusrrunphysicalquant:[],possibl:[],represent:[],index:[4,3,12],search:[3,12,9],page:[7,3,8,6,9,10],origin:[4,12,11,7],written:[4,12,7,6,11,10],implement:[4,12,7,11,8,6,9],purpos:[4,12,9,10],input:[4,12,13,7,10],same:[4,12,5,11,8,6,9,10],summar:[4,10],result:[4,12,7,6,11,10],either:[4,12,5,7,11,9,10],triumf:[4,10,7,12],column:[4,12,7,6,10],ascii:[4,12,7,11,10],essenti:[4,12,6,7],collect:[4,12,5,7,11,6,9,10],old:[4,12,9],abridg:4,produc:[4,12,9,10],can:[4,12,5,7,11,8,6,9,10],view:[],instanc:[4,12,5,6,9],howev:[4,12,8,9,10],thei:[4,12,8,6,9,10],complet:[4,9,8,11,10],backward:[4,12,6],compat:[4,12,9,8],languag:4,name:[4,12,5,7,11,8,6,9,10],longer:4,than:[4,12,7,6,9,10],five:[4,10],six:4,charact:[4,12],order:[4,12,9,8,6,11],establish:4,need:[4,12,7,11,8,6,9,10],ensur:[4,12],correct:[4,12,7,9,10],length:[4,6,11],apart:[4,11,9],numer:[4,11,9],might:[4,12,5,7,11,6,9],principl:[4,11,9],four:[4,12],call:[4,12,5,7,11,6,9,10],suppli:[4,12,11,8],number:[4,12,5,7,11,8,6,9,10],firstrunno:4,lastrunno:4,interv:[4,12],specifi:[4,12,7,11,6,9,10],through:[4,12,9,6,11,10],first:[4,12,5,7,11,8,6,9,10],last:[],condit:[4,11],necessari:[4,12,7,6,9,10],runlist:[4,12],where:[4,12,5,7,11,8,6,9,10],combin:[4,12,7,6,10],run0:4,run1:[4,12],run2:[4,12],runn:4,rang:[],step:[],sequenc:[4,12,10],posit:[4,12,6,10],integ:[4,12,6],etc:[4,12,7,8,6,9],runlistfilenam:4,contain:[],extern:[4,12,9,6,11],pass:[4,12,7],below:[4,12,9,6,11,10],all:[4,12,5,7,8,6,9,10],mandatori:[4,12,6,11],right:[4,12,9,6,11,10],after:[4,12,7,8,6,9,10],mean:[4,12,5,7,11,8,6,9,10],becom:[4,9],clear:[4,12,6,7],give:[4,12,6,9,10],exampl:[4,12,5,7,11,6,9,10],"_tf_h13":4,out:[4,12,5,7,8,6,9,10],chang:[4,12,7,8,9],"8472_tf_h13":4,"8473_tf_h13":4,"8474_tf_h13":4,"8470_tf_h13":4,directori:[4,12,7,11,8,6,9,10],put:[4,12,9,7],var1:4,var2:4,var3:4,comment:[4,12,5,7,8,6,9],empti:[4,12,5,7],line:[4,12,5,7,11,6,9,10],determin:[],label:[4,12,5,7,6,11],present:[4,12,5,7,11,8,6,9,10],preced:4,mention:[4,12,9,6,11],togeth:[4,12,7,6,9,10],abov:[4,12,5,7,11,8,6,9,10],output:[4,12,5,7,11,10],onli:[4,12,5,7,11,8,6,9,10],newli:[4,10,7],creat:[],did:[4,9],exist:[4,12,9],befor:[4,12,7,11,8,6,9,10],invok:[4,12,5,7],were:[4,12,6,7],alreadi:[4,12,7,8,9],would:[4,12,5,7,11,8,6,9,10],append:[4,12,9],been:[4,12,7,11,6,9,10],header:[],block:[],forc:[4,12],suppress:4,nohead:[4,7],shall:[4,12,7,11,6,9,10],seen:[4,6,10],later:[4,12,9,10],like:[4,12,5,7,11,8,6,9],behavior:[4,12],ani:[4,12,7,8,6,9,10],simpl:[4,12,9,11,10],"default":[4,12,7,8,9],dat:[4,12,5,7,11,10],delet:[4,6],inform:[],both:[4,12,11,9],none:[4,10,7,12],write:[],sole:[4,12],assum:[4,12,7,11,8,6,9,10],nosummari:[4,7],attempt:4,read:[],addit:[4,12,7,11,8,6,9,10],temperatur:[4,12,5,6,10],appli:[4,12,9,6,11,10],magnet:[4,6,11,7],field:[],paramlist:4,param:[4,12,5,7],select:[4,12,5,7,8,6,9,10],"export":[4,12,8,9,10],startno:4,endno:4,space:[4,12,11,9],separ:[4,12,7,9,10],outputfilenam:[4,12],instead:[4,12,5,9,8,11],equal:[4,12,10],insensit:4,addition:[4,12,7,9,10],"final":[4,12,9,11,10],templat:[4,10,7,12],perform:[4,12,5,7,6,9,10],mlog:[4,12,7],subsequ:[4,12],chain:[4,7],exclam:4,mark:[4,12],without:[],keep:[4,12,6,7],mn2:[4,12],done:[4,12,5,11,8,6,9,10],ignor:[4,12,5],titl:[],illustr:[4,12],few:[4,12,7,6,9],explan:[4,12],oabc:4,"8400_tf_h13":4,"8460_tf_h13":4,abc:4,about:[4,12,6,9,10],"_zf":4,def:4,"8472_zf":[4,7],"8500_zf":4,"8502_zf":4,"8503_zf":4,"8504_zf":4,"8507_zf":4,oghi:4,ouput:4,ghi:4,take:[4,12,9,11,10],"8471_tf_h13":4,"8475_tf_h13":4,bestdata:4,"8476_tf_h13":4,"8477_tf_h13":4,"8478_tf_h13":4,"8479_tf_h13":4,describ:[4,12,7,11,8,6,9,10],anoth:[4,12,5,7,6],each:[4,12,5,11,6,9,10],defin:[4,12,5,7,11,6,9,10],common:[4,12,9],specif:[4,12,7,11,6,9,10],when:[4,12,7,11,6,9,10],obtain:[4,6,11],valid:[],conjunct:[4,12,11],invoc:[4,12],state:[],idea:[4,12,6,10],basi:4,identifi:[4,12],tag:[4,12,5,7,11,9,10],current:[4,12,5,7,11,8,6,9],"0xu":4,digit:[4,12],lead:[4,12,7,6,11],zero:[4,12,7,6,10],end:[4,12,5,7,6,9,10],alpha0123:4,alpha00123456:4,fitparamet:[],exemplari:[4,12],"8472_exampl":4,could:[4,12,5,7,11,8,9],therefor:[4,12,9,11,10],look:[4,12,5,7,11,8,6,9],valu:[4,12,7,8,6,9,10],pos_error:[4,12,10],boundari:[4,12,7,11,10],phase:[4,12,7,11,10],asy8472:4,rate8472:4,treat:[4,9],wherea:[4,12,7],normal:[4,12,9,10],within:[4,12,5,7,11,6,9,10],appear:[4,12],explicitli:[4,12,7],theori:[],those:4,met:4,"try":[4,12,9],substitut:[4,12,9,10],them:[4,12,7,6,11,10],map:[],accordingli:[4,5,9,10],"_exampl":4,global_exampl:4,alwai:[4,12,6,11],start:[4,12,5,7,8,6,9,10],asy8471:4,rate8471:4,asy8470:4,rate8470:4,show:[4,12,5,7,6,10],reorgan:4,begin:[4,12,6,9],copi:[4,12,9,7],found:[4,12,7,11,8,6,9,10],dure:[4,12,5,9,11],affect:4,occurr:[4,9],awar:[4,12,9],fact:[4,9],propag:4,model:[],usual:[4,11],store:[4,9,7,6,11],reach:[4,12],goal:[4,12],obei:[4,12],certain:[4,11],rule:[4,12,6,7],match:[4,12],accord:[4,12,7,9,10],achiev:[4,9,10],easili:[4,9,8,7],shown:[4,12,5,7,6,10],globalfit:4,relev:[4,12,7,6,10],pre:[4,7],afterward:[4,12,5,11,8,6,9],special:[4,12,6],replac:[4,12,9],review:4,activ:[4,11,9,7],choos:[4,12,9,7,11,10],keyword:[4,12],onerunfit_exampl:4,onerunfit:4,everi:[4,12,5,9],similar:[4,9],explain:[4,12,7,11,8,6,9,10],moment:[4,6,11,9],peopl:[4,6,9],cannot:[4,12,11],behav:[4,11],integr:[4,11],filenam:[4,12,6],rightmost:4,highest:[4,9],treatabl:4,statist:[],itself:[4,10],more:[4,12,5,7,8,6,9,10],creativ:4,care:[4,12,9],addrun:[4,12],statement:[4,12],simpli:[4,12,9],probabl:[4,6,9],what:[4,12,9,8,11,10],two:[4,12,7,11,6,9,10],success:[4,12,6,10],encount:4,actual:[4,12,11,9],measur:[4,12,5,7,6,11,10],introduc:[4,12,6,10],reason:[4,12,9,10],shape:[4,12,11],design:[4,9],especi:[4,12,9,8,6,11],manipul:[4,12,7],front:[4,10,6,7],offer:[4,12,10],almost:[4,12,7],self:[4,7],explanatori:[4,7],depict:[4,12],under:[4,12,5,7,8,6,9],stai:4,enter:[4,9,8,7],otherwis:[4,12,9,8],serv:[4,12,10],second:[4,12,9,7,11,10],noth:[4,12,6,7],correspond:[4,12,5,7,6,9,10],littl:[12,5,7],helper:[6,5,9,7],quickli:[5,8],plot:[],handl:[12,5,9,7,6,11],heavili:[5,11],inspir:5,via:[],command:[],directli:[12,5,7,6,9],typic:[12,5,7,8,9],load:[5,11],dialog:[5,7],tri:[12,5,9],fly:[5,10],drag:[5,10],over:[12,5,9],axi:[12,5,6,11,10],wish:[12,5],click:[12,5,7],analog:5,remov:[12,5],often:[12,5,9,7],compar:[9,12,5,8],trend:5,hold:[12,6,5],energi:[6,5,11],scan:[12,5],now:[12,5,8,9,10],interest:[12,5,9],ditto:5,less:[12,5,9],error:[12,5,7,11,8,6,9,10],prone:[5,8,7],quicker:[12,5],button:[10,5,7,12],mupp_plot:5,applic:[12,5,7,11,8,9],refresh:5,reload:[5,7],beamtim:5,grow:5,task:5,mous:[12,5],gambl:5,futur:[5,9,7],plane:5,help:[12,5,7,8,9],cmd:[5,9],manner:[5,9],updat:[12,5,8,9,10],web:[12,5,7,13,6,9],interact:[12,5,11,10],figur:[12,6,5],loadpath:5,dir:5,path:[12,5,7,8,6,9,10],bash:[5,9],variabl:[],home:[12,5,7,11,8,6,9],accept:[12,5,7],coll:5,selectal:5,carri:[12,5,9],ybco:5,"40nm":5,t5k:5,fc150mt:5,escan:5,addx:5,addi:5,savepath:5,save:[12,5,7,11,6,9,10],place:[12,5,9,10],macro:5,fln:[12,5],txt:[5,9],t30k:5,t60k:5,t120k:5,fieldvsenergi:5,pdf:[12,5],"true":[12,6,5,11],best:[12,5,9,6,11],ever:[6,5],thie:5,labl:5,until:[12,6,10],bulk:[],instrument:[12,6,7],bin:[12,7,6,9,10],fix:[10,6,7,12],binari:[6,9],rather:[12,6,9,7],stringent:6,lem:[12,6,11],cern:[12,6,9],tightli:6,tailor:6,situat:[12,6,9],unsatisfactorili:6,henc:[12,8,6,9,10],decid:[12,6,9],move:[12,6,10],forward:[12,6,8,10],acquisit:6,mida:6,respons:[12,6,8],build:[],decai:[12,6,10],easi:[6,7],object:[],th1f:6,orient:[6,11],mine:6,frame:[12,6,8],tfile:6,eas:[12,6,9],understand:[12,6],upcom:6,definit:[12,6,10],thing:[12,7,8,6,9],check:[],guid:[12,6,8],organ:[12,6,7],similarli:[12,6],browser:6,inspect:6,tbrowser:6,deriv:[12,6],tobject:6,small:[12,9,7,8,6,11],subset:[12,6],tfolder:6,top:6,level:[12,6],tobjarrai:6,tobjstr:6,content:[12,6,9],form:[12,9,8,6,11,10],box:[6,8,7],entri:[12,6],sketch:[12,6],histo:[12,7,6,9,10],decayanamodul:6,hdecay001:6,hdecay002:6,scanamodul:6,hsampletemperatur:6,hsamplemagneticfield:6,detector001:6,detector002:6,hdecayxxx:6,xxx:6,"int":6,"03d":6,notat:[12,6],"class":[12,6,11],folder:[6,9],next:[12,9,7,8,6,11],section:[12,6,9],slow:6,control:[12,6,8],sampl:[6,11,8,10],versu:6,again:[12,7,8,6,9],meta:6,minim:[12,9,6,11,10],bracket:6,item:[12,6],detector:[12,7,6,11,10],environ:[],beamlin:[10,6,7,12],elabor:[6,8],word:6,sub:[12,6,9,10],intern:[12,6,7],tstring:6,git:[12,6,9,8],url:6,xsd:6,wrote:6,nemu_analyz:6,deltat_tdc_gps_4295:6,int_t:[12,6],iso:6,date:[12,6,10],stop:6,durat:6,sec:[12,6],laboratori:6,muon:[],beam:[12,6],momentum:[6,11,10],mev:6,speci:6,neg:[],sourc:[],target:6,low:[12,6,11],setup:[12,6,9,8],cf1:6,wxy:6,resolut:[6,11],redgreen:[12,6],offset:[12,6],tintvector:6,except:[12,6,9,7],shortli:[12,6],discuss:[12,6,8,7],experi:[12,6],stimuli:6,electr:6,off:[12,6],doubl:[12,6],distinguish:6,easier:[6,9],let:6,sai:6,red:[12,8,6,9,10],green:[12,6,10],browsabl:6,string:[12,6,9,7],tobjstringv:6,quantiti:6,repres:[12,6,10],properti:[12,6],estim:[12,6,11,7],demand:[12,6],depend:[12,7,11,8,6,9,10],musrrootv:6,mock:6,print:[12,6,7],notic:[12,6,7],find:[12,7,8,6,9],encod:[12,9,7,6,11],price:6,pai:6,shade:6,"import":[12,6],approach:[12,6,9],standard:[12,6,9,8],"abstract":[12,6],text:[10,6,7,12],though:[6,9,7],clean:[6,9,8],lot:[12,6],"2nd":6,slightli:[12,6,8,7],advantag:[12,6,9,7],maintain:6,expand:6,classifi:6,group:[12,6,9,7],previou:[12,6],"float":6,point:[12,9,7,6,11,10],double_t:[12,6],tstringvector:6,tdoublevector:6,themselv:[6,11],vector:[12,6,11],code:[12,9,8,6,11,10],snippet:[12,6],reader:6,routin:[12,6,11,9],convers:[12,6],write_musrroot_runhead:6,full:[12,6,9,10],concentr:6,just:[12,9,8,6,11],prop:6,further:[],down:[10,6,7,12],deltat_tdc_gps_2871:6,come:[6,9,7],overload:6,pathnam:6,method:[12,6],tdc:[12,6],cf3:6,mrh_undefin:6,strang:6,fed:[12,6],whole:6,someth:[12,6,9,8],recreat:[6,7],iszombi:6,"return":[12,6],info:[],fillfold:6,close:[12,6,9,7],read_musrroot_runhead:6,getobject:6,cerr:[12,6],endl:[12,6],couldn:[12,6],get:[12,7,8,6,9],closefil:6,extractal:6,decod:6,fill:[12,6,10],getter:6,bool_t:[12,6],ival:6,cout:6,els:[12,6,9,7],getvalu:6,geterror:6,getunit:6,getdemand:6,getdescript:6,mechan:[12,6],inde:6,minimum:6,scheme:6,musrrootvalid:6,recurs:6,pars:6,temporari:6,xml:[],ampl:[12,6],parser:[6,9],hand:[12,6,9],decent:6,book:6,libxml2:[6,9],becaus:[6,7],suppos:[12,6,9],against:6,schema:6,lmu:[6,7],semant:6,preform:6,cross:[12,6,9],facil:[12,6,7],musrrootlem:6,poitiv:6,wew:6,hdecay023:6,detector023:6,potenti:[],discontinu:6,"break":6,element:6,left:[6,11,7],npp:[12,7,6,9,10],spectromet:[12,6,8,10],good:[12,6,9,7],enough:[12,6,9],cryo:6,cryostat:6,oven:6,konti:6,pim3:[12,6,10],hypothet:6,light:6,per:[12,6,7],bottom:6,split:[12,6,9],mind:6,symbol:[6,9],hdecay003:6,hdecay004:6,hdecay007:6,hdecay008:6,hdecay011:6,hdecay012:6,hdecay013:6,hdecay014:6,hdecay017:6,hdecay018:6,hdecay021:6,hdecay022:6,hdecay024:6,hdecay027:6,hdecay028:6,hdecay031:6,hdecay032:6,hdecay033:6,hdecay034:6,hdecay037:6,hdecay038:6,continu:6,"switch":[12,7,8,6,9],jump:[12,6],cpp:[12,6],"00z":6,nemu:[12,6,9],lem12_his_0234:6,said:6,detector038:6,insert:6,x123:6,perp:6,spin:[12,6,11,10],mue4:[12,6,7],scalerinfo:6,runsummari:6,wed:6,oct:6,lco:6,wtf:6,kev:[6,11],ledb:6,buc:6,edit:[10,6,9,7],euc:6,event:[6,10],event_0:6,mcp1:6,event_1:6,mcp2:6,event_2:6,lemusr:6,problem:[],deviat:[12,6],hereaft:6,snip:6,somewher:[6,9,7],token:[12,6],val:[12,6],err:6,cf4:6,cf5:6,editor:[10,9,7],suit:[10,11,7,12],intend:[12,9,7],eventu:[10,7],drop:[9,7],outdat:[12,9,7],earli:[12,7],anymor:[9,7],still:[12,11,9,7],urg:7,strongli:[12,9,7],recommend:[11,9,7],shell:[12,9,7],tab:[12,7],startup:[],displai:[12,11,9,7],locat:[12,9,7,11,10],proof:7,exec_path:7,path_to_exec:7,musrview:[],musrt0:[],insid:[12,11,9,7],default_save_path:7,save_path:7,msr_default_file_path:7,msr_def_path:7,timeout:[12,7],canva:[10,7,12],keep_minuit2_output:7,flag:[12,7],minuit2:[12,9,7],kept:[12,7],dump_ascii:7,dump:[12,7],dump_root:7,title_from_data_fil:7,chisq_pre_run_block:7,chisq:[10,7,12],estimate_n0:7,procedur:[12,9,7,11,10],musrview_show_fouri:7,fourier:[],transform:[12,9,7,11,10],domain:[10,7,12],musrview_show_avg:7,averag:[12,11,7],power:[12,7,8,9,10],spectra:[12,7],enable_musrt0:7,font_set:7,font:[9,7],font_nam:7,font_siz:7,size:[12,7],msr_file_default:7,institut:[10,7,12],inst:7,ral:7,jparc:7,file_format:[12,7],nexu:[],musr:[12,7],ppc:[10,7,12],mdu:[10,7,12],wkm:[10,7,12],mud:[10,7,12],lifetime_correct:7,lifetimecorrect:[12,7],msr2data_default:7,tick:7,chain_fit:7,write_data_head:7,ignore_data_header_info:7,write_column_data:7,create_msr_file_onli:7,fit_onli:7,global_plu:7,recreate_data_fil:7,open_file_after_fit:7,experienc:[9,7],who:7,help_sect:7,variou:[12,9,7],messag:[12,7],musr_web_x:7,link:[12,9,7],main:[10,9,7],musrft:[],func_pixmap_path:7,pix_path:7,latex:7,pixmap:7,visual:[10,7],theory_funct:7,syntax:[12,7],func:7,menu:[10,9,7,12],pictur:7,utf:[12,11,9,7],xmln:[12,7],html:7,usr:[9,7],local:[11,9,8,7],share:[12,9,8,7],doc:[10,9,7,12],chisq_per_run_block:7,recent_fil:7,path_file_nam:7,musr_web_main:7,musr_web_titl:7,thetitl:7,musr_web_paramet:7,thefitparameterblock:7,musr_web_theori:7,thetheoryblock:7,musr_web_funct:7,thefunctionsblock:7,musr_web_run:7,therunblock:7,musr_web_command:7,thecommandsblock:7,musr_web_fouri:7,thefourierblock:7,musr_web_plot:7,theplotblock:7,musr_web_statist:7,thestatisticblock:7,musr_web_msr2data:7,musr_web_musrft:7,a_2:7,"3_musrft":7,monospac:7,latex_imag:7,asymmetri:[],png:[12,7],statgsskt:[12,7],rate:[10,11,7,12],"static":[11,9,7],gauss:[10,11,7,12],respect:[12,9,7,11,10],bar:[12,7],keyboard:[10,7],shortcut:[],scratch:7,too:[9,7],priori:7,knowledg:7,calcul:[10,11,7,12],log:[12,11,7],max:[12,7],likelihood:[12,11,7],kei:[],alt:7,equival:[12,9,7],mai:[12,9,7],chosen:[12,9,7],swap:[12,7],vice:[12,7],versa:[12,7],adjust:[10,9,7,12],initi:[12,9,7,11,10],fitter:7,own:[12,7],docu:[12,8,7],raw:[12,7],dump_head:[],stage:[12,7],wand:7,coupl:[12,8,7],dialogu:7,briefli:7,explicit:[12,7],year:[12,8,7],pull:[9,7],choosen:7,rrf:[],minu:7,transvers:[10,7,12],longitudin:7,choic:[12,9,7],question:[12,7],ask:[9,7],correctli:[10,9,7,12],proper:[12,8,7],prompt:[12,9,8,7],peak:[12,11,7],pop:7,disadvantag:7,freeli:7,custom:[12,7],cost:7,yourself:7,stand:[8,7],whatev:[8,7],press:[10,7,12],syntact:7,appropri:[8,7],previous:7,handi:7,furthermor:[12,9,7],pack:[10,9,7,12],minuit:[12,11,7],reset:[12,7],sometim:[12,7],went:[9,7],wrong:7,leav:7,far:[12,7],iter:[12,11,7],individu:[12,7],tediou:[11,7],popup:7,asym:7,uncheck:7,unselect:7,modifi:[11,7],degre:[10,7,12],cancel:7,anyth:[12,7],scale:[12,7],factor:[12,7],absolut:[10,9,7,12],explor:[9,8],hal:[12,8],memo:[12,8],rotat:[12,8,10],tremend:[9,8],muonium:[12,8],appl:[9,8],cpu:[12,9,8],straight:8,multi:[12,9,8],thread:[12,9,8],doesn:8,openmp:[12,9,8],shop:8,bui:8,gamer:8,sure:[12,9,8],server:[9,8],suffici:[11,8],strong:[12,8,10],yet:[12,11,8,10],fall:[12,8],back:[12,8],conceptu:8,latest:[9,8],hardwar:8,crunch:8,readi:[12,9,8],acceler:[12,8],termin:[12,9,8,10],lspci:8,grep:[9,8],corpor:8,gk110bgl:8,rev:[12,11,8],recogn:8,download:[9,8],center:[11,8],hat:[9,8],enterpris:8,rhel:[9,8],rpm:[9,8],diag:8,rhel7:8,x86_64:8,conflict:8,nouveau:8,reboot:8,machin:[11,9,8],omit:[12,9,8],thin:[11,8],host:8,incorpor:8,paper:8,wiki:8,brief:[9,8],clone:[9,8],got:8,consist:[12,11,8],gitlab:[12,9,8],uldis_l:8,mkdir:[9,8],denable_musr:8,dcmake_install_prefix:[9,8],exec:8,non:[],librari:[11,9,8,12],"super":8,sbin:[9,8],ldconfig:[9,8],ld_library_path:[9,8],launchctl:[9,8],setenv:[9,8],checkout:[9,8],branch:[9,8],dks6:8,soon:9,want:[12,9],tell:12,aslib:9,bmwlib:9,prefix:9,rootsi:[9,8],lookup:8,superus:[9,8],ddk:8,disabl:[12,9,8],daslib:[9,8],dbmwlib:[9,8],dnexu:[9,8],vga:8,advanc:8,micro:[12,8],devic:8,inc:8,ati:8,hawaii:8,grenada:8,"290x":8,amdgpu:8,pro:[9,8],unpack:[9,8],tar:[12,9,8],jxvf:8,blabla:8,usermod:8,video:8,technolog:8,materi:8,leverag:8,amp:8,xvjf:8,sdkinstal:8,linux64:8,bz2:[12,8],opt:[12,9,8],amdappsdk:8,note:[11,9,8,12],instruct:[12,9,8],compil:[12,9,8],xcode:[9,8],deliv:8,easiest:[9,8],involv:[11,8],demonstr:9,"while":9,brave:9,virtual:9,encourag:9,gcc:[12,9],tool:[12,9],autoconf:9,libtool:9,toolchain:[],drope:[],releas:[12,9],plan:[],pkg:9,config:9,boost:9,spirit:9,scientif:[12,11,9],effici:[12,11,9],mathemat:[12,9],fftw:9,fast:9,discret:[9,10],toolkit:9,gnome:9,hdf4:[12,9],manag:9,hdf5:[12,9],minixml:9,neutron:9,rai:9,scienc:9,focus:9,seriou:9,distribut:[],fedora:9,debian:9,ubuntu:9,mint:9,opensus:9,nativ:9,microsoft:9,distributor:9,taken:[12,9],dev:9,devel:9,trick:9,never:9,qt4:9,yum:9,gsl:9,qtwebkit:9,qt5:9,epel:9,qtbase:9,qtsvg:9,dpkg:9,apt:9,libboost:9,libgsl:9,libfftw3:9,libqt4:9,libqtwebkit:9,qtbase5:9,libqt5svg5:9,libqt5webkit5:9,everyon:9,know:9,himself:9,doe:[12,9],websit:9,engin:9,mxml:9,hdf:9,libmxml1:[],libmxml:9,libhdf4:9,libhdf5:9,urgent:[12,9],isi:[12,9],safe:[12,9],master:9,repositori:9,github:9,com:9,nexusformat:9,denable_hdf5:9,denable_hdf4:9,denable_mxml:9,sudo:9,flavour:9,legaci:9,incompat:9,guess:[12,9],warn:[12,9],upgrad:9,recompil:9,redhat:9,libx11:9,libxft:9,libxpm:9,libxext:9,systemat:9,term:9,offici:9,root_build:9,dgminim:9,dasimag:9,dmathmor:9,dminuit2:9,dxml:9,root_exec:9,multicor:9,miss:[12,9],told:9,luke_skywalk:9,echo:9,bashrc:9,bash_profil:9,restart:9,onc:[12,11,9,10],proceed:9,recent:[12,9],muonspin:9,root5:[],root6:9,newer:9,dec:9,whether:12,uninstal:[],xarg:9,install_manifest:9,altern:[12,9],autogen:[],prepar:9,successfulli:[12,9],makefil:12,besid:[],fftw3:[11,9],boostinc:[],qt3:9,qt47:[],lib64:[],omp:12,parallel:[12,11,10],detect:10,permiss:[],dbnmrlib:9,bnmrlib:9,dqt_based_tool:9,dqt_version:9,auto:9,dtry_openmp:9,core:9,finish:[9,10],musrfitpath:9,musrfit_startup:[],built:[12,9],everth:[],src:9,musredit_qt5:9,qmake:9,fine:9,skip:9,higher:9,uic:9,quick:[12,9],hasn:9,adventur:9,advic:9,wonder:9,occur:9,great:9,gain:9,nice:[11,9],unix:9,revis:[12,9],fulfil:9,abl:9,a2p:9,passwd:9,binutil:9,bison:9,bzip2:9,colorgcc:9,coreutil:9,curl:9,cygutil:9,editright:9,findutil:9,flex:9,adob:9,dpi100:9,dpi75:9,alia:9,bitstream:9,ibm:9,type1:9,sun:9,misc:9,xfree86:9,fontconfig:9,freeglut:9,gawk:9,gcc4:9,fortran:9,gccmakedep:9,gettext:9,ghostscript:9,std:[12,9],giflib:9,gmp:9,groff:9,gzip:9,inputproto:9,jasper:9,jpeg:9,lapack:9,libbz2_1:9,libcharset1:9,libcurl4:9,libfftw3_3:9,libgcc1:9,libgd:9,libgif:9,libgl:9,libgl1:9,libglu:9,libglu1:9,libglut:9,libglut3:9,libgmp:9,libgmp3:9,libgomp1:9,libic:9,libice6:9,libjpeg:9,libjpeg62:9,liblapack:9,libmpfr:9,libmpfr1:9,libncurs:9,libncurses9:9,libosmesa:9,libosmesa7:9,libpng:9,libpng14:9,libreadline6:9,libsm:9,libsm6:9,libssh2_1:9,libstdc:9,libtiff:9,libtiff5:9,libx11_6:9,libxau:9,libxau6:9,libxaw7:9,libxcb:9,xlib:9,libxcursor:9,libxcursor1:9,libxdmcp:9,libxdmcp6:9,libxext6:9,libxfix:9,libxfixes3:9,libxfont:9,libxfont1:9,libxft2:9,libxi:9,libxi6:9,libxkbfile1:9,libxmu:9,libxmu6:9,libxpm4:9,libxrend:9,libxrender1:9,libxt:9,libxt6:9,login:9,makedepend:9,man:9,mpfr:9,nano:9,opengl:9,openssh:9,openssl:9,pdftk:9,perl:9,ping:9,psutil:9,python:9,readlin:9,rebas:9,rgb:[12,9],rsync:9,sed:9,subvers:9,tcltk:9,terminfo:9,unzip:9,vim:9,w32api:9,icon:[12,9,10],xauth:9,xextproto:9,xfontsel:9,xinit:9,xkbcomp:9,xkeyboard:9,xkill:9,xlogo:9,xlsfont:9,xorg:9,xproto:9,xrdb:9,xrefresh:9,xset:9,xterm:9,zip:9,zlib:9,zlib0:9,libqt3support4:9,libqtassistantclient4:9,libqtcore4:9,libqtdbus4:9,libqtdesigner4:9,libqtgui4:9,libqthelp4:9,libqtnetwork4:9,libqtopengl4:9,libqtscript4:9,libqtscripttools4:9,libqtsql4:9,libqtsvg4:9,libqttest4:9,libqtwebkit4:9,libqtxml4:9,libqtxmlpatterns4:9,posix:9,convent:[11,9],hard:9,drive:9,network:9,cygdriv:9,stick:9,had:9,x_yy_z:9,"1_33_1":9,librpc:9,sunrpc:9,track:9,patch1:9,www:[11,9],hdfgroup:9,ftp:9,jpegsrc:9,v6b:9,msweet:9,project3:9,hdf_current:9,precompil:9,xzf:9,root_v5:9,win32gcc:9,due:[12,11,9],visit:9,gminim:9,asimag:9,mathmor:9,accomplish:9,usernam:9,qtdir:9,i686:9,reopen:9,qt56:[],readili:9,startxwinrc:9,status_access_viol:9,ash:9,rebaseal:9,resolv:9,administr:9,privileg:9,extent:9,emploi:9,emphas:9,rout:9,dvd:9,xcodebuild:9,licens:[12,9],x11:9,leopard:9,snow:9,xquartz:9,macosforg:[],trac:[],newest:9,port:9,selfupd:9,remark:[12,9],synchron:9,frequent:9,happen:9,servic:9,firewal:9,svn:9,trunk:9,dport:9,sync:9,pkgconfig:9,qtwebengin:9,past:9,unfortun:9,subject:9,mini:9,michaelrsweet:9,lazi:9,dmg:9,sierra:9,writ:9,root_v6:9,macosx64:9,clang91:9,owner:9,life:[12,9,10],chown:9,chgrp:9,staff:9,exactli:[12,9],wisdom:[11,9],harder:9,adopt:[12,9],parenthes:[12,9],macosx:9,plist:9,doctyp:9,dtd:9,propertylist:9,dict:9,qt3mac:9,stabl:9,crypto:9,unstabl:9,finkcommand:9,boost1:9,nopython:9,shlib:9,libtool2:9,qtwebenginecor:9,qtwebenginewidget:9,bit:9,earlier:9,"1_63_0":9,cpp11:9,circumst:9,finder:9,workaround:9,dyld_library_path:9,mgui:9,differenti:[12,10],diamagnet:[11,10],approxim:10,geometri:10,positron:[11,10],counter:[12,10],precess:10,"3110_tutori":10,conveni:10,underli:10,divid:[11,10],xyz:10,normup:10,bgup:10,phaseup:10,normdown:10,bgdown:10,phasedown:10,normright:10,bgright:10,phaseright:10,asymsig1:10,ratesig1:10,fieldsig1:10,asymsig2:10,ratesig2:10,fieldsig2:10,uncertainti:[11,10],asymmetr:10,lower:[12,10],upper:[12,10],constant:[13,12,10],background:[12,10],uncorrel:10,three:[12,11,10],remain:10,signal:[12,11,10],holder:10,amplitud:10,depolar:[12,11,10],simplexpo:[12,10],tfieldco:[12,10],map1:[12,10],fun1:[12,10],frequenc:[12,11,10],simplegss:[12,10],fun2:[12,10],predefin:[12,10],multipli:[12,10],sign:10,fun:10,interrel:10,gamma_mu:[12,10],par12:[12,10],par15:10,altogeth:[12,10],deltat_pta_gps_3110:10,fittyp:[12,10],norm:[12,10],backgr:[12,10],map2:[12,10],map3:10,undefin:10,implant:[11,10],exce:10,mino:[12,11,10],mhz:[12,11,10],fourier_pow:[12,10],apod:[12,10],weak:[12,10],medium:[12,10],real_and_imag:[12,10],par3:[12,10],imaginari:[12,10],drawn:[12,10],abscissa:[12,10],ordin:[12,10],use_fit_rang:[12,10],third:[12,11,10],ndf:10,freedom:[12,10],converg:[12,11,10],blue:[12,10],maximum:[12,10],count:[12,10],zoom:[12,10],graph:[12,10],around:[12,10],cursor:[12,10],suitabl:10,repeat:[12,10],proce:[9,10],comma:[12,10],between:[12,11,10],"short":[12,10],conclud:10,attent:[12,11,10],"3111_tutori":10,"3114_tutori":10,"_tutori":10,snapshot:10,dark:10,theme:10,facilit:11,gyromagnet:11,ratio:11,smu:11,outlin:11,literatur:11,reli:11,repeatedli:11,sizabl:11,worth:11,maxim:[12,11],trial:11,deserv:11,effect:[12,11],shift:[12,11],advis:11,prove:11,appreci:11,induct:11,vari:[12,11],dimens:11,incid:11,simul:11,trim:11,arrai:11,total:[12,11],thick:11,solv:11,equat:[12,11],layer:11,account:[12,11],superfluid:11,macroscop:11,dover:11,adjac:11,penetr:11,depth:11,constitu:11,half:11,film:11,userfcn:[12,11],tlondon1dh:11,deg:11,dead:11,tlondon1d1l:11,fraction:[12,11],substrat:11,bilay:11,heterostructur:11,tlondon1d2l:11,trilay:11,tlondon1d3l:11,investig:11,flux:11,probe:11,randomli:11,spatial:11,seri:11,reciproc:11,coeffici:[12,11],coher:[12,11],gaussian:11,cutoff:11,brandt:11,temp:11,phy:[12,11],riseman:[12,11],analyt:11,ginzburg:11,landau:11,yaouanc:[12,11],dalma:[12,11],réotier:[12,11],bessel:[12,11],region:[12,11],triangular:11,grid:11,inter:11,distanc:11,tbulktrivortexlondon:11,tbulktrivortexml:11,tbulktrivortexagl:11,tbulktrivortexngl:11,migrad:[12,11],proven:11,larg:[12,11],futil:11,strategi:[12,11],max_likelihood:[12,11],hess:[12,11],bmw_startup:11,debug:[12,11],one_or_zero:11,deactiv:11,path_to_fil:11,invalid:11,delta_t:11,rest:11,microsecond:11,delta_b:11,resb:11,vortexlattic:11,n_vortexgrid:11,data_path:[12,11],data_path_prefix:11,n_theori:11,invers:11,energy_list:11,energy_label:11,rge:11,expect:[12,11],belong:11,wordsofwisdom:11,trimsp:11,"02_0":11,"03_0":11,"03_6":11,"05_0":11,"05_3":11,relax:[12,11],slr:11,reson:[12,11],lineshap:11,puls:[12,11],evolut:11,salman:[11,13],prl:11,lifetim:[12,11],exponenti:[12,11],exprlx:11,stretch:11,sexprlx:11,expon:[12,11],chemic:11,anisotropi:11,powder:11,mehr:11,solid:[12,11],springer:11,axial:11,symmetr:11,observ:11,paralel:11,perpendicular:11,symmetri:11,anisotrop:11,along:[12,11],loss:11,ellipt:11,linegauss:11,fwhm:11,height:11,lorentzian:11,linelorentzian:11,laplacian:11,linelaplac:11,skew:11,lineskewlorentzian:11,width:[12,11],lineskewlorentzian2:11,convolut:11,powderlineaxiallor:11,powderlineaxialgss:11,powderlineasymlor:11,princip:11,powderlineasymgss:11,gpl:12,philosophi:12,abil:12,fcn:12,sever:12,correl:12,renam:12,msr_file_without_extens:12,msr_file:12,maxlh:12,estimaten0:12,timeout_tag:12,overwrit:12,prevent:12,orphan:12,jam:12,"8472_tf_histo":12,avg:12,graphic_format_extens:12,session:12,"8472_0":12,gif:12,jpg:12,svg:12,xpm:12,"8472_x":12,experiment:12,action:12,canvas:12,toggl:12,spectrum:12,area:12,hair:12,consid:12,beta:[],feed:12,exit:12,"3310_0":12,subtract:12,fopt:12,neither:12,nor:12,pad:12,angular:12,interpret:12,lem15_his_01234:12,rebin:12,fudg:12,elimin:12,sens:12,tweak:12,tdc_hifi_2014_00153:12,mnsi:12,"50k":12,unzoom:12,crosshair:12,gett0frompromptpeak:12,firstgoodbinoffset:12,argument:12,color:12,channel:12,interrupt:12,msr_file_in:12,msr_file_out:12,parc:12,wors:12,aim:12,idf1:12,idf2:12,nexus1:12,nexus2:12,flexibl:12,filenamelist:12,lem10_his_0111:12,lem10_his_0113:12,run3:12,runstart:12,runend:12,rrrr:12,rrrrrr:12,yyyi:12,unless:12,sent:12,stdout:12,compress:12,absent:12,lem10_his_0123:12,lem10_his_0123_v2:12,idf:12,deltat_tdc_gps_:12,d2001:12,deltat_tdc_gps_0123:12,deltat_tdc_gps_0137:12,deltat_tdc_alc_:12,rrr:12,spit:12,psi_gps_:12,psi_:12,"_gps_":12,psi_gps_run_100to117:12,archiv:12,lem10_his_0012:12,rebin25:12,lem10_his_0123_rebin25:12,runno:12,fileformat:12,pta:12,ltf:12,dolli:12,gpd:12,hifi:12,tdc_hifi_2015_00123:12,construct:12,path_to_data:12,write_per_run_block_chisq:12,pearson:12,fourier_set:12,phase_incr:12,phincr:12,increment:12,optim:12,root_set:12,marker_list:12,marker:12,color_list:12,intranet:12,mnt:12,unlik:12,headlin:12,style:12,lower_boundari:12,upper_boundari:12,init:12,alpha:12,asi:12,freq:12,constrain:12,semi:12,par:12,asy1:12,rate1:12,asy2:12,field2:12,rate2:12,whitespac:12,avoid:12,whenev:12,abbr:12,express:12,"const":12,generexpo:12,stg:12,statgssktlf:12,sgktlf:12,dyngssktlf:12,dgktlf:12,statexpkt:12,sekt:12,statexpktlf:12,sektlf:12,dynexpktlf:12,dektlf:12,combilgkt:12,lgkt:12,strkt:12,skt:12,spinglass:12,spg:12,rdanisohf:12,rahf:12,internfld:12,internbsl:12,internfldgk:12,ifgk:12,internfldl:12,ifll:12,abragam:12,skewedgss:12,skg:12,staticnkzf:12,snkzf:12,staticnktf:12,snktf:12,dynamicnkzf:12,dnkzf:12,dynamicnktf:12,dnktf:12,muminusexptf:12,mmsetf:12,polynom:12,hayano:12,conden:12,matter:12,keren:12,uemura:12,crook:12,cywinski:12,turner:12,harshman:12,kornilov:12,pomjakushin:12,letter:12,larkin:12,physica:12,condens:12,noak:12,kalviu:12,oxford:12,simplifi:12,formula:12,ident:12,compact:12,difficulti:12,simultan:12,address:12,funx:12,complic:12,dictionari:12,libmylibrari:12,tmyfunct:12,auxiliari:12,arithmet:12,divis:12,sin:12,tan:12,aco:12,asin:12,atan:12,cosh:12,sinh:12,tanh:12,acosh:12,asinh:12,atanh:12,exp:12,sqrt:12,pow:12,parx:12,par5:12,mapi:12,denot:12,frac1:12,shorten:12,logic:12,fire:12,addt0:12,rrf_freq:12,rrf_pack:12,rrf_phase:12,exact:12,pie3:12,particular:12,run_file_nam:12,record:12,digress:12,musrfulldatapath:12,colon:12,smith:12,lem07_his_2018:12,musrfulldatapathtoken:12,runnam:12,ext:12,lem07_2018_rb1_npp:12,d2007:12,deltat_pta_gps_2650:12,d2010:12,deltat_tdc_gpd_8472:12,mue1:12,beauti:12,muminu:12,t0addrun1:12,t0addrun2:12,t0addrun1forward:12,t0addrun1backward:12,t0addrun2forward:12,t0addrun2backward:12,sum:12,onlin:12,angl:12,nanosecond:12,fun3:12,transfer:12,ten:12,fgb:12,lgb:12,larger:12,direct:12,span:12,meaningless:12,simplex:12,batch:12,anywher:12,contour:12,mnplot:12,optimum:12,list_of_param_to_be_fix:12,restor:12,freq1:12,freq2:12,complex:12,fit_rang:12,flavor:12,n00:12,n01:12,n10:12,n11:12,nn0:12,nn1:12,inlin:12,scale_n0_bkg:12,fals:12,print_level:12,footnot:12,bigger:12,phd:12,thesi:12,ubc:12,val0:12,sep:12,val1:12,valn:12,parx0:12,parx1:12,parxn:12,par7:12,par17:12,par22:12,par27:12,par32:12,par37:12,par42:12,par47:12,par52:12,par57:12,par62:12,par67:12,par72:12,par77:12,par82:12,fcp:12,bcp:12,relative_bcp:12,parrx0:12,rel:12,summ:12,parxj:12,parr:12,obvious:12,offest:12,range_for_phase_correct:12,par8:12,nsec:12,min:12,sub_rang:12,view_pack:12,logx:12,logarithm:12,logi:12,khz:12,par4:12,downward:12,upward:12,unwant:12,rid:12,filter:12,kaiser:12,fail:12,tricki:12,compon:12,ideal:12,uncontrol:12,ghost:12,imperfect:12,distort:12,dispers:12,fold:12,substanti:12,infer:12,math:12,mathrm:12,theoret:12,rearrang:12,unbin:12,histogramm:12,reserv:12,plug:12,simpler:12,why:12,although:12,declar:12,puserfcnbas:12,evalu:12,cassert:12,cmath:12,namespac:12,constructor:12,destructor:12,needglobalpart:12,"void":12,setglobalpart:12,globalpart:12,uint_t:12,idx:12,globalpartisvalid:12,classdef:12,destroi:12,peculiar:12,ness:12,introductori:12,topic:12,const_correct:12,herein:12,classimp:12,assert:12,arg:12,linkdef:12,tmylibrarylinkdef:12,ifdef:12,"__cint__":12,pragma:12,endif:12,wise:12,attach:12,tmylibrari:12,libtmylibrari:12,sensibl:12,bluish:12,node:12,uf1:12,uf2:12,entiti:12,ineffici:12,associ:12,ufx:12,g_ufx:12,consum:12,abrikosov:12,cycl:12,thu:12,overhead:12,tmyglobalfunct:12,isvalid:12,fvalid:12,fprevparam:12,calcsomethingcpuexpens:12,liklei:12,getwhatisneed:12,privat:12,finvokedglob:12,fidxglob:12,fglobaluserfcn:12,static_cast:12,sorri:12,resiz:12,pointer:12,dynamic_cast:12,retriev:12,pseudo:12,increas:12,safeti:12,manjaro:9,antergo:9,distro:9,deb:9,installatio:9,ration:12,indicationg:12,helic:12,opposit:12,zaher:13,robert:13,scheuermann:13,contruct:13},objects:{},objtypes:{},objnames:{},titleterms:{acknowledg:13,any2mani:[12,0],univers:0,"\u03bcsr":[12,5,0,6,11],file:[4,12,7,0,6,11,10],format:[12,6,0],convert:0,bugtrack:1,how:2,cite:2,musrfit:[4,12,7,3,8,2,9,10],welcom:3,document:[3,11],indic:3,tabl:3,msr2data:[4,12,10],program:4,automat:4,process:[4,10],multipl:[4,10],msr:[4,12,10],basic:[4,12,6,7],type:[4,12],usag:[4,12,5,7],run:[4,12,6],list:4,structur:4,option:[4,9],paramet:[4,5,7],global:[4,12],mode:4,gener:[4,12],extract:4,extend:4,known:4,limit:4,graphic:[4,5,8],user:[4,12,5,6,11],interfac:[4,6,5,7],provid:4,musredit:[4,9,7],mupp:5,plotter:5,script:5,summari:5,musrroot:6,extens:[12,6],open:6,some:6,concern:6,root:[6,9],inform:6,contain:6,runhead:6,runinfo:6,overview:6,tmusrrunhead:6,concept:6,header:6,write:6,read:[6,10],valid:6,requir:[6,9],detectorinfo:6,sampleenvironmentinfo:6,magneticfieldenvironmentinfo:6,beamlineinfo:6,exhaust:6,tree:6,includ:6,everyth:[6,9],tmusrrunphysicalquant:6,possibl:6,represent:6,gui:7,base:7,introduct:[12,11,7],avail:[12,7],execut:[12,7],configur:[12,7],musrgui:[9,7],musredit_startup:7,xml:[12,11,7],featur:7,musrwiz:7,theori:[12,7],"function":[12,11,7],map:[12,7],fit:[10,8,7,12],info:7,creat:7,musrstep:7,set:[9,8],high:8,speed:8,gpu:[12,8],tesla:8,k40c:8,nvidia:8,driver:8,instal:[9,8],cuda:8,via:[9,8],automak:[],cmake:[9,8],amd:8,card:8,radeon:8,"390x":8,app:8,softwar:[9,8],develop:8,kit:8,sdk:8,enabl:[12,8],opencl:[12,8],support:[12,9,8],maco:[9,8],differ:9,platform:9,oper:9,system:9,restrict:9,gnu:9,linux:9,nexu:9,build:9,last:9,step:9,obsol:9,check:9,window:9,cygwin:9,potenti:9,problem:9,mac:9,macport:9,packag:9,from:9,sourc:9,environ:9,variabl:9,fink:9,obsolet:9,tutori:10,singl:[12,10],histogram:[12,10],determin:10,data:[11,10],rang:10,musrt0:[12,10],model:[11,10],view:10,musrview:[12,10],further:10,asymmteri:10,lib:11,meissner:11,profil:11,vortex:11,lattic:11,relat:11,bmw:11,libfitpofb:11,dimension:11,london:11,state:11,isotrop:11,superconductor:11,bulk:11,field:11,distribut:11,mix:11,startup:11,nonloc:11,superconduct:11,screen:11,analyz:11,"\u03b2":11,nmr:[12,11],bnmr:11,libbnmr:11,liblineprofil:11,manual:12,kei:12,shortcut:12,musrft:12,msr2msr:12,dump_head:12,musrfit_startup:12,descript:12,titl:12,fitparamet:12,block:12,command:12,fourier:12,plot:12,statist:12,rrf:12,asymmetri:12,neg:12,muon:12,non:12,without:12,object:12,access:12,technic:12,framework:12,beta:12},envversion:43})
\ No newline at end of file
+Search.setIndex({filenames:["acknowledgement","any2many","bugtracking","cite","index","msr2data","mupp","musr-root","musredit","setup-dks","setup-standard","tutorial","user-libs","user-manual"],titles:["Acknowledgements","any2many - a Universal \u03bcSR-file-format converter","Bugtracking","How to Cite musrfit?","Welcome to the musrfit documentation!","msr2data - A Program for Automatically Processing Multiple musrfit msr Files","mupp - \u03bcSR Parameter Plotter","MusrRoot - an Extensible Open File Format for \u03bcSR","musredit: the GUI Based Interface to musrfit","Setting up musrfit / DKS: High Speed Fitting with GPU’s","Setting up musrfit on Different Platforms","Tutorial for musrfit","Documentation of user libs (user functions)","User manual"],terms:{"\u03b1":[9,6,0,1,5,3,7,11,8,12,13,10],"\u03b2":[],"\u03b4":[9,6,0,1,5,3,7,11,8,12,13,10],"\u03b7":[9,6,0,1,5,3,7,11,8,12,13,10],"\u03b5":[9,6,0,1,5,3,7,11,8,12,13,10],"\u03b3":[9,6,0,1,5,3,7,11,8,12,13,10],"\u03b9":[9,6,0,1,5,3,7,11,8,12,13,10],"\u03ba":[9,6,0,1,5,3,7,11,8,12,13,10],"\u03c7":[9,6,0,1,5,3,7,11,8,12,13,10],"\u03bb":[9,6,0,1,5,3,7,11,8,12,13,10],"\u03bc":[9,6,0,1,5,3,7,11,4,8,12,13,10],"\u03bd":[9,6,0,1,5,3,7,11,8,12,13,10],"\u03bf":[9,6,0,1,5,3,7,11,8,12,13,10],"\u03c9":[9,6,0,1,5,3,7,11,8,12,13,10],"\u03c0":[9,6,0,1,5,3,7,11,8,12,13,10],"\u03c6":[9,6,0,1,5,3,7,11,8,12,13,10],"\u03c8":[9,6,0,1,5,3,7,11,8,12,13,10],"\u03c1":[9,6,0,1,5,3,7,11,8,12,13,10],"\u03c2":[9,6,0,1,5,3,7,11,8,12,13,10],"\u03c3":[9,6,0,1,5,3,7,11,8,12,13,10],"\u03c4":[9,6,0,1,5,3,7,11,8,12,13,10],"\u03b8":[9,6,0,1,5,3,7,11,8,12,13,10],"\u03c5":[9,6,0,1,5,3,7,11,8,12,13,10],"\u03be":[9,6,0,1,5,3,7,11,8,12,13,10],"\u03b6":[9,6,0,1,5,3,7,11,8,12,13,10],bastian:0,wojek:[5,3,0],veri:[0,7,11,8,13,10],much:[6,0,7,8,13],indebt:0,bmw:[],rigor:0,test:[8,10,0],musrfit:[],mani:[0,5,7,8,12,13,10],suggest:[5,10,0],contribut:[12,13,0,11],largest:0,part:[0,7,3,11,8,12,13,10],user:[],manual:[],which:[9,6,0,5,7,11,8,12,13,10],make:[9,0,7,8,13,10],access:[],broader:0,audienc:0,thank:0,uldi:0,locan:[9,3,0],work:[9,0,5,7,8,12,13,10],enabl:[],gpu:[],support:[],kind:[12,7,0],calm:0,extrem:0,compet:0,wai:[9,6,0,5,7,11,8,12,13,10],deal:[9,0,7,11,12,13,10],project:[10,0],well:[9,0,5,11,12,13],chao:0,physicist:0,think:0,admir:0,allow:[9,6,1,5,7,8,12,13,10],most:[9,1,5,7,12,13,10],from:[],other:[9,6,1,7,11,13,10],detail:[9,1,7,11,8,12,13,10],descript:[],see:[9,6,1,5,7,11,8,12,13,10],here:[9,6,1,5,7,11,8,13,10],report:2,bug:[8,2],request:[6,11,2,13,10],"new":[5,7,2,11,8,13,10],featur:[],improv:[10,12,2],pleas:[5,3,7,2,11,12,13,10],bitbucket:[10,13,2],repo:[9,10,2],prefer:[8,10,2,13],send:[13,2],mail:2,suter:[9,3,2],psi:[9,7,2,11,8,12,13,10],sinc:[9,5,3,7,11,13,10],quit:[3,7,8,13,10],some:[],effort:3,develop:[],mainten:[3,7],packag:[],you:[9,6,3,7,8,13,10],should:[9,6,5,3,7,11,8,12,13,10],least:[5,3,11,13,10],your:[9,5,3,8,13,10],"public":[10,3,12,13],have:[9,5,3,7,11,8,12,13,10],analyz:[],data:[],even:[5,3,7,13,10],better:[5,13,3],cours:[5,13,3],properli:[5,9,3,13],refer:[9,3,7,11,8,12,13,10],given:[9,6,5,3,7,11,8,12,13,10],beneath:[8,3],free:[3,7,8,12,13,10],platform:[],independ:[12,3,13],framework:[],analysi:[9,5,3,7,11,12,13,10],physic:[9,13,3,7],procedia:3,http:[9,3,7,8,12,13,10],doi:3,org:[10,3],phpro:3,high:[],speed:[],version:[9,6,3,7,8,12,13,10],util:[9,3,7,13,10],"case":[9,6,5,3,7,11,8,12,13,10],thi:[9,6,5,3,7,11,8,12,13,10],also:[9,6,5,3,7,11,8,12,13,10],add:[9,6,5,3,7,11,8,13,10],follow:[9,6,5,3,7,11,8,12,13,10],citat:3,adelmann:3,dynam:[9,3],kernel:[9,3],schedul:[9,3],comput:[9,10,3],commun:3,cpc:3,real:[9,3,11,13,10],time:[9,6,3,7,11,8,12,13,10],paramet:[],fit:[],imag:[13,3,11],reconstruct:3,graphic:[],process:[],unit:[13,3,7,11],conf:[9,10,3],proc:3,jpscp:3,tutori:[],singl:[],histogram:[],asymmteri:[],introduct:[],avail:[],execut:[],configur:[],basic:[],usag:[],msr:[],type:[],"function":[],technic:[],lib:[],meissner:[],profil:[],vortex:[],lattic:[],relat:[],nonloc:[],superconduct:[],screen:[],nmr:[],bnmr:[],set:[],differ:[],oper:[],system:[],softwar:[],requir:[],restrict:[],gnu:[],linux:[],window:[],mac:[],maco:[],tesla:[],k40c:[],nvidia:[],amd:[],card:[],radeon:[],"390x":[],opencl:[],musredit:[],gui:[],base:[],interfac:[],musrwiz:[],musrstep:[],mupp:[],plotter:[],script:[],summari:[],msr2data:[],program:[],automat:[],multipl:[],option:[],global:[],mode:[],known:[],limit:[],provid:[],musrroot:[],extens:[],open:[],concern:[],root:[],tmusrrunhead:[],concept:[],runinfo:[],detectorinfo:[],sampleenvironmentinfo:[],magneticfieldenvironmentinfo:[],beamlineinfo:[],exhaust:[],tree:[],includ:[],everyth:[],tmusrrunphysicalquant:[],possibl:[],represent:[],index:[4,5,13],search:[4,10,13],page:[9,7,11,4,8,10],origin:[5,8,13,12],written:[5,7,11,8,12,13],implement:[9,5,7,8,12,13,10],purpos:[5,10,13,11],input:[0,5,11,8,13],same:[9,6,5,7,11,12,13,10],summar:[5,11],result:[5,7,11,8,12,13],either:[6,5,11,8,12,13,10],triumf:[5,8,13,11],column:[5,7,11,8,13],ascii:[5,11,8,13,12],essenti:[5,8,7,13],collect:[6,5,7,11,8,12,13,10],old:[5,10,13],abridg:5,produc:[5,10,13,11],can:[9,6,5,7,11,8,12,13,10],view:[],instanc:[6,5,7,13,10],howev:[9,5,11,13,10],thei:[9,5,7,11,13,10],complet:[9,5,11,12,10],backward:[5,13,7],compat:[5,9,10,13],languag:5,name:[9,6,5,7,11,8,12,13,10],longer:5,than:[5,7,11,8,13,10],five:[5,11],six:5,charact:[5,13],order:[9,5,7,12,13,10],establish:5,need:[9,5,7,11,8,12,13,10],ensur:[5,13],correct:[5,11,8,13,10],length:[5,12,7],apart:[5,10,12],numer:[5,10,12],might:[6,5,7,8,12,13,10],principl:[5,10,12],four:[5,13],call:[6,5,7,11,8,12,13,10],suppli:[5,9,13,12],number:[9,6,5,7,11,8,12,13,10],firstrunno:5,lastrunno:5,interv:[5,13],specifi:[5,7,11,8,12,13,10],through:[5,7,11,12,13,10],first:[9,6,5,7,11,8,12,13,10],last:[],condit:[5,12],necessari:[5,7,11,8,13,10],runlist:[5,13],where:[9,6,5,7,11,8,12,13,10],combin:[5,7,11,8,13],run0:5,run1:[5,13],run2:[5,13],runn:5,rang:[],step:[],sequenc:[5,13,11],posit:[5,13,7,11],integ:[5,13,7],etc:[9,5,7,8,13,10],runlistfilenam:5,contain:[],extern:[5,7,12,13,10],pass:[5,8,13],below:[5,7,11,12,13,10],all:[9,6,5,7,11,8,13,10],mandatori:[5,12,7,13],right:[5,7,11,12,13,10],after:[9,5,7,11,8,13,10],mean:[9,6,5,7,11,8,12,13,10],becom:[5,10],clear:[5,8,7,13],give:[5,7,11,13,10],exampl:[6,5,7,11,8,12,13,10],"_tf_h13":5,out:[9,6,5,7,11,8,13,10],chang:[9,5,8,13,10],"8472_tf_h13":5,"8473_tf_h13":5,"8474_tf_h13":5,"8470_tf_h13":5,directori:[9,5,7,11,8,12,13,10],put:[5,8,10,13],var1:5,var2:5,var3:5,comment:[9,6,5,7,8,13,10],empti:[5,6,8,13],line:[6,5,7,11,8,12,13,10],determin:[],label:[6,5,7,8,12,13],present:[9,6,5,7,11,8,12,13,10],preced:5,mention:[5,7,12,13,10],togeth:[5,7,11,8,13,10],abov:[9,6,5,7,11,8,12,13,10],output:[6,5,11,8,12,13],onli:[9,6,5,7,11,8,12,13,10],newli:[5,8,11],creat:[],did:[5,10],exist:[5,10,13],befor:[9,5,7,11,8,12,13,10],invok:[5,6,8,13],were:[5,8,7,13],alreadi:[9,5,8,13,10],would:[9,6,5,7,11,8,12,13,10],append:[5,10,13],been:[5,7,11,8,12,13,10],header:[],block:[],forc:[5,13],suppress:5,nohead:[5,8],shall:[5,7,11,8,12,13,10],seen:[5,7,11],later:[5,10,13,11],like:[9,6,5,7,8,12,13,10],behavior:[5,13],ani:[9,5,7,11,8,13,10],simpl:[5,11,12,13,10],"default":[9,5,8,13,10],dat:[6,5,11,8,12,13],delet:[5,7],inform:[],both:[5,10,13,12],none:[5,8,13,11],write:[],sole:[5,13],assum:[9,5,7,11,8,12,13,10],nosummari:[5,8],attempt:5,read:[],addit:[9,5,7,11,8,12,13,10],temperatur:[6,5,7,11,13],appli:[5,7,11,12,13,10],magnet:[5,8,7,12],field:[],paramlist:5,param:[5,6,8,13],select:[9,6,5,7,11,8,13,10],"export":[9,5,11,13,10],startno:5,endno:5,space:[5,10,13,12],separ:[5,11,8,13,10],outputfilenam:[5,13],instead:[9,6,5,12,13,10],equal:[5,13,11],insensit:5,addition:[5,11,8,13,10],"final":[5,11,12,13,10],templat:[5,8,13,11],perform:[6,5,7,11,8,13,10],mlog:[5,8,13],subsequ:[5,13],chain:[5,8],exclam:5,mark:[5,13],without:[],keep:[5,8,7,13],mn2:[5,13],done:[9,6,5,7,11,12,13,10],ignor:[5,6,13],titl:[],illustr:[5,13],few:[5,7,8,13,10],explan:[5,13],oabc:5,"8400_tf_h13":5,"8460_tf_h13":5,abc:5,about:[5,7,11,13,10],"_zf":5,def:5,"8472_zf":[5,8],"8500_zf":5,"8502_zf":5,"8503_zf":5,"8504_zf":5,"8507_zf":5,oghi:5,ouput:5,ghi:5,take:[5,11,12,13,10],"8471_tf_h13":5,"8475_tf_h13":5,bestdata:5,"8476_tf_h13":5,"8477_tf_h13":5,"8478_tf_h13":5,"8479_tf_h13":5,describ:[9,5,7,11,8,12,13,10],anoth:[6,5,7,8,13],each:[6,5,7,11,12,13,10],defin:[6,5,7,11,8,12,13,10],common:[5,10,13],specif:[5,7,11,8,12,13,10],when:[5,7,11,8,12,13,10],obtain:[5,12,7],valid:[],conjunct:[5,12,13],invoc:[5,13],state:[],idea:[5,13,7,11],basi:5,identifi:[5,13],tag:[6,5,11,8,12,13,10],current:[9,6,5,7,8,12,13,10],"0xu":5,digit:[5,13],lead:[5,7,8,12,13],zero:[5,7,11,8,13],end:[6,5,7,11,8,13,10],alpha0123:5,alpha00123456:5,fitparamet:[],exemplari:[5,13],"8472_exampl":5,could:[9,6,5,8,12,13,10],therefor:[5,11,12,13,10],look:[9,6,5,7,8,12,13,10],valu:[9,5,7,11,8,13,10],pos_error:[5,13,11],boundari:[5,11,8,13,12],phase:[5,11,8,13,12],asy8472:5,rate8472:5,treat:[5,10],wherea:[5,8,13],normal:[5,10,13,11],within:[6,5,7,11,8,12,13,10],appear:[5,13],explicitli:[5,8,13],theori:[],those:5,met:5,"try":[5,10,13],substitut:[5,10,13,11],them:[5,7,11,8,12,13],map:[],accordingli:[5,6,10,11],"_exampl":5,global_exampl:5,alwai:[5,12,7,13],start:[9,6,5,7,11,8,13,10],asy8471:5,rate8471:5,asy8470:5,rate8470:5,show:[6,5,7,11,8,13],reorgan:5,begin:[5,10,7,13],copi:[5,8,10,13],found:[9,5,7,11,8,12,13,10],dure:[6,5,12,13,10],affect:5,occurr:[5,10],awar:[5,10,13],fact:[5,10],propag:5,model:[],usual:[5,12],store:[5,7,8,12,10],reach:[5,13],goal:[5,13],obei:[5,13],certain:[5,12],rule:[5,8,7,13],match:[5,13],accord:[5,11,8,13,10],achiev:[5,10,11],easili:[5,9,8,10],shown:[6,5,7,11,8,13],globalfit:5,relev:[5,7,11,8,13],pre:[5,8],afterward:[9,6,5,7,12,13,10],special:[5,13,7],replac:[5,10,13],review:5,activ:[5,8,10,12],choos:[5,11,8,12,13,10],keyword:[5,13],onerunfit_exampl:5,onerunfit:5,everi:[5,6,10,13],similar:[5,10],explain:[9,5,7,11,8,12,13,10],moment:[5,10,7,12],peopl:[5,10,7],cannot:[5,12,13],behav:[5,12],integr:[5,12],filenam:[5,13,7],rightmost:5,highest:[5,10],treatabl:5,statist:[],itself:[5,11],more:[9,6,5,7,11,8,13,10],creativ:5,care:[5,10,13],addrun:[5,13],statement:[5,13],simpli:[5,10,13],probabl:[5,10,7],what:[9,5,11,12,13,10],two:[5,7,11,8,12,13,10],success:[5,13,7,11],encount:5,actual:[5,10,13,12],measur:[6,5,7,11,8,12,13],introduc:[5,13,7,11],reason:[5,10,13,11],shape:[5,12,13],design:[5,10],especi:[9,5,7,12,13,10],manipul:[5,8,13],front:[5,8,7,11],offer:[5,13,11],almost:[5,8,13],self:[5,8],explanatori:[5,8],depict:[5,13],under:[9,6,5,7,8,13,10],stai:5,enter:[5,9,8,10],otherwis:[5,9,10,13],serv:[5,13,11],second:[5,11,8,13,12],noth:[5,8,7,13],correspond:[6,5,7,11,8,13,10],littl:[6,8,13],helper:[10,6,8,7],quickli:[9,6],plot:[],handl:[6,7,8,12,13,10],heavili:[6,12],inspir:6,via:[],command:[],directli:[6,7,8,13,10],typic:[9,6,8,13,10],load:[6,12],dialog:[6,8],tri:[6,10,13],fly:[6,11],drag:[6,11],over:[6,10,13],axi:[6,7,11,12,13],wish:[6,13],click:[6,8,13],analog:6,remov:[6,13],often:[6,8,10,13],compar:[9,6,10,13],trend:6,hold:[6,13,7],energi:[6,12,7],scan:[6,13],now:[9,6,11,13,10],interest:[6,10,13],ditto:6,less:[6,10,13],error:[9,6,7,11,8,12,13,10],prone:[9,6,8],quicker:[6,13],button:[6,8,13,11],mupp_plot:6,applic:[9,6,8,12,13,10],refresh:6,reload:[6,8],beamtim:6,grow:6,task:6,mous:[6,13],gambl:6,futur:[6,8,10],plane:6,help:[9,6,8,13,10],cmd:[6,10],manner:[6,10],updat:[9,6,11,13,10],web:[6,0,7,8,13,10],interact:[6,12,13,11],figur:[6,13,7],loadpath:6,dir:6,path:[9,6,7,11,8,13,10],bash:[6,10],variabl:[],home:[9,6,7,8,12,13,10],accept:[6,8,13],coll:6,selectal:6,carri:[6,10,13],ybco:6,"40nm":6,t5k:6,fc150mt:6,escan:6,addx:6,addi:6,savepath:6,save:[6,7,11,8,12,13,10],place:[6,10,13,11],macro:6,fln:[6,13],txt:[6,10],t30k:6,t60k:6,t120k:6,fieldvsenergi:6,pdf:[6,13],"true":[6,12,7,13],best:[6,7,12,13,10],ever:[6,7],thie:6,labl:6,until:[13,7,11],bulk:[],instrument:[8,7,13],bin:[7,11,8,13,10],fix:[8,7,11,13],binari:[10,7],rather:[10,8,7,13],stringent:7,lem:[12,7,13],cern:[10,7,13],tightli:7,tailor:7,situat:[10,7,13],unsatisfactorili:7,henc:[9,7,11,13,10],decid:[10,7,13],move:[13,7,11],forward:[9,13,7,11],acquisit:7,mida:7,respons:[9,13,7],build:[],decai:[13,7,11],easi:[8,7],object:[],th1f:7,orient:[12,7],mine:7,frame:[9,13,7],tfile:7,eas:[10,7,13],understand:[13,7],upcom:7,definit:[13,7,11],thing:[9,7,8,13,10],check:[],guid:[9,13,7],organ:[8,7,13],similarli:[13,7],browser:7,inspect:7,tbrowser:7,deriv:[13,7],tobject:7,small:[9,7,8,12,13,10],subset:[13,7],tfolder:7,top:7,level:[13,7],tobjarrai:7,tobjstr:7,content:[10,7,13],form:[9,7,11,12,13,10],box:[9,8,7],entri:[13,7],sketch:[13,7],histo:[7,11,8,13,10],decayanamodul:7,hdecay001:7,hdecay002:7,scanamodul:7,hsampletemperatur:7,hsamplemagneticfield:7,detector001:7,detector002:7,hdecayxxx:7,xxx:7,"int":7,"03d":7,notat:[13,7],"class":[12,7,13],folder:[10,7],next:[9,7,8,12,13,10],section:[10,7,13],slow:7,control:[9,13,7],sampl:[9,12,7,11],versu:7,again:[9,7,8,13,10],meta:7,minim:[7,11,12,13,10],bracket:7,item:[13,7],detector:[7,11,8,12,13],environ:[],beamlin:[8,7,11,13],elabor:[9,7],word:7,sub:[10,7,11,13],intern:[8,7,13],tstring:7,git:[9,10,7,13],url:7,xsd:7,wrote:7,nemu_analyz:7,deltat_tdc_gps_4295:7,int_t:[13,7],iso:7,date:[13,7,11],stop:7,durat:7,sec:[13,7],laboratori:7,muon:[],beam:[13,7],momentum:[12,7,11],mev:7,speci:7,neg:[],sourc:[],target:7,low:[12,7,13],setup:[9,10,7,13],cf1:7,wxy:7,resolut:[12,7],redgreen:[13,7],offset:[13,7],tintvector:7,except:[10,8,7,13],shortli:[13,7],discuss:[9,8,7,13],experi:[13,7],stimuli:7,electr:7,off:[13,7],doubl:[13,7],distinguish:7,easier:[10,7],let:7,sai:7,red:[9,7,11,13,10],green:[13,7,11],browsabl:7,string:[10,8,7,13],tobjstringv:7,quantiti:7,repres:[13,7,11],properti:[13,7],estim:[8,7,12,13],demand:[13,7],depend:[9,7,11,8,12,13,10],musrrootv:7,mock:7,print:[8,7,13],notic:[8,7,13],find:[9,7,8,13,10],encod:[7,8,12,13,10],price:7,pai:7,shade:7,"import":[13,7],approach:[10,7,13],standard:[9,10,7,13],"abstract":[13,7],text:[8,7,11,13],though:[10,8,7],clean:[9,10,7],lot:[13,7],"2nd":7,slightli:[9,8,7,13],advantag:[10,8,7,13],maintain:7,expand:7,classifi:7,group:[10,8,7,13],previou:[13,7],"float":7,point:[7,11,8,12,13,10],double_t:[13,7],tstringvector:7,tdoublevector:7,themselv:[12,7],vector:[12,7,13],code:[9,7,11,12,13,10],snippet:[13,7],reader:7,routin:[10,7,12,13],convers:[13,7],write_musrroot_runhead:7,full:[10,7,11,13],concentr:7,just:[9,7,12,13,10],prop:7,further:[],down:[8,7,11,13],deltat_tdc_gps_2871:7,come:[10,8,7],overload:7,pathnam:7,method:[13,7],tdc:[13,7],cf3:7,mrh_undefin:7,strang:7,fed:[13,7],whole:7,someth:[9,10,7,13],recreat:[8,7],iszombi:7,"return":[13,7],info:[],fillfold:7,close:[10,8,7,13],read_musrroot_runhead:7,getobject:7,cerr:[13,7],endl:[13,7],couldn:[13,7],get:[9,7,8,13,10],closefil:7,extractal:7,decod:7,fill:[13,7,11],getter:7,bool_t:[13,7],ival:7,cout:7,els:[10,8,7,13],getvalu:7,geterror:7,getunit:7,getdemand:7,getdescript:7,mechan:[13,7],inde:7,minimum:7,scheme:7,musrrootvalid:7,recurs:7,pars:7,temporari:7,xml:[],ampl:[13,7],parser:[10,7],hand:[10,7,13],decent:7,book:7,libxml2:[10,7],becaus:[8,7],suppos:[10,7,13],against:7,schema:7,lmu:[8,7],semant:7,preform:7,cross:[10,7,13],facil:[8,7,13],musrrootlem:7,poitiv:7,wew:7,hdecay023:7,detector023:7,potenti:[],discontinu:7,"break":7,element:7,left:[8,7,12],npp:[7,11,8,13,10],spectromet:[9,13,7,11],good:[10,8,7,13],enough:[10,7,13],cryo:7,cryostat:7,oven:7,konti:7,pim3:[13,7,11],hypothet:7,light:7,per:[8,7,13],bottom:7,split:[10,7,13],mind:7,symbol:[10,7],hdecay003:7,hdecay004:7,hdecay007:7,hdecay008:7,hdecay011:7,hdecay012:7,hdecay013:7,hdecay014:7,hdecay017:7,hdecay018:7,hdecay021:7,hdecay022:7,hdecay024:7,hdecay027:7,hdecay028:7,hdecay031:7,hdecay032:7,hdecay033:7,hdecay034:7,hdecay037:7,hdecay038:7,continu:7,"switch":[9,7,8,13,10],jump:[13,7],cpp:[13,7],"00z":7,nemu:[10,7,13],lem12_his_0234:7,said:7,detector038:7,insert:7,x123:7,perp:7,spin:[12,7,11,13],mue4:[8,7,13],scalerinfo:7,runsummari:7,wed:7,oct:7,lco:7,wtf:7,kev:[12,7],ledb:7,buc:7,edit:[10,8,7,11],euc:7,event:[7,11],event_0:7,mcp1:7,event_1:7,mcp2:7,event_2:7,lemusr:7,problem:[],deviat:[13,7],hereaft:7,snip:7,somewher:[10,8,7],token:[13,7],val:[13,7],err:7,cf4:7,cf5:7,editor:[8,10,11],suit:[8,13,12,11],intend:[8,10,13],eventu:[8,11],drop:[8,10],outdat:[8,10,13],earli:[8,13],anymor:[8,10],still:[8,10,12,13],urg:8,strongli:[8,10,13],recommend:[8,10,12],shell:[8,10,13],tab:[8,13],startup:[],displai:[8,10,12,13],locat:[11,8,12,13,10],proof:8,exec_path:8,path_to_exec:8,musrview:[],musrt0:[],insid:[8,10,12,13],default_save_path:8,save_path:8,msr_default_file_path:8,msr_def_path:8,timeout:[8,13],canva:[8,13,11],keep_minuit2_output:8,flag:[8,13],minuit2:[8,10,13],kept:[8,13],dump_ascii:8,dump:[8,13],dump_root:8,title_from_data_fil:8,chisq_pre_run_block:8,chisq:[8,13,11],estimate_n0:8,procedur:[11,8,12,13,10],musrview_show_fouri:8,fourier:[],transform:[11,8,12,13,10],domain:[8,13,11],musrview_show_avg:8,averag:[8,13,12],power:[9,11,8,13,10],spectra:[8,13],enable_musrt0:8,font_set:8,font:[8,10],font_nam:8,font_siz:8,size:[8,13],msr_file_default:8,institut:[8,13,11],inst:8,ral:8,jparc:8,file_format:[8,13],nexu:[],musr:[8,13],ppc:[8,13,11],mdu:[8,13,11],wkm:[8,13,11],mud:[8,13,11],lifetime_correct:8,lifetimecorrect:[8,13],msr2data_default:8,tick:8,chain_fit:8,write_data_head:8,ignore_data_header_info:8,write_column_data:8,create_msr_file_onli:8,fit_onli:8,global_plu:8,recreate_data_fil:8,open_file_after_fit:8,experienc:[8,10],who:8,help_sect:8,variou:[8,10,13],messag:[8,13],musr_web_x:8,link:[8,10,13],main:[8,10,11],musrft:[],func_pixmap_path:8,pix_path:8,latex:8,pixmap:8,visual:[8,11],theory_funct:8,syntax:[8,13],func:8,menu:[8,10,11,13],pictur:8,utf:[8,10,12,13],xmln:[8,13],html:8,usr:[8,10],local:[9,8,10,12],share:[9,8,10,13],doc:[8,10,11,13],chisq_per_run_block:8,recent_fil:8,path_file_nam:8,musr_web_main:8,musr_web_titl:8,thetitl:8,musr_web_paramet:8,thefitparameterblock:8,musr_web_theori:8,thetheoryblock:8,musr_web_funct:8,thefunctionsblock:8,musr_web_run:8,therunblock:8,musr_web_command:8,thecommandsblock:8,musr_web_fouri:8,thefourierblock:8,musr_web_plot:8,theplotblock:8,musr_web_statist:8,thestatisticblock:8,musr_web_msr2data:8,musr_web_musrft:8,a_2:8,"3_musrft":8,monospac:8,latex_imag:8,asymmetri:[],png:[8,13],statgsskt:[8,13],rate:[8,13,12,11],"static":[8,10,12],gauss:[8,13,12,11],respect:[11,8,12,13,10],bar:[8,13],keyboard:[8,11],shortcut:[],scratch:8,too:[8,10],priori:8,knowledg:8,calcul:[8,13,12,11],log:[8,13,12],max:[8,13],likelihood:[8,13,12],kei:[],alt:8,equival:[8,10,13],mai:[8,10,13],chosen:[8,10,13],swap:[8,13],vice:[8,13],versa:[8,13],adjust:[8,10,11,13],initi:[11,8,12,13,10],fitter:8,own:[8,13],docu:[9,8,13],raw:[8,13],dump_head:[],stage:[8,13],wand:8,coupl:[9,8,13],dialogu:8,briefli:8,explicit:[8,13],year:[9,8,13],pull:[8,10],choosen:8,rrf:[],minu:8,transvers:[8,13,11],longitudin:8,choic:[8,10,13],question:[8,13],ask:[8,10],correctli:[8,10,11,13],proper:[9,8,13],prompt:[9,8,10,13],peak:[8,13,12],pop:8,disadvantag:8,freeli:8,custom:[8,13],cost:8,yourself:8,stand:[9,8],whatev:[9,8],press:[8,13,11],syntact:8,appropri:[9,8],previous:8,handi:8,furthermor:[8,10,13],pack:[8,10,11,13],minuit:[8,13,12],reset:[8,13],sometim:[8,13],went:[8,10],wrong:8,leav:8,far:[8,13],iter:[8,13,12],individu:[8,13],tediou:[8,12],popup:8,asym:8,uncheck:8,unselect:8,modifi:[8,12],degre:[8,13,11],cancel:8,anyth:[8,13],scale:[8,13],factor:[8,13],absolut:[8,10,11,13],explor:[9,10],hal:[9,13],memo:[9,13],rotat:[9,13,11],tremend:[9,10],muonium:[9,13],appl:[9,10],cpu:[9,10,13],straight:9,multi:[9,10,13],thread:[9,10,13],doesn:9,openmp:[9,10,13],shop:9,bui:9,gamer:9,sure:[9,10,13],server:[9,10],suffici:[9,12],strong:[9,13,11],yet:[9,12,13,11],fall:[9,13],back:[9,13],conceptu:9,latest:[9,10],hardwar:9,crunch:9,readi:[9,10,13],acceler:[9,13],termin:[9,10,13,11],lspci:9,grep:[9,10],corpor:9,gk110bgl:9,rev:[9,12,13],recogn:9,download:[9,10],center:[9,12],hat:[9,10],enterpris:9,rhel:[9,10],rpm:[9,10],diag:9,rhel7:9,x86_64:9,conflict:9,nouveau:9,reboot:9,machin:[9,10,12],omit:[9,10,13],thin:[9,12],host:9,incorpor:9,paper:9,wiki:9,brief:[9,10],clone:[9,10],got:9,consist:[9,12,13],gitlab:[9,10,13],uldis_l:9,mkdir:[9,10],denable_musr:9,dcmake_install_prefix:[9,10],exec:9,non:[],librari:[9,10,13,12],"super":9,sbin:[9,10],ldconfig:[9,10],ld_library_path:[9,10],launchctl:[9,10],setenv:[9,10],checkout:[9,10],branch:[9,10],dks6:9,soon:10,want:[10,13],tell:13,aslib:10,bmwlib:10,prefix:10,rootsi:[9,10],lookup:9,superus:[9,10],ddk:9,disabl:[9,10,13],daslib:[9,10],dbmwlib:[9,10],dnexu:[9,10],vga:9,advanc:9,micro:[9,13],devic:9,inc:9,ati:9,hawaii:9,grenada:9,"290x":9,amdgpu:9,pro:[9,10],unpack:[9,10],tar:[9,10,13],jxvf:9,blabla:9,usermod:9,video:9,technolog:9,materi:9,leverag:9,amp:9,xvjf:9,sdkinstal:9,linux64:9,bz2:[9,13],opt:[9,10,13],amdappsdk:9,note:[9,10,13,12],instruct:[9,10,13],compil:[9,10,13],xcode:[9,10],deliv:9,easiest:[9,10],involv:[9,12],demonstr:10,"while":10,brave:10,virtual:10,encourag:10,gcc:[10,13],tool:[10,13],autoconf:10,libtool:10,toolchain:[],drope:[],releas:[10,13],plan:[],pkg:10,config:10,boost:10,spirit:10,scientif:[10,13,12],effici:[10,13,12],mathemat:[10,13],fftw:10,fast:10,discret:[10,11],toolkit:10,gnome:10,hdf4:[10,13],manag:10,hdf5:[10,13],minixml:10,neutron:10,rai:10,scienc:10,focus:10,seriou:10,distribut:[],fedora:10,debian:10,ubuntu:10,mint:10,opensus:10,nativ:10,microsoft:10,distributor:10,taken:[10,13],dev:10,devel:10,trick:10,never:10,qt4:10,yum:10,gsl:10,qtwebkit:10,qt5:10,epel:10,qtbase:10,qtsvg:10,dpkg:10,apt:10,libboost:10,libgsl:10,libfftw3:10,libqt4:10,libqtwebkit:10,qtbase5:10,libqt5svg5:10,libqt5webkit5:10,everyon:10,know:10,himself:10,doe:[10,13],websit:10,engin:10,mxml:10,hdf:10,libmxml1:[],libmxml:[],libhdf4:[],libhdf5:10,urgent:13,isi:13,safe:13,master:10,repositori:10,github:10,com:10,nexusformat:10,denable_hdf5:10,denable_hdf4:10,denable_mxml:10,sudo:10,flavour:10,legaci:10,incompat:10,guess:[10,13],warn:[10,13],upgrad:10,recompil:10,redhat:10,libx11:10,libxft:10,libxpm:10,libxext:10,systemat:10,term:10,offici:10,root_build:10,dgminim:10,dasimag:10,dmathmor:10,dminuit2:10,dxml:10,root_exec:10,multicor:10,miss:[10,13],told:10,luke_skywalk:10,echo:10,bashrc:10,bash_profil:10,restart:10,onc:[10,13,12,11],proceed:10,recent:[10,13],muonspin:10,root5:[],root6:10,newer:10,dec:10,whether:13,uninstal:[],xarg:10,install_manifest:10,altern:[10,13],autogen:[],prepar:10,successfulli:[10,13],makefil:13,besid:[],fftw3:[10,12],boostinc:[],qt3:10,qt47:[],lib64:[],omp:13,parallel:[12,13,11],detect:11,permiss:[],dbnmrlib:10,bnmrlib:10,dqt_based_tool:10,dqt_version:10,auto:10,dtry_openmp:10,core:10,finish:[10,11],musrfitpath:10,musrfit_startup:[],built:[10,13],everth:[],src:10,musredit_qt5:10,qmake:10,fine:10,skip:10,higher:10,uic:10,quick:[10,13],hasn:10,adventur:10,advic:10,wonder:10,occur:10,great:10,gain:10,nice:[10,12],unix:10,revis:[10,13],fulfil:10,abl:10,a2p:10,passwd:10,binutil:10,bison:10,bzip2:10,colorgcc:10,coreutil:10,curl:10,cygutil:10,editright:10,findutil:10,flex:10,adob:10,dpi100:10,dpi75:10,alia:10,bitstream:10,ibm:10,type1:10,sun:10,misc:10,xfree86:10,fontconfig:10,freeglut:10,gawk:10,gcc4:10,fortran:10,gccmakedep:10,gettext:10,ghostscript:10,std:[10,13],giflib:10,gmp:10,groff:10,gzip:10,inputproto:10,jasper:10,jpeg:10,lapack:10,libbz2_1:10,libcharset1:10,libcurl4:10,libfftw3_3:10,libgcc1:10,libgd:10,libgif:10,libgl:10,libgl1:10,libglu:10,libglu1:10,libglut:10,libglut3:10,libgmp:10,libgmp3:10,libgomp1:10,libic:10,libice6:10,libjpeg:10,libjpeg62:10,liblapack:10,libmpfr:10,libmpfr1:10,libncurs:10,libncurses9:10,libosmesa:10,libosmesa7:10,libpng:10,libpng14:10,libreadline6:10,libsm:10,libsm6:10,libssh2_1:10,libstdc:10,libtiff:10,libtiff5:10,libx11_6:10,libxau:10,libxau6:10,libxaw7:10,libxcb:10,xlib:10,libxcursor:10,libxcursor1:10,libxdmcp:10,libxdmcp6:10,libxext6:10,libxfix:10,libxfixes3:10,libxfont:10,libxfont1:10,libxft2:10,libxi:10,libxi6:10,libxkbfile1:10,libxmu:10,libxmu6:10,libxpm4:10,libxrend:10,libxrender1:10,libxt:10,libxt6:10,login:10,makedepend:10,man:10,mpfr:10,nano:10,opengl:10,openssh:10,openssl:10,pdftk:10,perl:10,ping:10,psutil:10,python:10,readlin:10,rebas:10,rgb:[10,13],rsync:10,sed:10,subvers:10,tcltk:10,terminfo:10,unzip:10,vim:10,w32api:10,icon:[10,13,11],xauth:10,xextproto:10,xfontsel:10,xinit:10,xkbcomp:10,xkeyboard:10,xkill:10,xlogo:10,xlsfont:10,xorg:10,xproto:10,xrdb:10,xrefresh:10,xset:10,xterm:10,zip:10,zlib:10,zlib0:10,libqt3support4:10,libqtassistantclient4:10,libqtcore4:10,libqtdbus4:10,libqtdesigner4:10,libqtgui4:10,libqthelp4:10,libqtnetwork4:10,libqtopengl4:10,libqtscript4:10,libqtscripttools4:10,libqtsql4:10,libqtsvg4:10,libqttest4:10,libqtwebkit4:10,libqtxml4:10,libqtxmlpatterns4:10,posix:10,convent:[10,12],hard:10,drive:10,network:10,cygdriv:10,stick:10,had:10,x_yy_z:10,"1_33_1":10,librpc:10,sunrpc:10,track:[],patch1:[],www:[10,12],hdfgroup:10,ftp:10,jpegsrc:10,v6b:10,msweet:[],project3:[],hdf_current:[],precompil:10,xzf:10,root_v5:10,win32gcc:10,due:[10,13,12],visit:10,gminim:10,asimag:10,mathmor:10,accomplish:10,usernam:10,qtdir:10,i686:10,reopen:10,qt56:[],readili:10,startxwinrc:10,status_access_viol:10,ash:10,rebaseal:10,resolv:10,administr:10,privileg:10,extent:10,emploi:10,emphas:10,rout:10,dvd:10,xcodebuild:10,licens:[10,13],x11:10,leopard:10,snow:10,xquartz:10,macosforg:[],trac:[],newest:10,port:10,selfupd:10,remark:[10,13],synchron:10,frequent:10,happen:10,servic:10,firewal:10,svn:10,trunk:10,dport:10,sync:10,pkgconfig:10,qtwebengin:10,past:10,unfortun:10,subject:10,mini:[],michaelrsweet:[],lazi:10,dmg:10,sierra:10,writ:10,root_v6:10,macosx64:10,clang91:10,owner:10,life:[10,13,11],chown:10,chgrp:10,staff:10,exactli:[10,13],wisdom:[10,12],harder:10,adopt:[10,13],parenthes:[10,13],macosx:10,plist:10,doctyp:10,dtd:10,propertylist:10,dict:10,qt3mac:10,stabl:10,crypto:10,unstabl:10,finkcommand:10,boost1:10,nopython:10,shlib:10,libtool2:10,qtwebenginecor:10,qtwebenginewidget:10,bit:10,earlier:10,"1_63_0":10,cpp11:10,circumst:10,finder:10,workaround:10,dyld_library_path:10,mgui:10,differenti:[13,11],diamagnet:[12,11],approxim:11,geometri:11,positron:[12,11],counter:[13,11],precess:11,"3110_tutori":11,conveni:11,underli:11,divid:[12,11],xyz:11,normup:11,bgup:11,phaseup:11,normdown:11,bgdown:11,phasedown:11,normright:11,bgright:11,phaseright:11,asymsig1:11,ratesig1:11,fieldsig1:11,asymsig2:11,ratesig2:11,fieldsig2:11,uncertainti:[12,11],asymmetr:11,lower:[13,11],upper:[13,11],constant:[13,0,11],background:[13,11],uncorrel:11,three:[12,13,11],remain:11,signal:[12,13,11],holder:11,amplitud:11,depolar:[12,13,11],simplexpo:[13,11],tfieldco:[13,11],map1:[13,11],fun1:[13,11],frequenc:[12,13,11],simplegss:[13,11],fun2:[13,11],predefin:[13,11],multipli:[13,11],sign:11,fun:11,interrel:11,gamma_mu:[13,11],par12:[13,11],par15:11,altogeth:[13,11],deltat_pta_gps_3110:11,fittyp:[13,11],norm:[13,11],backgr:[13,11],map2:[13,11],map3:11,undefin:11,implant:[12,11],exce:11,mino:[12,13,11],mhz:[12,13,11],fourier_pow:[13,11],apod:[13,11],weak:[13,11],medium:[13,11],real_and_imag:[13,11],par3:[13,11],imaginari:[13,11],drawn:[13,11],abscissa:[13,11],ordin:[13,11],use_fit_rang:[13,11],third:[12,13,11],ndf:11,freedom:[13,11],converg:[12,13,11],blue:[13,11],maximum:[13,11],count:[13,11],zoom:[13,11],graph:[13,11],around:[13,11],cursor:[13,11],suitabl:11,repeat:[13,11],proce:[10,11],comma:[13,11],between:[12,13,11],"short":[13,11],conclud:11,attent:[12,13,11],"3111_tutori":11,"3114_tutori":11,"_tutori":11,snapshot:11,dark:11,theme:11,facilit:12,gyromagnet:12,ratio:[12,13],smu:12,outlin:12,literatur:12,reli:12,repeatedli:12,sizabl:12,worth:12,maxim:[12,13],trial:12,deserv:12,effect:[12,13],shift:[12,13],advis:12,prove:12,appreci:12,induct:12,vari:[12,13],dimens:12,incid:12,simul:12,trim:12,arrai:12,total:[12,13],thick:12,solv:12,equat:[12,13],layer:12,account:[12,13],superfluid:12,macroscop:12,dover:12,adjac:12,penetr:12,depth:12,constitu:12,half:12,film:12,userfcn:[12,13],tlondon1dh:12,deg:12,dead:12,tlondon1d1l:12,fraction:[12,13],substrat:12,bilay:12,heterostructur:12,tlondon1d2l:12,trilay:12,tlondon1d3l:12,investig:12,flux:12,probe:12,randomli:12,spatial:12,seri:12,reciproc:12,coeffici:[12,13],coher:[12,13],gaussian:12,cutoff:12,brandt:12,temp:12,phy:[12,13],riseman:[12,13],analyt:12,ginzburg:12,landau:12,yaouanc:[12,13],dalma:[12,13],réotier:[12,13],bessel:[12,13],region:[12,13],triangular:12,grid:12,inter:12,distanc:12,tbulktrivortexlondon:12,tbulktrivortexml:12,tbulktrivortexagl:12,tbulktrivortexngl:12,migrad:[12,13],proven:12,larg:[12,13],futil:12,strategi:[12,13],max_likelihood:[12,13],hess:[12,13],bmw_startup:12,debug:[12,13],one_or_zero:12,deactiv:12,path_to_fil:12,invalid:12,delta_t:12,rest:12,microsecond:12,delta_b:12,resb:12,vortexlattic:12,n_vortexgrid:12,data_path:[12,13],data_path_prefix:12,n_theori:12,invers:12,energy_list:12,energy_label:12,rge:12,expect:[12,13],belong:12,wordsofwisdom:12,trimsp:12,"02_0":12,"03_0":12,"03_6":12,"05_0":12,"05_3":12,relax:[12,13],slr:12,reson:[12,13],lineshap:12,puls:[12,13],evolut:12,salman:[12,0],prl:12,lifetim:[12,13],exponenti:[12,13],exprlx:12,stretch:12,sexprlx:12,expon:[12,13],chemic:12,anisotropi:12,powder:12,mehr:12,solid:[12,13],springer:12,axial:12,symmetr:12,observ:12,paralel:12,perpendicular:12,symmetri:12,anisotrop:12,along:[12,13],loss:12,ellipt:12,linegauss:12,fwhm:12,height:12,lorentzian:12,linelorentzian:12,laplacian:12,linelaplac:12,skew:12,lineskewlorentzian:12,width:[12,13],lineskewlorentzian2:12,convolut:12,powderlineaxiallor:12,powderlineaxialgss:12,powderlineasymlor:12,princip:12,powderlineasymgss:12,gpl:13,philosophi:13,abil:13,fcn:13,sever:13,correl:13,renam:13,msr_file_without_extens:13,msr_file:13,maxlh:13,estimaten0:13,timeout_tag:13,overwrit:13,prevent:13,orphan:13,jam:13,"8472_tf_histo":13,avg:13,graphic_format_extens:13,session:13,"8472_0":13,gif:13,jpg:13,svg:13,xpm:13,"8472_x":13,experiment:13,action:13,canvas:13,toggl:13,spectrum:13,area:13,hair:13,consid:13,beta:[],feed:13,exit:13,"3310_0":13,subtract:13,fopt:13,neither:13,nor:13,pad:13,angular:13,interpret:13,lem15_his_01234:13,rebin:13,fudg:13,elimin:13,sens:13,tweak:13,tdc_hifi_2014_00153:13,mnsi:13,"50k":13,unzoom:13,crosshair:13,gett0frompromptpeak:13,firstgoodbinoffset:13,argument:13,color:13,channel:13,interrupt:13,msr_file_in:13,msr_file_out:13,parc:13,wors:13,aim:13,idf1:13,idf2:13,nexus1:13,nexus2:13,flexibl:13,filenamelist:13,lem10_his_0111:13,lem10_his_0113:13,run3:13,runstart:13,runend:13,rrrr:13,rrrrrr:13,yyyi:13,unless:13,sent:13,stdout:13,compress:13,absent:13,lem10_his_0123:13,lem10_his_0123_v2:13,idf:13,deltat_tdc_gps_:13,d2001:13,deltat_tdc_gps_0123:13,deltat_tdc_gps_0137:13,deltat_tdc_alc_:13,rrr:13,spit:13,psi_gps_:13,psi_:13,"_gps_":13,psi_gps_run_100to117:13,archiv:13,lem10_his_0012:13,rebin25:13,lem10_his_0123_rebin25:13,runno:13,fileformat:13,pta:13,ltf:13,dolli:13,gpd:13,hifi:13,tdc_hifi_2015_00123:13,construct:13,path_to_data:13,write_per_run_block_chisq:13,pearson:13,fourier_set:13,phase_incr:13,phincr:13,increment:13,optim:13,root_set:13,marker_list:13,marker:13,color_list:13,intranet:13,mnt:13,unlik:13,headlin:13,style:13,lower_boundari:13,upper_boundari:13,init:13,alpha:13,asi:13,freq:13,constrain:13,semi:13,par:13,asy1:13,rate1:13,asy2:13,field2:13,rate2:13,whitespac:13,avoid:13,whenev:13,abbr:13,express:13,"const":13,generexpo:13,stg:13,statgssktlf:13,sgktlf:13,dyngssktlf:13,dgktlf:13,statexpkt:13,sekt:13,statexpktlf:13,sektlf:13,dynexpktlf:13,dektlf:13,combilgkt:13,lgkt:13,strkt:13,skt:13,spinglass:13,spg:13,rdanisohf:13,rahf:13,internfld:13,internbsl:13,internfldgk:13,ifgk:13,internfldl:13,ifll:13,abragam:13,skewedgss:13,skg:13,staticnkzf:13,snkzf:13,staticnktf:13,snktf:13,dynamicnkzf:13,dnkzf:13,dynamicnktf:13,dnktf:13,muminusexptf:13,mmsetf:13,polynom:13,hayano:13,conden:13,matter:13,keren:13,uemura:13,crook:13,cywinski:13,turner:13,harshman:13,kornilov:13,pomjakushin:13,letter:13,larkin:13,physica:13,condens:13,noak:13,kalviu:13,oxford:13,simplifi:13,formula:13,ident:13,compact:13,difficulti:13,simultan:13,address:13,funx:13,complic:13,dictionari:13,libmylibrari:13,tmyfunct:13,auxiliari:13,arithmet:13,divis:13,sin:13,tan:13,aco:13,asin:13,atan:13,cosh:13,sinh:13,tanh:13,acosh:13,asinh:13,atanh:13,exp:13,sqrt:13,pow:13,parx:13,par5:13,mapi:13,denot:13,frac1:13,shorten:13,logic:13,fire:13,addt0:13,rrf_freq:13,rrf_pack:13,rrf_phase:13,exact:13,pie3:13,particular:13,run_file_nam:13,record:13,digress:13,musrfulldatapath:13,colon:13,smith:13,lem07_his_2018:13,musrfulldatapathtoken:13,runnam:13,ext:13,lem07_2018_rb1_npp:13,d2007:13,deltat_pta_gps_2650:13,d2010:13,deltat_tdc_gpd_8472:13,mue1:13,beauti:13,muminu:13,t0addrun1:13,t0addrun2:13,t0addrun1forward:13,t0addrun1backward:13,t0addrun2forward:13,t0addrun2backward:13,sum:13,onlin:13,angl:13,nanosecond:13,fun3:13,transfer:13,ten:13,fgb:13,lgb:13,larger:13,direct:13,span:13,meaningless:13,simplex:13,batch:13,anywher:13,contour:13,mnplot:13,optimum:13,list_of_param_to_be_fix:13,restor:13,freq1:13,freq2:13,complex:13,fit_rang:13,flavor:13,n00:13,n01:13,n10:13,n11:13,nn0:13,nn1:13,inlin:13,scale_n0_bkg:13,fals:13,print_level:13,footnot:13,bigger:13,phd:13,thesi:13,ubc:13,val0:13,sep:13,val1:13,valn:13,parx0:13,parx1:13,parxn:13,par7:13,par17:13,par22:13,par27:13,par32:13,par37:13,par42:13,par47:13,par52:13,par57:13,par62:13,par67:13,par72:13,par77:13,par82:13,fcp:13,bcp:13,relative_bcp:13,parrx0:13,rel:13,summ:13,parxj:13,parr:13,obvious:13,offest:13,range_for_phase_correct:13,par8:13,nsec:13,min:13,sub_rang:13,view_pack:13,logx:13,logarithm:13,logi:13,khz:13,par4:13,downward:13,upward:13,unwant:13,rid:13,filter:13,kaiser:13,fail:13,tricki:13,compon:13,ideal:13,uncontrol:13,ghost:13,imperfect:13,distort:13,dispers:13,fold:13,substanti:13,infer:13,math:13,mathrm:13,theoret:13,rearrang:13,unbin:13,histogramm:13,reserv:13,plug:13,simpler:13,why:13,although:13,declar:13,puserfcnbas:13,evalu:13,cassert:13,cmath:13,namespac:13,constructor:13,destructor:13,needglobalpart:13,"void":13,setglobalpart:13,globalpart:13,uint_t:13,idx:13,globalpartisvalid:13,classdef:13,destroi:13,peculiar:13,ness:13,introductori:13,topic:13,const_correct:13,herein:13,classimp:13,assert:13,arg:13,linkdef:13,tmylibrarylinkdef:13,ifdef:13,"__cint__":13,pragma:13,endif:13,wise:13,attach:13,tmylibrari:13,libtmylibrari:13,sensibl:13,bluish:13,node:13,uf1:13,uf2:13,entiti:13,ineffici:13,associ:13,ufx:13,g_ufx:13,consum:13,abrikosov:13,cycl:13,thu:13,overhead:13,tmyglobalfunct:13,isvalid:13,fvalid:13,fprevparam:13,calcsomethingcpuexpens:13,liklei:13,getwhatisneed:13,privat:13,finvokedglob:13,fidxglob:13,fglobaluserfcn:13,static_cast:13,sorri:13,resiz:13,pointer:13,dynamic_cast:13,retriev:13,pseudo:13,increas:13,safeti:13,manjaro:10,antergo:10,distro:10,deb:10,installatio:10,ration:[],indicationg:13,helic:13,opposit:13,zaher:0,robert:0,scheuermann:0,contruct:0,helec:13,broken:10,bind:10},objects:{},objtypes:{},objnames:{},titleterms:{acknowledg:0,any2mani:[1,13],univers:1,"\u03bcsr":[6,1,7,12,13],file:[1,5,7,11,8,12,13],format:[1,13,7],convert:1,bugtrack:2,how:3,cite:3,musrfit:[9,5,3,11,4,8,13,10],welcom:4,document:[4,12],indic:4,tabl:4,msr2data:[5,13,11],program:5,automat:5,process:[5,11],multipl:[5,11],msr:[5,13,11],basic:[5,8,7,13],type:[5,13],usag:[5,6,8,13],run:[5,13,7],list:5,structur:5,option:[5,10],paramet:[5,6,8],global:[5,13],mode:5,gener:[5,13],extract:5,extend:5,known:5,limit:5,graphic:[5,6,9],user:[6,5,7,12,13],interfac:[5,6,8,7],provid:5,musredit:[5,8,10],mupp:6,plotter:6,script:6,summari:6,musrroot:7,extens:[13,7],open:7,some:7,concern:7,root:[10,7],inform:7,contain:7,runhead:7,runinfo:7,overview:7,tmusrrunhead:7,concept:7,header:7,write:7,read:[7,11],valid:7,requir:[10,7],detectorinfo:7,sampleenvironmentinfo:7,magneticfieldenvironmentinfo:7,beamlineinfo:7,exhaust:7,tree:7,includ:7,everyth:[10,7],tmusrrunphysicalquant:7,possibl:7,represent:7,gui:8,base:8,introduct:[8,13,12],avail:[8,13],execut:[8,13],configur:[8,13],musrgui:[8,10],musredit_startup:8,xml:[8,13,12],featur:8,musrwiz:8,theori:[8,13],"function":[8,13,12],map:[8,13],fit:[9,8,13,11],info:8,creat:8,musrstep:8,set:[9,10],high:9,speed:9,gpu:[9,13],tesla:9,k40c:9,nvidia:9,driver:9,instal:[9,10],cuda:9,via:[9,10],automak:[],cmake:[9,10],amd:9,card:9,radeon:9,"390x":9,app:9,softwar:[9,10],develop:9,kit:9,sdk:9,enabl:[9,13],opencl:[9,13],support:[9,10,13],maco:[9,10],differ:10,platform:10,oper:10,system:10,restrict:10,gnu:10,linux:10,nexu:10,build:10,last:10,step:10,obsol:10,check:10,window:10,cygwin:10,potenti:10,problem:10,mac:10,macport:10,packag:10,from:10,sourc:10,environ:10,variabl:10,fink:10,obsolet:10,tutori:11,singl:[13,11],histogram:[13,11],determin:11,data:[12,11],rang:11,musrt0:[13,11],model:[12,11],view:11,musrview:[13,11],further:11,asymmteri:11,lib:12,meissner:12,profil:12,vortex:12,lattic:12,relat:12,bmw:12,libfitpofb:12,dimension:12,london:12,state:12,isotrop:12,superconductor:12,bulk:12,field:12,distribut:12,mix:12,startup:12,nonloc:12,superconduct:12,screen:12,analyz:12,"\u03b2":12,nmr:[12,13],bnmr:12,libbnmr:12,liblineprofil:12,manual:13,kei:13,shortcut:13,musrft:13,msr2msr:13,dump_head:13,musrfit_startup:13,descript:13,titl:13,fitparamet:13,block:13,command:13,fourier:13,plot:13,statist:13,rrf:13,asymmetri:13,neg:13,muon:13,non:13,without:13,object:13,access:13,technic:13,framework:13,beta:13},envversion:43})
\ No newline at end of file
diff --git a/doc/html/setup-dks.html b/doc/html/setup-dks.html
index 9a47b034..ab6185e9 100644
--- a/doc/html/setup-dks.html
+++ b/doc/html/setup-dks.html
@@ -6,7 +6,7 @@
- Setting up musrfit / DKS: High Speed Fitting with GPU’s — musrfit 1.5.0 documentation
+ Setting up musrfit / DKS: High Speed Fitting with GPU’s — musrfit 1.5.1 documentation
@@ -14,7 +14,7 @@
-
+
@@ -41,7 +41,7 @@
A small XML library that can be used to read and write XML and XML-like data files. Required version ≥ 2.2 (see minixml).
+
A small XML library that can be used to read and write XML and XML-like data files. Required version ≥ 2.2 (see minixml).
+Currently the MXML support in NeXus is broken and hence you will not need to install minixml for the time being.
NeXus
@@ -177,24 +178,21 @@ the source code from the corresponding website, or to clone the git repo. If you
Only if musrfit should support reading/writing data files in the NeXus format the further required
software has to be set up. The required libraries and header files could either be available through the user’s
-GNU/Linux distribution or if this is not the case, the packages can be installed from the source code. The necessary
-packages to build NeXus are MXML, (HDF4), and HDF5. This means, for a rpm-package based distro try something like:
+GNU/Linux distribution or if this is not the case, the packages can be installed from the source code. In principle
+NeXus should support MXML, HDF4, and HDF5. At the time of this writing, the MXML support in the
+NeXus project is broken, and HDF4 is outdated on most platforms, hence currently only the HDF5 binding is
+used. Hence, the necessary package to build NeXus is HDF5. This means, for a rpm-package based distro try something like:
-
$ yum install mxml-devel hdf-devel hdf5-devel
+
$ yum install hdf5-devel
and on a deb-package based distro try something like:
HDF4 support within NeXus will be dropped by musrfit in the near future. If you not urgently need
-to read old ISISNeXus files, you safely can drop it.
-
Only NeXus Version ≥ 4.4 is support!
Even though there might exist binary packages for the NeXus library, it is best to build and
install it directly from the source code which can be found here.
@@ -208,10 +206,7 @@ $ git clone https://github.com/nexusformat/code.git
$ # next we will build NeXus out-of-source
$ mkdir build
$ cd build
-$ # The next line only if HDF4 support is needed
-$ cmake -DENABLE_HDF5=1 -DENABLE_HDF4=1 -DENABLE_MXML=1 ../code
-$ # The next line if HDF4 support is NOT needed
-$ cmake -DENABLE_HDF5=1 -DENABLE_MXML=1 ../code
+$ cmake -DENABLE_HDF5=1 -DENABLE_HDF4=0 -DENABLE_MXML=0 ../code
$ cmake --build ./ --clean-first
$ # make install needs either to be carried out as root or sudo depending on your linux flavour.
$ sudo make install
@@ -500,10 +495,7 @@ the later handling will be easier if a symbolic link to these files is created n
to be set up. Under Cygwin of all the required libraries only HDF5 is available. The packages hdf5 and
libhdf5-devel can be installed through the Cygwin setup. One should also make sure that bison, flex
and a package containing /usr/lib/librpc.a (e.g.sunrpc=4.0-3, but notsunrpc=4.0-4) are installed.
-
All other libraries have to be built from the sources. The following lines will track the installation of JPEG6b,
-MXML2.9, HDF4.2.7-patch1, and NeXus4.3.2. The version numbers and source-code locations might of
-course change with time but should be easily adjustable.
-
OnlyNeXus version ≥ 4.4 is support!
+
Only NeXus Version ≥ 4.4 is support!
$ cd
$ mkdir nexus
$ cd nexus
@@ -513,18 +505,6 @@ $ ./configure --prefix=/usr/local --enable-static
$ make
$ make install
$ cd ..
-$ curl www.msweet.org/files/project3/mxml-2.9.tar.gz -G | tar xz
-$ cd mxml-2.9
-$ ./configure --prefix=/usr/local --enable-static
-$ make
-$ make install
-$ cd ..
-$ curl http://www.hdfgroup.org/ftp/HDF/HDF_Current/src/hdf-4.2.7-patch1.tar.gz -G | tar xz
-$ cd hdf-4.2.7-patch1
-$ ./configure --prefix=/usr/local --enable-static --disable-fortran --with-jpeg=/usr/local
-$ make
-$ make install
-$ cd ..
$ # create a directory for the NeXus source code
$ mkdir nexus
$ cd nexus
@@ -533,7 +513,7 @@ $ git clone https://github.com/nexusformat/code.git
$ # next we will build NeXus out-of-source
$ mkdir build
$ cd build
-$ cmake -DENABLE_HDF5=1 -DENABLE_HDF4=1 -DENABLE_MXML=1 ../code
+$ cmake -DENABLE_HDF5=1 -DENABLE_HDF4=0 -DENABLE_MXML=0 ../code
$ make
$ make install
@@ -770,20 +750,12 @@ please change over to musredit
Only if musrfit should support reading data files in the NeXus format the further required packages are set up:
-
$ sudo port -v install hdf4 hdf5
+
$ sudo port -v install hdf5
-
Unfortunately, the minixml and NeXus libraries have to be compiled and installed directly from the source code.
-Given the respective version numbers of 2.9 and 4.4.2 (which are subject to change with time.
-Only NeXus Version ≥ 4.4 is support!) this can be achieved for example by:
-
$ # get and instal Mini-XML
-$ cd$HOME/Applications
-$ git clone https://github.com/michaelrsweet/mxml.git
-$ cd mxml
-$ ./configure --prefix=/usr/local
-$ make
-$ sudo make install
-$ # get and install NeXus
+
Only NeXus Version ≥ 4.4 is support!
+
To get things compiled do:
+
$ # get and install NeXus
$ cd$HOME/Applications
$ # get the source code from the master repository
$ git clone https://github.com/nexusformat/code.git nexus/code
@@ -791,7 +763,7 @@ $ # next we will build NeXus out-of-source
$ cd nexus
$ mkdir build
$ cd build
-$ cmake -DENABLE_HDF5=1 -DENABLE_HDF4=1 -DENABLE_MXML=1 ../code
+$ cmake -DENABLE_HDF5=1 -DENABLE_HDF4=0 -DENABLE_MXML=0 ../code
$ make
$ sudo make install
@@ -956,24 +928,17 @@ packages can be installed through Fink (check for the most recent versions):
libjpeg hdf hdf5-cpp11 hdf5-cpp11-shlibs
-
Unfortunately, the minixml and NeXus libraries have to be compiled and installed directly from
-the source code. Given the respective version numbers of 2.9 and 4.3.2 (which are subject to change with time)
+
Unfortunately, the NeXus libraries have to be compiled and installed directly from
+the source code. Given the respective version number 4.4 (which are subject to change with time)
this can be achieved for example by:
-
$ # first build Mini-XML
-$ cd$HOME/Applications
-$ git clone https://github.com/michaelrsweet/mxml.git
-$ cd mxml
-$ ./configure --prefix=/usr/local
-$ make
-$ sudo make install
-$ # second build NeXus
+
These parameters are used to correct the asymmetry for different detector efficiencies, solid angles and initial asymmetries. They are defined as \(\alpha = N_{0,b}/N_{0,f}\) and \(\beta = A_{0,b}/A_{0,f}\). If the parameters are not specified in the RUN block, for each one the value of 1 is assumed (for fittype 5 alpha is estimated from the ration of sum of Bp+Bm and Fp+Fm). Example for alpha with fit parameter number 1:
+
These parameters are used to correct the asymmetry for different detector efficiencies, solid angles and initial asymmetries. They are defined as \(\alpha = N_{0,b}/N_{0,f}\) and \(\beta = A_{0,b}/A_{0,f}\). If the parameters are not specified in the RUN block, for each one the value of 1 is assumed (for fittype 5, alpha is estimated from the ratio of \(\sum_i \left( N_{\mathrm{bp}}(i)+N_{\mathrm{bm}}(i) \right)\) and \(\sum_i \left( N_{\mathrm{fp}}(i)+N_{\mathrm{fm}}(i) \right)\)). Example for alpha with fit parameter number 1:
alpha 1
@@ -1880,11 +1880,11 @@ the single histogram RRF fit apply: if you not urgently need it: do not
For a beta-NMR asymmetry fit (fit type 5) four histograms are needed, two for positive and two for negative helicities. These are given by the forward and backward keywords
+
Four histograms are needed for a beta-NMR asymmetry fit (fit type 5), two for positive helecity and two for negative. These are given by the forward and backward keywords
in the RUN block. Additionally, the parameters alpha and beta which relate the detector
efficiencies, solid angles and initial asymmetries of the two detectors can be supplied. The constant background for the two histograms is either given by
background-determined intervals or specified through backgr.fix in the RUN-block.
-
The experimental asymmetry \(a(k)\) then is calculated from the four histograms:
+
The experimental asymmetry \(a(k)\) is then calculated from the four histograms: