From 87f706dfaaa603670448110758ac66d4786314ea Mon Sep 17 00:00:00 2001 From: Andreas Suter Date: Thu, 10 Jan 2019 10:17:24 +0100 Subject: [PATCH 1/5] CPack stub to generate RPM, DEB, etc Added the first necessary files allowing to generate all kind of packages for the future. Currently not much testing is present. --- CMakeLists.txt | 16 ++++++ cmake/CPackOptions.cmake.in | 33 ++++++++++++ cmake/musrfit-root6.spec.in | 101 ++++++++++++++++++++++++++++++++++++ cmake/welcome.txt | 1 + 4 files changed, 151 insertions(+) create mode 100644 cmake/CPackOptions.cmake.in create mode 100644 cmake/musrfit-root6.spec.in create mode 100644 cmake/welcome.txt diff --git a/CMakeLists.txt b/CMakeLists.txt index 43149c13..a16e7959 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -315,4 +315,20 @@ message("") message("-------------------------------------------------------------------------") message("") +#--- cpack specific info ...................................................... +file(TO_NATIVE_PATH ${PROJECT_SOURCE_DIR} PROJECT_SOURCE_DIR_NATIVE) +file(TO_NATIVE_PATH ${PROJECT_BINARY_DIR} PROJECT_BINARY_DIR_NATIVE) +string(REPLACE "\\" "\\\\" PROJECT_SOURCE_DIR_NATIVE_D ${PROJECT_SOURCE_DIR_NATIVE}) +string(REPLACE "\\" "\\\\" PROJECT_BINARY_DIR_NATIVE_D ${PROJECT_BINARY_DIR_NATIVE}) + +configure_file(${CMAKE_SOURCE_DIR}/cmake/CPackOptions.cmake.in ${CMAKE_CURRENT_BINARY_DIR}/CPackOptions.cmake @ONLY) +set (CPACK_PROJECT_CONFIG_FILE "${PROJECT_BINARY_DIR}/CPackOptions.cmake") +#set (CPACK_GENERATOR TGZ) # not use ZIP on UNIX as problem with symlinks +#set (CPACK_SOURCE_GENERATOR TGZ) # not use ZIP on UNIX as problem with symlinks +if (UNIX) +# set (CPACK_GENERATOR ${CPACK_GENERATOR};RPM) +endif () +# Include of CPack must always be last +include(CPack) + #--- end ---------------------------------------------------------------------- diff --git a/cmake/CPackOptions.cmake.in b/cmake/CPackOptions.cmake.in new file mode 100644 index 00000000..4a7c278b --- /dev/null +++ b/cmake/CPackOptions.cmake.in @@ -0,0 +1,33 @@ +# musrfit - cpack + +include(CPackComponent) + +set (CPACK_PACKAGE_NAME "musrfit-root6") +set (CPACK_PACKAGE_VENDOR "Paul Scherrer Institute - LMU - LEM") +set (CPACK_PACKAGE_DIRECTOR "@CMAKE_CURRENT_BINARY_DIR@/pack") +set (CPACK_PACKAGE_VERSION_MAJOR "@PROJECT_VERSION_MAJOR@") +set (CPACK_PACKAGE_VERSION_MINOR "@PROJECT_VERSION_MINOR@") +set (CPACK_PACKAGE_VERSION_PATCH "@PROJECT_VERSION_PATCH@") +set (CPACK_PACKAGE_CONTACT "") +set (CPACK_PACKAGE_DESCRIPTION_FILE "@PROJECT_SOURCE_DIR@/README.md") +set (CPACK_PACKAGE_DESCRIPTION_SUMMARY "musrfit - muSR data analysis package") +set (CPACK_PACKAGE_HOMEPAGE_URL "http://lmu.web.psi.ch/musrfit/user/html/index.html") +set (CPACK_PACKAGE_CHECKSUM "MD5") +set (CPACK_RESOURCE_FILE_LICENSE "@PROJECT_SOURCE_DIR@/COPYING") +set (CPACK_RESOURCE_FILE_README "@PROJECT_SOURCE_DIR@/README.md") +set (CPACK_RESOURCE_FILE_WELCOME "@PROJECT_SOURCE_DIR@/cmake/welcome.txt") + +# we do not have any absolute paths, so do not need DESTDIR +set (CPACK_SET_DESTDIR "OFF") +set (CPACK_PACKAGE_RELOCATABLE "true") + +if (${CPACK_GENERATOR} STREQUAL "RPM") + set (CPACK_RPM_FILE_NAME "RPM-DEFAULT") + set (CPACK_RPM_PACKAGE_RELEASE "1") + set (CPACK_RPM_PACKAGE_LICENSE "@PROJECT_SOURCE_DIR@/COPYING") + set (CPACK_RPM_PACKAGE_VENDOR "Paul Scherrer Institute - LMU - LEM") +endif () + +if (${CPACK_GENERATOR} STREQUAL "DEB") + # to be populated yet +endif () diff --git a/cmake/musrfit-root6.spec.in b/cmake/musrfit-root6.spec.in new file mode 100644 index 00000000..da5f7054 --- /dev/null +++ b/cmake/musrfit-root6.spec.in @@ -0,0 +1,101 @@ +Name: musrfit-root6 +Version: 1.4 +Release: 1%{?dist} +Summary: musrfit - muSR data analysis package + +License: GPLv2 +URL: http://lmu.web.psi.ch/musrfit/user/html/index.html +Source0: https://gitlab.psi.ch/nemu/musrfit/repository/%{name}-%{version}.tar.gz + +BuildRequires: cmake +BuildRequires: libtool +BuildRequires: gcc +BuildRequires: make +BuildRequires: hdf-devel hdf5-devel +BuildRequires: mxml-devel +BuildRequires: fftw3-devel +BuildRequires: boost-devel +BuildRequires: gsl-devel +BuildRequires: libxml2-devel +BuildRequires: root +BuildRequires: root-io-xml +BuildRequires: root-mathmore +BuildRequires: root-minuit2 +BuildRequires: qt5-qtbase-devel qt5-qtsvg-devel qt5-qtwebkit-devel +BuildRequires: nexus +Requires: hdf hdf5 +Requires: mxml +Requires: fftw3 +Requires: gsl +Requires: boost-devel +Requires: libxml2 +Requires: root +Requires: root-io-xml +Requires: root-mathmore +Requires: root-minuit2 +Requires: qt5-qtbase qt5-qtsvg qt5-qtwebkit +Requires: nexus + +%description +This is a data analysis package to analyze time differential muSR and beta-NMR data. Currently it allows the following things: +- setting up most commonly used fitting functions for muSR and beta-NMR +- fitting data, including global fits +- showing the fit results and the residuals +- showing the Fourier transform of the data +- extracting easily the fitting parameters to be used in other programs (gnuplot, qtiplot/origin, ...) +- allows to generate fitting input files for follow-up runs +- allows to generate global fitting input files based on a single run template +- allows to implement more sophisticated user functions (e.g. GL vortex lattice, Meissner screening including low-energy muon stopping profiles) + +Currently supported platforms: +- Linux +- Mac OS X +- Windows - not really, only for the very brave ones + + +%prep +%setup -q -n %{name}-%{version} + + +%build +##æs35 ./autogen.sh +# DOCDIR is needed to be set here. BMWlibs still makes troubles +%cmake -DASlibs=1 -DBMWlbis=1 -Dnexus=1 DOCDIR=$RPM_BUILD_ROOT/usr/share/doc/musrfit +%cmake --build ./ --clean-first -- -j8 +##æs35 %configure --enable-ASlibs --enable-BMWlibs --enable-NeXus DOCDIR=$RPM_BUILD_ROOT/usr/share/doc/musrfit +##æs35 %make_build + + +%install +# INSTALL_ROOT is needed for Qt applications +rm -rf $RPM_BUILD_ROOT +%make_install INSTALL_ROOT=%{buildroot} + +%files +%_prefix/bin/any2many +%_prefix/bin/dump_header +%_prefix/bin/msr2data +%_prefix/bin/msr2msr +%_prefix/bin/mupp +%_prefix/bin/mupp_plot +%_prefix/bin/musredit +%_prefix/bin/musrfit +%_prefix/bin/musrFT +%_prefix/bin/musrRootValidation +%_prefix/bin/musrStep +%_prefix/bin/musrt0 +%_prefix/bin/musrview +%_prefix/bin/musrWiz +%_prefix/bin/write_musrRoot_runHeader +%_prefix/include/* +%_prefix/lib64/* +%license COPYING +%doc %_prefix/share/doc/musrfit + + + +%changelog +* Thu Dec 20 2018 Andreas Suter - 1.4-1 +- adopted to cmake +* Wed Oct 25 2017 Andreas Suter - 1.2-1 +- first spec file for musrfit-root6 diff --git a/cmake/welcome.txt b/cmake/welcome.txt new file mode 100644 index 00000000..c8836b44 --- /dev/null +++ b/cmake/welcome.txt @@ -0,0 +1 @@ +Welcome to the musrfit package From d634fd2ce614133cdaf5b5448bef4ce1cd0e1942 Mon Sep 17 00:00:00 2001 From: Andreas Suter Date: Mon, 14 Jan 2019 11:19:19 +0100 Subject: [PATCH 2/5] CPack/CMake for musrfit more tweaks towards musrfit rpm --- CMakeLists.txt | 2 +- cmake/CPackOptions.cmake.in | 7 ++++++- cmake/ChangeLogRPM | 2 ++ 3 files changed, 9 insertions(+), 2 deletions(-) create mode 100644 cmake/ChangeLogRPM diff --git a/CMakeLists.txt b/CMakeLists.txt index a16e7959..c0bc9da6 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -326,7 +326,7 @@ set (CPACK_PROJECT_CONFIG_FILE "${PROJECT_BINARY_DIR}/CPackOptions.cmake") #set (CPACK_GENERATOR TGZ) # not use ZIP on UNIX as problem with symlinks #set (CPACK_SOURCE_GENERATOR TGZ) # not use ZIP on UNIX as problem with symlinks if (UNIX) -# set (CPACK_GENERATOR ${CPACK_GENERATOR};RPM) + set (CPACK_GENERATOR ${CPACK_GENERATOR};RPM) endif () # Include of CPack must always be last include(CPack) diff --git a/cmake/CPackOptions.cmake.in b/cmake/CPackOptions.cmake.in index 4a7c278b..7654ae58 100644 --- a/cmake/CPackOptions.cmake.in +++ b/cmake/CPackOptions.cmake.in @@ -17,15 +17,20 @@ set (CPACK_RESOURCE_FILE_LICENSE "@PROJECT_SOURCE_DIR@/COPYING") set (CPACK_RESOURCE_FILE_README "@PROJECT_SOURCE_DIR@/README.md") set (CPACK_RESOURCE_FILE_WELCOME "@PROJECT_SOURCE_DIR@/cmake/welcome.txt") +set (CPACK_RPM_EXCLUDE_FROM_AUTO_FILELIST_ADDITION "@CMAKE_INSTALL_PREFIX@;@CMAKE_INSTALL_PREFIX@/bin;@CMAKE_INSTALL_PREFIX@/include;@CMAKE_INSTALL_PREFIX@/share;@CMAKE_INSTALL_PREFIX@/lib64;@CMAKE_INSTALL_PREFIX@/lib;@CMAKE_INSTALL_PREFIX@/pkgconfig") + # we do not have any absolute paths, so do not need DESTDIR set (CPACK_SET_DESTDIR "OFF") set (CPACK_PACKAGE_RELOCATABLE "true") if (${CPACK_GENERATOR} STREQUAL "RPM") + set(CPACK_INSTALL_PREFIX "@CMAKE_INSTALL_PREFIX@") + set(CPACK_PACKAGING_INSTALL_PREFIX "@CMAKE_INSTALL_PREFIX@") set (CPACK_RPM_FILE_NAME "RPM-DEFAULT") set (CPACK_RPM_PACKAGE_RELEASE "1") - set (CPACK_RPM_PACKAGE_LICENSE "@PROJECT_SOURCE_DIR@/COPYING") + set (CPACK_RPM_PACKAGE_LICENSE "GPLv2") set (CPACK_RPM_PACKAGE_VENDOR "Paul Scherrer Institute - LMU - LEM") + set (CPACK_RPM_CHANGELOG_FILE "@PROJECT_SOURCE_DIR@/cmake/ChangeLogRPM") endif () if (${CPACK_GENERATOR} STREQUAL "DEB") diff --git a/cmake/ChangeLogRPM b/cmake/ChangeLogRPM new file mode 100644 index 00000000..eb75b666 --- /dev/null +++ b/cmake/ChangeLogRPM @@ -0,0 +1,2 @@ +* Mon Jan 14 2019 Andreas Suter - 1.4.0-1 +- first cpack/cmake version From c7e35dfdff845deb829c2e26d5930ac8462773ed Mon Sep 17 00:00:00 2001 From: Andreas Suter Date: Fri, 18 Jan 2019 10:35:26 +0100 Subject: [PATCH 3/5] Make so far undocumented functions ifgk and ifll public and at the same time properly normalize them. --- src/classes/PTheory.cpp | 8 ++++---- src/include/PTheory.h | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/classes/PTheory.cpp b/src/classes/PTheory.cpp index cfa21852..49b1bc18 100644 --- a/src/classes/PTheory.cpp +++ b/src/classes/PTheory.cpp @@ -2115,14 +2115,14 @@ Double_t PTheory::InternalFieldGK(register Double_t t, const PDoubleVector& para tt = t-val[5]; Double_t result = 0.0; - Double_t nu_t = val[1]*tt; + Double_t w_t = TWO_PI*val[1]*tt; Double_t rateLF = TMath::Power(val[3]*tt, val[4]); Double_t rate2 = val[2]*val[2]*tt*tt; // (sigma t)^2 if (val[1] < 0.01) { // internal field frequency is approaching zero result = (1.0-val[0])*TMath::Exp(-rateLF) + val[0]*(1.0-rate2)*TMath::Exp(-0.5*rate2); } else { - result = (1.0-val[0])*TMath::Exp(-rateLF) + val[0]*(TMath::Cos(nu_t)-val[2]*val[2]*tt/val[1]*TMath::Sin(nu_t))*TMath::Exp(-0.5*rate2); + result = (1.0-val[0])*TMath::Exp(-rateLF) + val[0]*(TMath::Cos(w_t)-val[2]*val[2]*tt/(TWO_PI*val[1])*TMath::Sin(w_t))*TMath::Exp(-0.5*rate2); } return result; @@ -2167,14 +2167,14 @@ Double_t PTheory::InternalFieldLL(register Double_t t, const PDoubleVector& para tt = t-val[5]; Double_t result = 0.0; - Double_t nu_t = val[1]*tt; + Double_t w_t = TWO_PI*val[1]*tt; Double_t rateLF = TMath::Power(val[3]*tt, val[4]); Double_t a_t = val[2]*tt; // a t if (val[1] < 0.01) { // internal field frequency is approaching zero result = (1.0-val[0])*TMath::Exp(-rateLF) + val[0]*(1.0-a_t)*TMath::Exp(-a_t); } else { - result = (1.0-val[0])*TMath::Exp(-rateLF) + val[0]*(TMath::Cos(nu_t)-val[3]/val[1]*TMath::Sin(nu_t))*TMath::Exp(-a_t); + result = (1.0-val[0])*TMath::Exp(-rateLF) + val[0]*(TMath::Cos(w_t)-val[3]/(TWO_PI*val[1])*TMath::Sin(w_t))*TMath::Exp(-a_t); } return result; diff --git a/src/include/PTheory.h b/src/include/PTheory.h index 528d7f09..085f20d7 100644 --- a/src/include/PTheory.h +++ b/src/include/PTheory.h @@ -196,7 +196,7 @@ static PTheoDataBase fgTheoDataBase[THEORY_MAX] = { "internFldGK", "ifgk", "(fraction frequency Trate Lrate beta)", "(fraction frequency Trate Lrate beta tshift)"}, {THEORY_INTERNAL_FIELD_LARKIN, THEORY_PARAM_INTERNAL_FIELD_LARKIN, false, - "internFldLL", "ifll", "(fraction frequency Trate Lrate)", "(fraction frequency Trate Lrate tshift)"}, + "internFldLL", "ifll", "(fraction frequency Trate Lrate beta)", "(fraction frequency Trate Lrate beta tshift)"}, {THEORY_BESSEL, THEORY_PARAM_BESSEL, false, "bessel", "b", "(phase frequency)", "(phase frequency tshift)"}, From 75a2a9b3f3cf1ecbc49840964ef65194d49b2932 Mon Sep 17 00:00:00 2001 From: Andreas Suter Date: Mon, 21 Jan 2019 13:35:13 +0100 Subject: [PATCH 4/5] update version information. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index c0bc9da6..f6b17c1a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,7 +1,7 @@ # - musrfit cmake_minimum_required(VERSION 3.6) -project(musrfit VERSION 1.4.0 LANGUAGES C CXX) +project(musrfit VERSION 1.4.1 LANGUAGES C CXX) #--- musrfit specific options ------------------------------------------------- option(nexus "build optional NeXus support. Needed for ISIS" OFF) From 32220f754d44796d39e2e441da1edfe04e7f8e64 Mon Sep 17 00:00:00 2001 From: Andreas Suter Date: Mon, 21 Jan 2019 13:36:15 +0100 Subject: [PATCH 5/5] Docu update Added information about the not yet documented functions for internal fields with Gaussian/Lorentzian broadening. --- doc/html/_sources/user-manual.txt | 32 +++++++---- doc/html/acknowledgement.html | 12 ++--- doc/html/any2many.html | 12 ++--- doc/html/bugtracking.html | 12 ++--- doc/html/cite.html | 12 ++--- doc/html/genindex.html | 12 ++--- doc/html/index.html | 14 ++--- doc/html/msr2data.html | 12 ++--- doc/html/mupp.html | 12 ++--- doc/html/musr-root.html | 12 ++--- doc/html/musredit.html | 12 ++--- doc/html/objects.inv | Bin 1904 -> 1908 bytes doc/html/search.html | 12 ++--- doc/html/searchindex.js | 2 +- doc/html/setup-dks.html | 12 ++--- doc/html/setup-standard.html | 12 ++--- doc/html/tutorial.html | 14 ++--- doc/html/user-libs.html | 16 +++--- doc/html/user-manual.html | 86 +++++++++++++++++++++--------- 19 files changed, 176 insertions(+), 132 deletions(-) diff --git a/doc/html/_sources/user-manual.txt b/doc/html/_sources/user-manual.txt index 3ebcd7be..2f675eeb 100644 --- a/doc/html/_sources/user-manual.txt +++ b/doc/html/_sources/user-manual.txt @@ -656,33 +656,39 @@ spinGlass spg :math:`\lambda (\mu \mathrm{s}^{-1})`, \ :math:`\fra rdAnisoHf rahf :math:`\nu` (MHz), \ :math:`\frac{1}{6} (1-\nu t/2) \exp(-\nu t/2) +` [#n7]_ :math:`\lambda (\mu \mathrm{s}^{-1})` :math:`+ \frac{1}{3} (1 - \nu t/4) \exp(-\frac{\nu t + 2.44949 \lambda t}{4})` TFieldCos tf :math:`\varphi (^\circ), \nu` (MHz) :math:`\cos\left(2\pi\nu t + \frac{\pi \varphi}{180}\right)` -internFld if :math:`\alpha (1), \varphi (^\circ)`, \ :math:`\alpha \cos\left(2\pi\nu t + \frac{\pi \varphi}{180}\right) \exp(\lambda_{\rm T}t) +` +internFld if :math:`\alpha (1), \varphi (^\circ)`, \ :math:`\alpha \cos\left(2\pi\nu t + \frac{\pi \varphi}{180}\right) \exp(-\lambda_{\rm T}t) +` :math:`\nu` (MHz), \ :math:`+ (1-\alpha) \exp(-\lambda_{\rm L} t)` :math:`\lambda_{\rm T} (\mu \mathrm{s}^{-1})`,\ :math:`\lambda_{\rm L} (\mu \mathrm{s}^{-1})` Bessel b :math:`\varphi (^\circ), \nu` (MHz) :math:`j_0\left(2\pi\nu t + \frac{\pi \varphi}{180}\right)` -internbsl ib :math:`\alpha (1), \varphi (^\circ)`, \ :math:`\alpha j_0\left(2\pi\nu t + \frac{\pi \varphi}{180}\right) \exp(\lambda_{\rm T}t) +` +internbsl ib :math:`\alpha (1), \varphi (^\circ)`, \ :math:`\alpha j_0\left(2\pi\nu t + \frac{\pi \varphi}{180}\right) \exp(-\lambda_{\rm T}t) +` :math:`\nu` (MHz), \ :math:`+ (1-\alpha) \exp(-\lambda_{\rm L} t)` :math:`\lambda_{\rm T} (\mu \mathrm{s}^{-1})`,\ :math:`\lambda_{\rm L} (\mu \mathrm{s}^{-1})` +internFldGK ifgk :math:`\alpha (1), \nu` (MHz), \ :math:`\alpha\left[\cos(2\pi\nu t)-\frac{\sigma^2 t}{2\pi\nu}\sin(2\pi\nu t)\right]\exp(-\sigma^2 t^2/2)+` + :math:`\sigma (\mu \mathrm{s}^{-1})`, \ :math:`+ (1-\alpha) \exp(-(\lambda t)^\beta)` [#n8]_ + :math:`\lambda (\mu\mathrm{s}^{-1}), \beta (1)` +internFldLL ifll :math:`\alpha (1), \nu` (MHz), \ :math:`\alpha\left[\cos(2\pi\nu t)-\frac{a}{2\pi\nu}\sin(2\pi\nu t)\right]\exp(-a t)+` + :math:`a (\mu \mathrm{s}^{-1})`, \ :math:`+ (1-\alpha) \exp(-(\lambda t)^\beta)` [#n9]_ + :math:`\lambda (\mu\mathrm{s}^{-1}), \beta (1)` abragam ab :math:`\sigma (\mu \mathrm{s}^{-1})`, \ :math:`\exp\left[-\frac{\sigma^2}{\gamma^2} (e^{-\gamma t} - 1 + \gamma t)\right]` :math:`\gamma` (MHz) -skewedGss skg :math:`\varphi (^\circ), \nu` (MHz) \ :math:`\frac{\sigma_{-}}{\sigma_{+}+\sigma_{-}} \exp\left[\frac{\sigma_{-}^2 t^2}{2}\right] \left\{\cos(2\pi\nu t + \frac{\pi\varphi}{180}) + \sin(2\pi\nu t + \frac{\pi\varphi}{180}) \mathrm{Erfi}\left(\frac{\sigma_{-} t}{\sqrt{2}}\right)\right\} +` [#n8]_ +skewedGss skg :math:`\varphi (^\circ), \nu` (MHz) \ :math:`\frac{\sigma_{-}}{\sigma_{+}+\sigma_{-}} \exp\left[\frac{\sigma_{-}^2 t^2}{2}\right] \left\{\cos(2\pi\nu t + \frac{\pi\varphi}{180}) + \sin(2\pi\nu t + \frac{\pi\varphi}{180}) \mathrm{Erfi}\left(\frac{\sigma_{-} t}{\sqrt{2}}\right)\right\} +` [#n10]_ :math:`\sigma_{+} (\mu \mathrm{s}^{-1})`, \ :math:`+ \frac{\sigma_{+}}{\sigma_{+}+\sigma_{-}} \exp\left[\frac{\sigma_{+}^2 t^2}{2}\right] \left\{\cos(2\pi\nu t + \frac{\pi\varphi}{180}) - \sin(2\pi\nu t + \frac{\pi\varphi}{180}) \mathrm{Erfi}\left(\frac{\sigma_{+} t}{\sqrt{2}}\right)\right\}` :math:`\sigma_{-} (\mu \mathrm{s}^{-1})` -staticNKZF snkzf :math:`\Delta_0 (\mu \mathrm{s}^{-1})`, \ :math:`\frac{1}{3} + \frac{2}{3}\left(\frac{1}{1+R_b^2\Delta_0^2 t^2}\right)^{3/2} \left(1 - \frac{\Delta_0^2 t^2}{1+R_b^2\Delta_0^2 t^2}\right) \exp\left[-\frac{\Delta_0^2 t^2}{2(1+R_b^2\Delta_0^2 t^2)}\right]` [#n9]_ +staticNKZF snkzf :math:`\Delta_0 (\mu \mathrm{s}^{-1})`, \ :math:`\frac{1}{3} + \frac{2}{3}\left(\frac{1}{1+R_b^2\Delta_0^2 t^2}\right)^{3/2} \left(1 - \frac{\Delta_0^2 t^2}{1+R_b^2\Delta_0^2 t^2}\right) \exp\left[-\frac{\Delta_0^2 t^2}{2(1+R_b^2\Delta_0^2 t^2)}\right]` [#n11]_ :math:`R_b = \Delta_{\rm GbG}/\Delta_0 (1)` -staticNKTF snktf :math:`\varphi (^\circ), \nu` (MHz), \ :math:`\sqrt{\frac{1}{1+R_b^2 \Delta_0^2 t^2}} \exp\left[-\frac{\Delta_0^2 t^2}{2(1+R_b^2 \Delta_0^2 t^2)}\right] \cos(2\pi\nu t + \varphi)` see [11] +staticNKTF snktf :math:`\varphi (^\circ), \nu` (MHz), \ :math:`\sqrt{\frac{1}{1+R_b^2 \Delta_0^2 t^2}} \exp\left[-\frac{\Delta_0^2 t^2}{2(1+R_b^2 \Delta_0^2 t^2)}\right] \cos(2\pi\nu t + \varphi)` see [13] :math:`\Delta_0 (\mu \mathrm{s}^{-1})`, \ :math:`R_b = \Delta_{\rm GbG}/\Delta_0 (1)` -dynamicNKZF dnkzf :math:`\Delta_0 (\mu \mathrm{s}^{-1})`, \ :math:`\sqrt{\frac{1}{1+4 R_b^2 \Delta_0^2 \Theta(t)}} \exp\left[-\frac{2\Delta_0^2 \Theta(t)}{1+4 R_b^2 \Delta_0^2 \Theta(t)}\right]`, see [11] +dynamicNKZF dnkzf :math:`\Delta_0 (\mu \mathrm{s}^{-1})`, \ :math:`\sqrt{\frac{1}{1+4 R_b^2 \Delta_0^2 \Theta(t)}} \exp\left[-\frac{2\Delta_0^2 \Theta(t)}{1+4 R_b^2 \Delta_0^2 \Theta(t)}\right]`, see [13] :math:`R_b = \Delta_{\rm GbG}/\Delta_0 (1)`, \ :math:`\Theta(t) = \frac{\exp(-\nu_c t) -1 -\nu_c t}{\nu_c^2}` :math:`\nu_c` (MHz) -dynamicNKTF dnktf :math:`\varphi (^\circ), \nu` (MHz), \ :math:`\sqrt{\frac{1}{1+2 R_b^2 \Delta_0^2 \Theta(t)}} \exp\left[-\frac{\Delta_0^2 \Theta(t)}{1+2 R_b^2 \Delta_0^2 \Theta(t)}\right] \cos(2\pi\nu t + \varphi)`, see [11] +dynamicNKTF dnktf :math:`\varphi (^\circ), \nu` (MHz), \ :math:`\sqrt{\frac{1}{1+2 R_b^2 \Delta_0^2 \Theta(t)}} \exp\left[-\frac{\Delta_0^2 \Theta(t)}{1+2 R_b^2 \Delta_0^2 \Theta(t)}\right] \cos(2\pi\nu t + \varphi)`, see [13] :math:`\Delta_0 (\mu \mathrm{s}^{-1})`, \ :math:`\Theta(t) = \frac{\exp(-\nu_c t) -1 -\nu_c t}{\nu_c^2}` :math:`R_b = \Delta_{\rm GbG}/\Delta_0 (1)`, \ :math:`\nu_c` (MHz) -muMinusExpTF mmsetf :math:`N_0 (1), \tau (\mu \mathrm{s}^{-1})`, \ :math:`N_0 \exp(-t/\tau) \left[ 1 + A \exp(-\lambda t) \cos(2 \pi \nu t + \varphi) \right]` [#n10]_ +muMinusExpTF mmsetf :math:`N_0 (1), \tau (\mu \mathrm{s}^{-1})`, \ :math:`N_0 \exp(-t/\tau) \left[ 1 + A \exp(-\lambda t) \cos(2 \pi \nu t + \varphi) \right]` [#n12]_ :math:`A (1), \lambda (\mu \mathrm{s}^{-1})`, \ :math:`\varphi (^\circ), \nu` (MHz) polynom p :math:`t_0 ([t]), a_0 (1)`, \ :math:`\sum_{k=0}^n a_k (t-t_0)^k` @@ -700,12 +706,16 @@ polynom p :math:`t_0 ([t]), a_0 (1)`, \ :math:`\sum .. [#n5] R.S. Hayano *et al.*, Phys. Rev. B **20**, 850 (1979)., P. Dalmas de Réotier and A. Yaouanc, J. Phys.: Condens. Matter **4**, 4533 (1992). -- **not** DKS ready. .. [#n6] `M.R. Crook `_ and R. Cywinski, J. Phys.: Condens. Matter **9** 1149 (1997). .. [#n7] `R.E. Turner `_ and D.R. Harshman, Phys. Rev. B **34**, 4467 (1986). -.. [#n8] `see memo `_ -- **not** DKS ready. -.. [#n9] `D.R. Noakes `_ and G.M. Kalvius, Phys. Rev. B **56**, 2352 (1997); +.. [#n8] `E.I. Kornilov `_ and V.Yu. Pomjakushin, Physics Letters A **153**, 364, (1991). + In the original work, :math:`\alpha=2/3,\, \lambda=0,\, \beta=1`. If you find values strongly deviating from these values you should question your analysis approach. +.. [#n9] `M.I. Larkin `_ *et al.*, Physica B: Condensed Matter **289-290**, 153 (2000). + In the original work, :math:`\alpha=2/3,\, \lambda=0,\, \beta=1`. If you find values strongly deviating from these values you should question your analysis approach. +.. [#n10] `see memo `_ -- **not** DKS ready. +.. [#n11] `D.R. Noakes `_ and G.M. Kalvius, Phys. Rev. B **56**, 2352 (1997); A. Yaouanc and P. Dalmas de Réotier "Muon Spin Rotation, Relaxation, and Resonance" Oxford Scientific Publication; simplifying the original formulae by eliminating :math:`\Delta_{\rm eff}` via the identity :math:`\Delta_{\rm eff}^2 = (1+R_b^2)\Delta_0`. -.. [#n10] This function is explicit for :math:`\mu^-`! Do not try to use it for :math:`\mu^+`! +.. [#n12] This function is explicit for :math:`\mu^-`! Do not try to use it for :math:`\mu^+`! .. _msr-map-intro: diff --git a/doc/html/acknowledgement.html b/doc/html/acknowledgement.html index 74b21a92..7ec06c40 100644 --- a/doc/html/acknowledgement.html +++ b/doc/html/acknowledgement.html @@ -6,7 +6,7 @@ - Acknowledgements — musrfit 1.4.0 documentation + Acknowledgements — musrfit 1.4.1 documentation @@ -14,7 +14,7 @@ - + @@ -41,7 +41,7 @@
  • previous |
  • -
  • musrfit 1.4.0 documentation »
  • +
  • musrfit 1.4.1 documentation »
  • @@ -108,12 +108,12 @@ extremely competent way to deal with his projects as well as to deal with the ch
  • previous |
  • -
  • musrfit 1.4.0 documentation »
  • +
  • musrfit 1.4.1 documentation »
  • diff --git a/doc/html/any2many.html b/doc/html/any2many.html index b9d5dc88..06d11a23 100644 --- a/doc/html/any2many.html +++ b/doc/html/any2many.html @@ -6,7 +6,7 @@ - any2many - a Universal μSR-file-format converter — musrfit 1.4.0 documentation + any2many - a Universal μSR-file-format converter — musrfit 1.4.1 documentation @@ -14,7 +14,7 @@ - + @@ -41,7 +41,7 @@
  • previous |
  • -
  • musrfit 1.4.0 documentation »
  • +
  • musrfit 1.4.1 documentation »
  • @@ -102,12 +102,12 @@ For a detailed description see previous | -
  • musrfit 1.4.0 documentation »
  • +
  • musrfit 1.4.1 documentation »
  • diff --git a/doc/html/bugtracking.html b/doc/html/bugtracking.html index 9dd1e50d..82e9d3e8 100644 --- a/doc/html/bugtracking.html +++ b/doc/html/bugtracking.html @@ -6,7 +6,7 @@ - Bugtracking — musrfit 1.4.0 documentation + Bugtracking — musrfit 1.4.1 documentation @@ -14,7 +14,7 @@ - + @@ -37,7 +37,7 @@
  • previous |
  • -
  • musrfit 1.4.0 documentation »
  • +
  • musrfit 1.4.1 documentation »
  • @@ -93,12 +93,12 @@ or send an e-mail to A. Suter at PSI.

  • previous |
  • -
  • musrfit 1.4.0 documentation »
  • +
  • musrfit 1.4.1 documentation »
  • diff --git a/doc/html/cite.html b/doc/html/cite.html index f3e6e87c..b07149b4 100644 --- a/doc/html/cite.html +++ b/doc/html/cite.html @@ -6,7 +6,7 @@ - How to Cite musrfit? — musrfit 1.4.0 documentation + How to Cite musrfit? — musrfit 1.4.1 documentation @@ -14,7 +14,7 @@ - + @@ -41,7 +41,7 @@
  • previous |
  • -
  • musrfit 1.4.0 documentation »
  • +
  • musrfit 1.4.1 documentation »
  • @@ -114,12 +114,12 @@
  • previous |
  • -
  • musrfit 1.4.0 documentation »
  • +
  • musrfit 1.4.1 documentation »
  • diff --git a/doc/html/genindex.html b/doc/html/genindex.html index b4b2ff5a..64483ab4 100644 --- a/doc/html/genindex.html +++ b/doc/html/genindex.html @@ -7,7 +7,7 @@ - Index — musrfit 1.4.0 documentation + Index — musrfit 1.4.1 documentation @@ -15,7 +15,7 @@ - + @@ -982,12 +982,12 @@
  • index
  • -
  • musrfit 1.4.0 documentation »
  • +
  • musrfit 1.4.1 documentation »
  • diff --git a/doc/html/index.html b/doc/html/index.html index ae073a28..c0b77df7 100644 --- a/doc/html/index.html +++ b/doc/html/index.html @@ -6,7 +6,7 @@ - Welcome to the musrfit documentation! — musrfit 1.4.0 documentation + Welcome to the musrfit documentation! — musrfit 1.4.1 documentation @@ -14,7 +14,7 @@ - + @@ -37,7 +37,7 @@
  • next |
  • -
  • musrfit 1.4.0 documentation »
  • +
  • musrfit 1.4.1 documentation »
  • @@ -61,7 +61,7 @@
  • Available Executables, Configuration Files and their Basic Usage
  • Description of the msr File Format
  • Fit Types
  • -
  • User Functions
  • +
  • User Functions
  • Technical Description of the musrfit framework
  • @@ -180,12 +180,12 @@
  • next |
  • -
  • musrfit 1.4.0 documentation »
  • +
  • musrfit 1.4.1 documentation »
  • diff --git a/doc/html/msr2data.html b/doc/html/msr2data.html index fb11525d..41aa65a2 100644 --- a/doc/html/msr2data.html +++ b/doc/html/msr2data.html @@ -6,7 +6,7 @@ - msr2data - A Program for Automatically Processing Multiple musrfit msr Files — musrfit 1.4.0 documentation + msr2data - A Program for Automatically Processing Multiple musrfit msr Files — musrfit 1.4.1 documentation @@ -14,7 +14,7 @@ - + @@ -41,7 +41,7 @@
  • previous |
  • -
  • musrfit 1.4.0 documentation »
  • +
  • musrfit 1.4.1 documentation »
  • @@ -434,12 +434,12 @@ fit serves as template for the second and so on. The template field stays empty
  • previous |
  • -
  • musrfit 1.4.0 documentation »
  • +
  • musrfit 1.4.1 documentation »
  • diff --git a/doc/html/mupp.html b/doc/html/mupp.html index dcb675ab..a7cc9003 100644 --- a/doc/html/mupp.html +++ b/doc/html/mupp.html @@ -6,7 +6,7 @@ - mupp - μSR Parameter Plotter — musrfit 1.4.0 documentation + mupp - μSR Parameter Plotter — musrfit 1.4.1 documentation @@ -14,7 +14,7 @@ - + @@ -41,7 +41,7 @@
  • previous |
  • -
  • musrfit 1.4.0 documentation »
  • +
  • musrfit 1.4.1 documentation »
  • @@ -252,12 +252,12 @@ SCRIPT COMMANDS:
  • previous |
  • -
  • musrfit 1.4.0 documentation »
  • +
  • musrfit 1.4.1 documentation »
  • diff --git a/doc/html/musr-root.html b/doc/html/musr-root.html index b6c3b9a9..4dde6afb 100644 --- a/doc/html/musr-root.html +++ b/doc/html/musr-root.html @@ -6,7 +6,7 @@ - MusrRoot - an Extensible Open File Format for μSR — musrfit 1.4.0 documentation + MusrRoot - an Extensible Open File Format for μSR — musrfit 1.4.1 documentation @@ -14,7 +14,7 @@ - + @@ -41,7 +41,7 @@
  • previous |
  • -
  • musrfit 1.4.0 documentation »
  • +
  • musrfit 1.4.1 documentation »
  • @@ -923,12 +923,12 @@ the entry has been added. The last token, previous | -
  • musrfit 1.4.0 documentation »
  • +
  • musrfit 1.4.1 documentation »
  • diff --git a/doc/html/musredit.html b/doc/html/musredit.html index a09cebc2..a0dd9c47 100644 --- a/doc/html/musredit.html +++ b/doc/html/musredit.html @@ -6,7 +6,7 @@ - musredit: the GUI Based Interface to musrfit — musrfit 1.4.0 documentation + musredit: the GUI Based Interface to musrfit — musrfit 1.4.1 documentation @@ -14,7 +14,7 @@ - + @@ -41,7 +41,7 @@
  • previous |
  • -
  • musrfit 1.4.0 documentation »
  • +
  • musrfit 1.4.1 documentation »
  • @@ -550,12 +550,12 @@ the corresponding fit parameter value, except the phases where the step will be
  • previous |
  • -
  • musrfit 1.4.0 documentation »
  • +
  • musrfit 1.4.1 documentation »
  • diff --git a/doc/html/objects.inv b/doc/html/objects.inv index 9b822ea5db96cba593b42fbd88be0b76756bd66a..155ccf9289c62ffb3051194c9628f4b63f7893f0 100644 GIT binary patch delta 1773 zcmV6 zx`qrgNgiR{8AyiZ`r1;JTADK4^iex|sTE4H7$N~=x#b#mo2BUv3RWt|;#*3-{W~12 zL8Kom3x6H2hLXT^u>@LP=ipwRi3kw4jql8Ivx3pXuF@^p2 zQZ92(+$#-->kb+%Y*idoy>R^^_@YJ!IJP4rMS6vJ!2riF=Pcx!21*7ztuuAxY|Z3H z2O>8)Xv3Tr77I8CaDENb=d~aN5?ea~_v=DRfW1`nFPYFh^xWRrppbt*Z-sDxfmON@ z&uszPB{M966rx2ajA?%zy^v6HsW`i(NfzOSFB3+}YlS@?@QmVre017Kc2Ry_D za2YZk9x)x5Z$%Vwjs39?x_~?}EdxbOY0E>Xwp=qrQL{3ZC&qtEQ3=QTmBY!ffP*9% zs>m)F7W+Je@=iOG8FU1hEqzoxJdNKzqVO74MzLe_;n>oi87P6VnC>8}<*GiYAWO<< z#A87T;(%xFG0J4%A{CM>S@=+PxiCh;BJ^zRh6W<)Gx~2y9~m4O1ghq6HsH^SoSa>E z|8Q!Z8hoJ3B(8tagbnJ??juMsjX{IjT2q;L?fkyd4Qa!mwXVK$^6ek`)Ey8vkeprP zV{Vf}CroDSkWKlEl6Z`6%a_WauEkI%x!?9)6^-gSQS5%?r0spA_*W9|h_-Zn+7xNXt0I8dwf~#Wa86D52g0=QLKqb1fyt&j{rU zV{BT^Neu|@JEMMk(C*%i?gr!LtRftK9;&O+ayWRhcbo5mb8HtR#|xf#eKii=V3L-*C?&EWoc6hjjl> z#Xf&p;ifm2?!MwXc8p5I!R}fP=-3k%N<-#edd>z5@%8v!hOX~Da2<+FowSK{%{WI} zf-OB{q%f*hEV}a8sPyrM^kRDFBlM$>&`&->Kl=#%;v@9lN9b2CXI^+odHMX($LZM4 zSQx@&;VBHc;EIzcb)3!_o$}r9pRWQW%&>o+qEi+;&-9!63||YoYMi5E5pgRL-;KZ+ z>gyn-;Tjw^lXmtsfK_{6Hre}f3#~F4(#_uANVh{*9oZA=zV)7<(&3savlpkR0#s8) zkUyvC%7IPQEmw5^9}36v)l)J(^be6Efx9t<(@Y9$PC^#HCaGF*?Gele(KJUN;tziV zxU^^u0|F0EGLWSz6kiW~`}V}+RpT_^oEd%+QZqT@6DTbc$1y1!P``s$sIW@q=FknQ zS2g>_TXhGkim|t$2RNXGnG;Z_8EmrY#6gXRN4Igb!0mAYc7mUWPT__3nCY)_<2SX5 zUxFV%R;6M8;M8n+!f~tF>V%`x(P=4Lz}w=hJ3!V*^DoUQ9qO=^9+`W{MhBzY_a-V5 P{PMx1PZ9YKu%i_9Cy!zw delta 1769 zcmVu34`&INcAK<*$MI#({y3hrw}(w@n$4^Ru#mHD zfsGd>`D#7X3WVj`1RN=m4{AZIBG(8?GNU75e`_U1Uxv)GZCW{6QY(`^0UCeX-7K~u zjVntiLGDD%O=Xf!nGpfa3@qDW^H&HYqgBccQ4tv=NgiR`IY@@(_}WvITADJP^g%y+sTE4H7$O0%+;R=G&C+y-1tZnM;#*3-{W~12 zNu(bu3x6HAc6~M!MsuDo2pNB7Ny7B1g)6R=vb!9kDGry!E({D1MhTPTc4@gZVhZ!` zrCjDKai=tFuG?tzuvKYL^}_Xw;EN+RU|~BlQlwYF3kBGQIcFi)G*B|&=`mMF&eu#n zI1;(eNgM9GuvoxGz~UcK`n(20AhGo#;Cx+33GkO{{v{Kdhn~|r8x()|^HvBO7+9qn z>D&~gT`|KFI6{=m7onBJ+|WpN=;*g=_O5=yW|G6}d=8XoM+ zW1Ngo+(83d~4us5)tl{h)O z>i*%(Iy3k{mq~wo#1a;$Kf8~BVj6=6t+l2y@tXNvWgCtSgVMVC%E`BX=u>wu{xjf7p3qRmn|PEgZe0kI^=%YdlecT*F@Oe$f50phb)t;OBh@EdVpuO zSa=^-06!`4Z(wV&1InAFC~pOhY20uVXpxq2iaD@s{EB~W!bw8D17(XM# z7tYwU?2{S@+;v9%_MqLp9o-Jd71DA)=3MDj6Gt9ydxO6=6cUy~YPDJ&rFU6s_KZ>o zT%Rznu&oY7z9QwXCd)B?x*m0UPs5Fw%wjc#D(WwC|Jb`~KW->sHTI_u#!nmEKtb~= z!zPos?sb2=?WddJt1A1IwJu^m4GGViU)+EqXe;g99WL24#)<-U)m0O?TtbnFU9Wr% zxh*d~`F^NOi)O*u8xJ~Lahbvepn*XDu{YXa8!QwC`#OJ#;ix_83`d>oLI)Fvbr-H< zZ0I}kt62*#esHYkVB6ggsZUZJIubN81c-PLki`bUs% zBnaRdnGZ$9_03))yu8>=VA}!|dsmg&G8aLnx6M)_DHKSqK(_R$n*I&OL~ ze;R-Gu?jc6xpemx-?n2^GHR=9*`Q-hTqynQ%Kk!pJ$y}}>njc1bRu&MZDM_-Q==`x zmL3=>j5-R7-g)#l(WM7S`Y1^+rT0FdAALYS`G9`*0sZ0w`rrfl)oU?*T2w4SEDWI= z@B~Brx`g5>9j9|fr+oLD<*Nht zaCHrvp`CvXXw}@8P3FGbVyjGsbhBPJvhCPa74@XL@3SYEbiAg9pI&BJg!+Rxl2B;co{-wF3W7T` - Search — musrfit 1.4.0 documentation + Search — musrfit 1.4.1 documentation @@ -14,7 +14,7 @@ - + @@ -41,7 +41,7 @@
  • index
  • -
  • musrfit 1.4.0 documentation »
  • +
  • musrfit 1.4.1 documentation »
  • @@ -89,12 +89,12 @@
  • index
  • -
  • musrfit 1.4.0 documentation »
  • +
  • musrfit 1.4.1 documentation »
  • diff --git a/doc/html/searchindex.js b/doc/html/searchindex.js index cda51a40..058381e2 100644 --- a/doc/html/searchindex.js +++ b/doc/html/searchindex.js @@ -1 +1 @@ -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":[10,13,8,3,9,1,0,6,11,5,12,7],"\u03b2":[10,8,3,9,1,0,6,11,5,7],"\u03b4":[10,13,8,3,9,1,0,6,11,5,12,7],"\u03b7":[10,13,8,3,9,1,0,6,11,5,12,7],"\u03b5":[10,13,8,3,9,1,0,6,11,5,12,7],"\u03b3":[10,13,8,3,9,1,0,6,11,5,12,7],"\u03b9":[10,13,8,3,9,1,0,6,11,5,12,7],"\u03ba":[10,13,8,3,9,1,0,6,11,5,12,7],"\u03c7":[10,13,8,3,9,1,0,6,11,5,12,7],"\u03bb":[10,13,8,3,9,1,0,6,11,5,12,7],"\u03bc":[10,13,8,3,9,1,0,6,11,5,4,12,7],"\u03bd":[10,13,8,3,9,1,0,6,11,5,12,7],"\u03bf":[10,13,8,3,9,1,0,6,11,5,12,7],"\u03c9":[10,13,8,3,9,1,0,6,11,5,12,7],"\u03c0":[10,13,8,3,9,1,0,6,11,5,12,7],"\u03c6":[10,13,8,3,9,1,0,6,11,5,12,7],"\u03c8":[10,13,8,3,9,1,0,6,11,5,12,7],"\u03c1":[10,13,8,3,9,1,0,6,11,5,12,7],"\u03c2":[10,13,8,3,9,1,0,6,11,5,12,7],"\u03c3":[10,13,8,3,9,1,0,6,11,5,12,7],"\u03c4":[10,13,8,3,9,1,0,6,11,5,12,7],"\u03b8":[10,13,8,3,9,1,0,6,11,5,12,7],"\u03c5":[10,13,8,3,9,1,0,6,11,5,12,7],"\u03be":[10,13,8,3,9,1,0,6,11,5,12,7],"\u03b6":[10,13,8,3,9,1,0,6,11,5,12,7],bastian:0,wojek:[3,0,5],veri:[10,13,8,0,11,7],much:[13,8,0,6,7],indebt:0,bmw:0,rigor:0,test:[8,0,10],musrfit:0,mani:[10,13,8,0,5,12,7],suggest:[10,0,5],contribut:[13,0,12,11],largest:0,part:[10,13,8,3,0,11,12,7],user:0,manual:[10,8,9,0,11,5],which:[10,13,8,9,0,6,11,5,12,7],make:[10,13,8,9,0,7],access:[10,8,9,0,7],broader:0,audienc:0,thank:0,uldi:0,locan:[3,9,0],work:[10,13,8,9,0,5,12,7],enabl:0,gpu:[3,0],support:[8,0],kind:[0,12,7],calm:0,extrem:0,compet:0,wai:[10,13,8,9,0,6,11,5,12,7],deal:[10,13,9,0,11,12,7],project:0,well:[13,9,0,11,5,12],chao:0,physicist:0,think:0,admir:0,allow:[10,13,8,9,1,6,5,12,7],most:[10,13,9,1,5,12,7],from:[8,9,1,6,5,7],other:[10,13,9,1,6,11,7],detail:[10,13,8,9,1,11,12,7],descript:[10,8,9,1,11,5,7],see:[10,13,8,9,1,6,11,5,12,7],here:[10,13,8,9,1,6,11,5,7],report:2,bug:[8,2],request:[10,13,2,6,11],"new":[10,2,8,13,11,5,7],featur:2,improv:[10,12,2],pleas:[10,2,13,3,11,5,12,7],bitbucket:[10,13,2],repo:[10,9,2],prefer:[8,13,10,2],send:[13,2],mail:2,suter:[3,9,2],psi:[10,2,8,13,9,11,12,7],sinc:[10,13,3,9,11,5,7],quit:[10,13,8,3,7],some:[3,5],effort:3,develop:[3,8],mainten:[3,7],packag:[3,7],you:[10,13,8,3,9,6,7],should:[10,13,8,3,9,6,11,5,12,7],least:[10,13,3,11,5],your:[10,13,8,3,9,5],"public":[3,10,12,13],have:[10,13,8,3,9,11,5,12,7],analyz:[3,9,11,7],data:[10,8,3,9,6,5,7],even:[10,13,3,5,7],better:[3,5,13],cours:[3,5,10,13],properli:[3,9,5,13],refer:[10,13,8,3,9,11,12,7],given:[10,13,8,3,9,6,11,5,12,7],beneath:[3,8],free:[10,13,8,3,12,7],platform:[3,9],independ:[3,12,13],framework:[10,8,3,9,7],analysi:[10,13,3,9,11,5,12,7],physic:[3,9,7],procedia:3,http:[10,13,8,3,9,12,7],doi:3,org:[3,10],phpro:3,high:[3,7],speed:3,version:[10,13,8,3,9,6,12,7],util:[10,13,3,9,7],"case":[10,13,8,3,9,6,11,5,12,7],thi:[10,13,8,3,9,6,11,5,12,7],also:[10,13,8,3,9,6,11,5,12,7],add:[10,13,8,3,9,6,11,5,7],follow:[10,13,8,3,9,6,11,5,12,7],citat:3,adelmann:3,dynam:[3,9],kernel:[3,9],schedul:[3,9],comput:[3,9,10],commun:3,cpc:3,real:[10,13,3,9,11],time:[10,13,8,3,9,6,11,12,7],paramet:3,fit:[3,5,6,7],imag:[3,13,11],reconstruct:3,graphic:3,process:3,unit:[3,13,11,7],conf:[3,9,10],proc:3,jpscp:3,tutori:[],singl:[10,8,9,5,7],histogram:[8,9,7],asymmteri:[],introduct:[],avail:[5,6,7],execut:[],configur:[],basic:[],usag:[],msr:[],type:[],"function":5,technic:[],lib:[10,9],meissner:[],profil:[10,9],vortex:[],lattic:[],relat:[8,10,7],nonloc:[],superconduct:[],screen:10,nmr:[],bnmr:[],set:[8,5,6,7],differ:[8,9,6,5,7],oper:[8,9,6,7],system:[9,7],softwar:7,requir:[],restrict:[],gnu:[],linux:9,window:8,mac:[],maco:[],tesla:[],k40c:[],nvidia:[],amd:[],card:[],radeon:[],"390x":[],opencl:[],musredit:[],gui:6,base:[5,6,7],interfac:[],musrwiz:[],musrstep:[],mupp:5,plotter:[],script:[],summari:[],msr2data:[],program:[],automat:[],multipl:[],option:[],global:[],mode:[],known:[],limit:[],provid:[],musrroot:[],extens:[5,6],open:6,concern:[],root:6,tmusrrunhead:[],concept:[],runinfo:[],detectorinfo:[],sampleenvironmentinfo:[],magneticfieldenvironmentinfo:[],beamlineinfo:[],exhaust:[],tree:[],includ:5,everyth:[],tmusrrunphysicalquant:[],possibl:[5,6],represent:[],index:[5,4,13],search:[10,4,13],page:[10,8,9,11,4,7],origin:[8,5,12,13],written:[13,8,11,5,12,7],implement:[10,13,8,9,5,12,7],purpos:[10,13,5,11],input:[8,13,5,11],same:[10,13,9,6,11,5,12,7],summar:[5,11],result:[13,8,11,5,12,7],either:[10,13,8,6,11,5,12],triumf:[8,13,5,11],column:[13,8,11,5,7],ascii:[13,8,11,5,12],essenti:[8,13,5,7],collect:[10,13,8,6,11,5,12,7],old:[10,5,13],abridg:5,produc:[10,13,5,11],can:[10,13,8,9,6,11,5,12,7],view:[8,5,6],instanc:[10,13,6,5,7],howev:[10,13,9,11,5],thei:[10,13,9,11,5,7],complet:[10,9,11,5,12],backward:[13,5,7],compat:[10,9,5,13],languag:5,name:[10,13,8,9,6,11,5,12,7],longer:5,than:[10,13,8,11,5,7],five:[5,11],six:5,charact:[5,13],order:[10,13,9,5,12,7],establish:5,need:[10,13,8,9,11,5,12,7],ensur:[5,13],correct:[10,13,8,11,5],length:[5,12,7],apart:[10,5,12],numer:[10,5,12],might:[10,13,8,6,5,12,7],principl:[10,5,12],four:5,call:[10,13,8,6,11,5,12,7],suppli:[9,5,12,13],number:[10,13,8,9,6,11,5,12,7],firstrunno:5,lastrunno:5,interv:[5,13],specifi:[10,13,8,11,5,12,7],through:[10,13,11,5,12,7],first:[10,13,8,9,6,11,5,12,7],last:[8,5,7],condit:[5,12],necessari:[10,13,8,11,5,7],runlist:[5,13],where:[10,13,8,9,6,11,5,12,7],combin:[13,8,11,5,7],run0:5,run1:[5,13],run2:[5,13],runn:5,rang:[8,5],step:[8,9,5,7],sequenc:[10,13,5,11],posit:[13,5,11,7],integ:[13,5,7],etc:[10,13,8,9,5,7],runlistfilenam:5,contain:5,extern:[10,13,5,12,7],pass:[8,5,13],below:[10,13,11,5,12,7],all:[10,13,8,9,6,11,5,7],mandatori:[13,5,12,7],right:[10,13,11,5,12,7],after:[10,13,8,9,11,5,7],mean:[10,13,8,9,6,11,5,12,7],becom:[10,5],clear:[8,13,5,7],give:[10,13,11,5,7],exampl:[10,13,8,6,11,5,12,7],"_tf_h13":5,out:[10,13,8,9,6,11,5,7],chang:[10,13,8,9,5],"8472_tf_h13":5,"8473_tf_h13":5,"8474_tf_h13":5,"8470_tf_h13":5,directori:[10,13,8,9,11,5,12,7],put:[8,5,10,13],var1:5,var2:5,var3:5,comment:[10,13,8,9,6,5,7],empti:[8,5,6,13],line:[10,13,8,6,11,5,12,7],determin:[8,5,10],label:[13,8,6,5,12,7],present:[10,13,8,9,6,11,5,12,7],preced:5,mention:[10,13,5,12,7],togeth:[10,13,8,11,5,7],abov:[10,13,8,9,6,11,5,12,7],output:[13,8,6,11,5,12],onli:[10,13,8,9,6,11,5,12,7],newli:[8,5,11],creat:[5,7],did:[10,5],exist:[10,5,13],befor:[10,13,8,9,11,5,12,7],invok:[8,5,6,13],were:[8,13,5,7],alreadi:[10,13,8,9,5],would:[10,13,8,9,6,11,5,12,7],append:[10,5,13],been:[10,13,8,11,5,12,7],header:5,block:[10,8,11,5,12],forc:[5,13],suppress:5,nohead:[8,5],shall:[10,13,8,11,5,12,7],seen:[5,11,7],later:[10,13,5,11],like:[10,13,8,9,6,5,12,7],behavior:[5,13],ani:[10,13,8,9,11,5,7],simpl:[10,13,11,5,12],"default":[10,13,8,9,5],dat:[13,8,6,11,5,12],delet:[5,7],inform:5,both:[10,5,12,13],none:[8,13,5,11],write:5,sole:[5,13],assum:[10,13,8,9,11,5,12,7],nosummari:[8,5],attempt:5,read:5,addit:[10,13,8,9,11,5,12,7],temperatur:[13,6,11,5,7],appli:[10,13,11,5,12,7],magnet:[8,5,12,7],field:[8,9,6,11,5,7],paramlist:5,param:[8,5,6,13],select:[10,13,8,9,6,11,5,7],"export":[10,13,9,11,5],startno:5,endno:5,space:[10,5,12,13],separ:[10,13,8,11,5],outputfilenam:[5,13],instead:[10,13,9,6,5,12],equal:[13,5,11],insensit:5,addition:[10,13,8,11,5],"final":[10,13,11,5,12],templat:[8,13,5,11],perform:[10,13,8,6,11,5,7],mlog:[8,5,13],subsequ:[5,13],chain:[8,5,10],exclam:5,mark:[5,13],without:[10,8,9,6,5,12],keep:[8,13,5,7],mn2:[5,13],done:[10,13,9,6,11,5,12,7],ignor:[5,6,13],titl:[8,5,11,7],illustr:[5,13],few:[10,13,8,5,7],explan:[5,13],oabc:5,"8400_tf_h13":5,"8460_tf_h13":5,abc:5,about:[10,13,11,5,7],"_zf":5,def:5,"8472_zf":[8,5],"8500_zf":5,"8502_zf":5,"8503_zf":5,"8504_zf":5,"8507_zf":5,oghi:5,ouput:5,ghi:5,take:[10,13,11,5,12],"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:[10,13,8,9,11,5,12,7],anoth:[13,8,6,5,7],each:[10,13,6,11,5,12,7],defin:[10,13,8,6,11,5,12,7],common:[10,5,13],specif:[10,13,8,11,5,12,7],when:[10,13,8,11,5,12,7],obtain:[5,12,7],valid:5,conjunct:[10,5,12,13],invoc:[5,13],state:[5,11],idea:[13,5,11,7],basi:5,identifi:[5,13],tag:[10,13,8,9,6,11,5,12],current:[10,13,8,9,6,5,12,7],"0xu":5,digit:[5,13],lead:[13,8,5,12,7],zero:[13,8,11,5,7],end:[10,13,8,6,11,5,7],alpha0123:5,alpha00123456:5,fitparamet:[8,5,11],exemplari:[5,13],"8472_exampl":5,could:[10,13,8,9,6,5,12],therefor:[10,13,11,5,12],look:[10,13,8,9,6,5,12,7],valu:[10,13,8,9,11,5,7],pos_error:[13,5,11],boundari:[13,8,11,5,12],phase:[13,8,11,5,12],asy8472:5,rate8472:5,treat:[10,5],wherea:[8,5,13],normal:[10,13,5,11],within:[10,13,8,6,11,5,12,7],appear:[5,13],explicitli:[8,5,13],theori:5,those:5,met:5,"try":[10,5,13],substitut:[10,13,5,11],them:[13,8,11,5,12,7],map:[5,7],accordingli:[10,5,6,11],"_exampl":5,global_exampl:5,alwai:[13,5,12,7],start:[10,13,8,9,6,11,5,7],asy8471:5,rate8471:5,asy8470:5,rate8470:5,show:[13,8,6,11,5,7],reorgan:5,begin:[10,13,5,7],copi:[8,5,10,13],found:[10,13,8,9,11,5,12,7],dure:[10,13,6,5,12],affect:5,occurr:[10,5],awar:[10,5,13],fact:[10,5],propag:5,model:[10,5],usual:[5,12],store:[10,8,5,12,7],reach:[5,13],goal:[5,13],obei:[5,13],certain:[5,12],rule:[8,13,5,7],match:[5,13],accord:[10,13,8,11,5],achiev:[10,5,11],easili:[8,9,5,10],shown:[13,8,6,11,5,7],globalfit:5,relev:[13,8,11,5,7],pre:[8,5],afterward:[10,13,9,6,5,12,7],special:[10,13,5,7],replac:[10,9,5,13],review:5,activ:[8,5,10,12],choos:[10,13,8,11,5,12],keyword:[5,13],onerunfit_exampl:5,onerunfit:5,everi:[10,5,6,13],similar:[10,5],explain:[10,13,8,9,11,5,12,7],moment:[10,5,12,7],peopl:[10,5,7],cannot:[5,12,13],behav:[5,12],integr:[10,5,12],filenam:[13,5,7],rightmost:5,highest:[10,5],treatabl:5,statist:[8,5,11],itself:[5,11],more:[10,13,8,9,6,11,5,7],creativ:5,care:[10,5,13],addrun:[5,13],statement:[5,13],simpli:[10,5,13],probabl:[10,5,7],what:[10,13,9,11,5,12],two:[10,13,8,11,5,12,7],success:[13,5,11,7],encount:5,actual:[10,5,12,13],measur:[13,8,6,11,5,12,7],introduc:[13,5,11,7],reason:[10,13,9,11,5],shape:[5,12,13],design:[10,5],especi:[10,13,9,5,12,7],manipul:[8,5,13],front:[8,5,11,7],offer:[13,5,11],almost:[8,5,13],self:[8,5],explanatori:[8,5],depict:[5,13],under:[10,13,8,9,6,5,7],stai:5,enter:[8,9,5,10],otherwis:[10,9,5,13],serv:[13,5,11],second:[10,13,8,11,5,12],noth:[8,13,5,7],correspond:[10,13,8,6,11,5,7],littl:[8,6,13],helper:[8,10,6,7],quickli:[9,6],plot:[8,11,6,7],handl:[10,13,8,6,12,7],heavili:[6,12],inspir:6,via:[8,6,7],command:[10,8,9,6,11,12],directli:[10,13,8,6,7],typic:[10,13,8,9,6],load:[6,12],dialog:[8,6],tri:[10,6,13],fly:[6,11],drag:[6,11],over:[10,6,13],axi:[13,6,11,12,7],wish:[6,13],click:[8,6,13],analog:6,remov:[6,13],often:[8,10,6,13],compar:[10,9,6,13],trend:6,hold:[13,6,7],energi:[6,12,7],scan:[6,13],now:[10,13,9,6,11],interest:[10,6,13],ditto:6,less:[10,6,13],error:[10,13,8,9,6,11,12,7],prone:[8,9,6],quicker:[6,13],button:[8,13,6,11],mupp_plot:6,applic:[10,13,8,9,6,12],refresh:6,reload:[8,6],beamtim:6,grow:6,task:6,mous:[6,13],gambl:6,futur:[8,10,6],plane:6,help:[10,13,8,9,6],cmd:[10,6],manner:[10,6],updat:[10,13,9,6,11],web:[10,13,8,6,7],interact:[13,6,12,11],figur:[13,6,7],loadpath:6,dir:6,path:[10,13,8,9,6,11,7],bash:[10,6],variabl:6,home:[10,13,8,9,6,12,7],accept:[8,6,13],coll:6,selectal:6,carri:[10,6,13],ybco:6,"40nm":6,t5k:6,fc150mt:6,escan:6,addx:6,addi:6,savepath:6,save:[10,13,8,6,11,12,7],place:[10,13,6,11],macro:6,fln:[6,13],txt:[10,6],t30k:6,t60k:6,t120k:6,fieldvsenergi:6,pdf:[6,13],"true":[13,6,12,7],best:[10,13,6,12,7],ever:[6,7],thie:6,labl:6,until:[13,11,7],bulk:7,instrument:[8,13,7],bin:[10,13,8,11,7],fix:[8,13,11,7],binari:[10,7],rather:[8,13,10,7],stringent:7,lem:[13,12,7],cern:[10,13,7],tightli:7,tailor:7,situat:[10,13,7],unsatisfactorili:7,henc:[10,13,9,11,7],decid:[10,13,7],move:[13,11,7],forward:[13,9,11,7],acquisit:7,mida:7,respons:[13,9,7],build:[9,7],decai:[13,11,7],easi:[8,7],object:[10,7],th1f:7,orient:[12,7],mine:7,frame:[13,9,7],tfile:7,eas:[10,13,7],understand:[13,7],upcom:[10,7],definit:[13,11,7],thing:[10,13,8,9,7],check:[8,9,7],guid:[13,9,7],organ:[8,13,7],similarli:[13,7],browser:7,inspect:7,tbrowser:7,deriv:[13,7],tobject:7,small:[10,13,8,9,12,7],subset:[13,7],tfolder:7,top:[10,7],level:[13,7],tobjarrai:7,tobjstr:7,content:[10,13,7],form:[10,13,9,11,12,7],box:[8,9,7],entri:[13,7],sketch:[13,7],histo:[10,13,8,11,7],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":[13,12,7],folder:[10,7],next:[10,13,8,9,12,7],section:[10,13,7],slow:7,control:[13,9,7],sampl:[9,11,12,7],versu:7,again:[10,13,8,9,7],meta:7,minim:[10,13,11,12,7],bracket:7,item:[13,7],detector:[13,8,11,12,7],environ:[8,7],beamlin:[8,13,11,7],elabor:[9,7],word:7,sub:[10,13,11,7],intern:[8,13,7],tstring:7,git:[10,9,13,7],url:7,xsd:7,wrote:7,nemu_analyz:7,deltat_tdc_gps_4295:7,int_t:[13,7],iso:7,date:[13,11,7],stop:7,durat:7,sec:[13,7],laboratori:7,muon:[10,8,11,12,7],beam:7,momentum:[11,12,7],mev:7,speci:7,neg:[8,11,7],sourc:[9,7],target:7,low:[13,12,7],setup:[10,9,13,7],cf1:7,wxy:7,resolut:[12,7],redgreen:[13,7],offset:[13,7],tintvector:7,except:[8,13,10,7],shortli:[13,7],discuss:[8,9,13,7],experi:[13,7],stimuli:7,electr:7,off:[10,13,7],doubl:[13,7],distinguish:7,easier:[10,7],let:7,sai:7,red:[10,13,9,11,7],green:[13,11,7],browsabl:7,string:[8,13,10,7],tobjstringv:7,quantiti:7,repres:[13,11,7],properti:[13,7],estim:[8,13,12,7],demand:[13,7],depend:[10,13,8,9,11,12,7],musrrootv:7,mock:7,print:[8,13,7],notic:[8,13,7],find:[8,9,10,7],encod:[10,13,8,12,7],price:7,pai:7,shade:7,"import":[13,7],approach:[10,13,7],standard:[10,9,13,7],"abstract":[13,7],text:[8,13,11,7],though:[8,10,7],clean:[10,9,7],lot:[13,7],"2nd":7,slightli:[8,9,13,7],advantag:[8,13,10,7],maintain:7,expand:7,classifi:7,group:[8,13,10,7],previou:[13,7],"float":7,point:[10,13,8,11,12,7],double_t:[13,7],tstringvector:7,tdoublevector:7,themselv:[12,7],vector:[13,12,7],code:[10,13,9,11,12,7],snippet:[13,7],reader:7,routin:[10,13,12,7],convers:[13,7],write_musrroot_runhead:7,full:[10,13,11,7],concentr:7,just:[10,13,9,12,7],prop:7,further:[8,10,7],down:[8,13,11,7],deltat_tdc_gps_2871:7,come:[8,10,7],overload:7,pathnam:7,method:[13,7],tdc:[13,7],cf3:7,mrh_undefin:7,strang:7,fed:[13,7],whole:7,someth:[10,9,13,7],recreat:[8,7],iszombi:7,"return":[13,7],info:7,fillfold:7,close:[8,13,10,7],read_musrroot_runhead:7,getobject:7,cerr:[13,7],endl:[13,7],couldn:[13,7],get:[10,13,8,9,7],closefil:7,extractal:7,decod:7,fill:[13,11,7],getter:7,bool_t:[13,7],ival:7,cout:7,els:[8,13,10,7],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:7,ampl:[13,7],parser:[10,7],hand:[10,13,7],decent:7,book:7,libxml2:[10,7],becaus:[8,7],suppos:[10,13,7],against:7,schema:7,lmu:[8,7],semant:7,preform:7,cross:[10,13,7],facil:[8,13,7],musrrootlem:7,poitiv:7,wew:7,hdecay023:7,detector023:7,potenti:7,discontinu:7,"break":7,element:7,left:[8,12,7],npp:[10,13,8,11,7],spectromet:[13,9,11,7],good:[10,13,8,9,7],enough:[10,13,7],cryo:7,cryostat:7,oven:7,konti:7,pim3:[13,11,7],hypothet:7,light:7,per:[8,13,7],bottom:7,split:[10,13,7],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":[10,13,8,9,7],jump:[13,7],cpp:[13,7],"00z":7,nemu:[10,13,7],lem12_his_0234:7,said:7,detector038:7,insert:7,x123:7,perp:7,spin:[13,11,12,7],mue4:[8,13,7],scalerinfo:7,runsummari:7,wed:7,oct:7,lco:7,wtf:7,kev:[12,7],ledb:7,buc:7,edit:[8,11,10,7],euc:7,event:[11,7],event_0:7,mcp1:7,event_1:7,mcp2:7,event_2:7,lemusr:7,problem:7,deviat:7,hereaft:7,snip:7,somewher:[8,10,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,10,11],drop:[8,10],outdat:[8,10,13],earli:[8,13],anymor:[8,10],still:[10,13,8,9,12],urg:8,strongli:[8,10],recommend:[8,10,12],shell:[8,10,13],tab:[8,13],startup:8,displai:[8,10,12,13],locat:[10,13,8,11,12],proof:8,exec_path:8,path_to_exec:8,musrview:[8,10],musrt0:8,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:[10,13,8,9,11,12],musrview_show_fouri:8,fourier:[8,10,12,11],transform:[10,13,8,11,12],domain:[8,13,11],musrview_show_avg:8,averag:[8,12,13],power:[10,13,8,9,11],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:[8,9],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:[8,11],func_pixmap_path:8,pix_path:8,latex:8,pixmap:8,visual:[8,11],theory_funct:8,syntax:[8,13],func:8,menu:[8,13,10,11],pictur:8,utf:[8,10,12,13],xmln:[8,13],html:8,usr:[8,10],local:[8,9,10,12],share:[8,9,10,13],doc:[8,13,10,11],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:[8,12,11],png:[8,13],statgsskt:[8,13],rate:[8,13,12,11],"static":[8,10,12],gauss:[8,13,12,11],respect:[10,13,8,11,12],bar:[8,13],keyboard:[8,11],shortcut:[8,11],scratch:8,too:[8,10],priori:8,knowledg:8,calcul:[10,13,8,11,12],log:[8,12,13],max:[8,13],likelihood:[8,12,13],kei:[8,10],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,13,10,11],initi:[10,13,8,11,12],fitter:8,own:[8,13],docu:[8,9,13],raw:[8,13],dump_head:8,stage:[8,13],wand:8,coupl:[8,9,13],dialogu:8,briefli:8,explicit:[8,13],year:[8,9,13],pull:[8,10],choosen:8,rrf:[8,9],minu:8,transvers:[8,13,11],longitudin:8,choic:[8,10,13],question:8,ask:[8,10],correctli:[8,13,10,11],proper:[8,9,13],prompt:[8,9,10,13],peak:[8,12,13],pop:8,disadvantag:8,freeli:8,custom:[8,13],cost:8,yourself:8,stand:[8,9],whatev:[8,9],press:[8,13,11],syntact:8,appropri:[8,9],previous:8,handi:8,furthermor:[8,10,13],pack:[8,13,10,11],minuit:[8,12,13],reset:[8,13],sometim:[8,13],went:[8,10],wrong:8,leav:8,far:[8,13],iter:[8,12,13],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,13,10,11],explor:[10,9],hal:[9,13],memo:[9,13],rotat:[13,9,11],tremend:[10,9],muonium:[9,13],appl:[10,9],cpu:[10,9,13],straight:9,multi:[10,9,13],thread:[10,9,13],doesn:9,openmp:[10,9,13],shop:9,bui:9,gamer:9,sure:[10,9,13],server:[10,9],suffici:[9,12],strong:[13,9,11],yet:[13,9,12,11],fall:[9,13],back:[9,13],conceptu:9,latest:[10,9],hardwar:9,crunch:9,readi:[10,9,13],acceler:[9,13],termin:[10,9,13,11],lspci:9,grep:[10,9],corpor:9,gk110bgl:9,rev:[9,12,13],recogn:9,download:[10,9],center:[9,12],hat:[10,9],enterpris:9,rhel:[10,9],rpm:[10,9],diag:9,rhel7:9,x86_64:9,conflict:9,nouveau:9,reboot:9,machin:[10,9,12],omit:[10,9,13],thin:[9,12],host:9,incorpor:9,paper:9,wiki:9,brief:[10,9],clone:[10,9],got:9,consist:[9,12,13],gitlab:[10,9,13],uldis_l:9,mkdir:[10,9],denable_musr:9,dcmake_install_prefix:[10,9],exec:9,non:[9,12],librari:[10,9,12,13],"super":9,sbin:[10,9],ldconfig:[10,9],ld_library_path:[10,9],launchctl:[10,9],setenv:[10,9],checkout:[10,9],branch:[10,9],dks6:9,soon:[10,9],want:[10,9,13],tell:[9,13],aslib:[10,9],bmwlib:[10,9],prefix:[10,9],rootsi:[10,9],lookup:9,superus:[10,9],ddk:9,disabl:[10,9,13],daslib:[10,9],dbmwlib:[10,9],dnexu:[10,9],vga:9,advanc:9,micro:[9,13],devic:9,inc:9,ati:9,hawaii:9,grenada:9,"290x":9,amdgpu:9,pro:[10,9],unpack:[10,9],tar:[10,9,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:[10,9,13],amdappsdk:9,note:[10,9,12,13],instruct:[10,9,13],compil:[10,9,13],xcode:[10,9],deliv:9,easiest:9,involv:[9,12],demonstr:10,"while":10,brave:10,virtual:10,encourag:10,gcc:[10,13],tool:[10,13],autoconf:10,libtool:10,toolchain:10,drope:10,releas:[10,13],plan:10,pkg:10,config:10,boost:10,spirit:10,scientif:[10,12,13],effici:[10,12,13],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:[10,11],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:10,libmxml:10,libhdf4:10,libhdf5:10,urgent:[10,13],isi:[10,13],safe:[10,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:10,root6:10,newer:10,dec:10,whether:[10,13],uninstal:10,xarg:10,install_manifest:10,altern:[10,13],autogen:10,prepar:10,successfulli:[10,13],makefil:[10,13],besid:10,fftw3:[10,12],boostinc:10,qt3:10,qt47:10,lib64:10,omp:[10,13],parallel:[10,13,12,11],detect:[10,11],permiss:10,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:10,built:[10,13],everth:10,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:10,patch1:10,www:[10,12],hdfgroup:10,ftp:10,jpegsrc:10,v6b:10,msweet:10,project3:10,hdf_current:10,precompil:10,xzf:10,root_v5:10,win32gcc:10,due:[10,12,13],visit:10,gminim:10,asimag:10,mathmor:10,accomplish:10,usernam:10,qtdir:10,i686:10,reopen:10,qt56:10,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:10,trac:10,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:10,michaelrsweet:10,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,11],background:[13,11],uncorrel:11,three:[13,12,11],remain:11,signal:[13,12,11],holder:11,amplitud:11,depolar:[13,12,11],simplexpo:[13,11],tfieldco:[13,11],map1:[13,11],fun1:[13,11],frequenc:[13,12,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:[13,12,11],mhz:[13,12,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:[13,12,11],ndf:11,freedom:[13,11],converg:[13,12,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:11,comma:[13,11],between:[13,12,11],"short":[13,11],conclud:11,attent:[13,12,11],"3111_tutori":11,"3114_tutori":11,"_tutori":11,snapshot:11,dark:11,theme:11,facilit:12,gyromagnet:12,ratio:12,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,evolut:12,salman:12,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:13,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,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,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,range_for_phase_correct: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,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,par8:13,fcp:13,bcp:13,relative_bcp:13,parrx0:13,rel:13,summ:13,parxj:13,parr:13,obvious:13,offest:13},objects:{},objtypes:{},objnames:{},titleterms:{acknowledg:0,any2mani:[1,13],univers:1,"\u03bcsr":[13,1,6,12,7],file:[13,8,1,11,5,12,7],format:[13,1,7],convert:1,bugtrack:2,how:3,cite:3,musrfit:[10,13,8,3,9,11,5,4],welcom:4,document:[4,12],indic:4,tabl:4,msr2data:[13,5,11],program:5,automat:5,process:[5,11],multipl:[5,11],msr:[13,5,11],basic:[8,13,5,7],type:[5,13],usag:[8,5,6,13],run:[13,5,7],list:5,structur:5,option:[10,5],paramet:[8,5,6],global:[5,13],mode:5,gener:[5,13],extract:5,extend:5,known:5,limit:5,graphic:[9,5,6],user:[13,6,5,12,7],interfac:[8,5,6,7],provid:5,musredit:[8,5,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:[11,7],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,12,13],avail:[8,13],execut:[8,13],configur:[8,13],musrgui:[8,10],musredit_startup:8,xml:[8,12,13],featur:8,musrwiz:8,theori:[8,13],"function":[8,12,13],map:[8,13],fit:[8,9,13,11],info:8,creat:8,musrstep:8,set:[10,9],high:9,speed:9,gpu:[9,13],tesla:9,k40c:9,nvidia:9,driver:9,instal:[10,9],cuda:9,via:[10,9],automak:[10,9],cmake:[10,9],amd:9,card:9,radeon:9,"390x":9,app:9,softwar:[10,9],develop:9,kit:9,sdk:9,enabl:[9,13],opencl:[9,13],support:[10,9,13],maco:[10,9],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,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},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":[8,5,12,10,1,11,13,0,9,3,7,6],"\u03b2":[],"\u03b4":[8,5,12,10,1,11,13,0,9,3,7,6],"\u03b7":[8,5,12,10,1,11,13,0,9,3,7,6],"\u03b5":[8,5,12,10,1,11,13,0,9,3,7,6],"\u03b3":[8,5,12,10,1,11,13,0,9,3,7,6],"\u03b9":[8,5,12,10,1,11,13,0,9,3,7,6],"\u03ba":[8,5,12,10,1,11,13,0,9,3,7,6],"\u03c7":[8,5,12,10,1,11,13,0,9,3,7,6],"\u03bb":[8,5,12,10,1,11,13,0,9,3,7,6],"\u03bc":[8,5,12,10,1,11,13,0,9,3,7,6,4],"\u03bd":[8,5,12,10,1,11,13,0,9,3,7,6],"\u03bf":[8,5,12,10,1,11,13,0,9,3,7,6],"\u03c9":[8,5,12,10,1,11,13,0,9,3,7,6],"\u03c0":[8,5,12,10,1,11,13,0,9,3,7,6],"\u03c6":[8,5,12,10,1,11,13,0,9,3,7,6],"\u03c8":[8,5,12,10,1,11,13,0,9,3,7,6],"\u03c1":[8,5,12,10,1,11,13,0,9,3,7,6],"\u03c2":[8,5,12,10,1,11,13,0,9,3,7,6],"\u03c3":[8,5,12,10,1,11,13,0,9,3,7,6],"\u03c4":[8,5,12,10,1,11,13,0,9,3,7,6],"\u03b8":[8,5,12,10,1,11,13,0,9,3,7,6],"\u03c5":[8,5,12,10,1,11,13,0,9,3,7,6],"\u03be":[8,5,12,10,1,11,13,0,9,3,7,6],"\u03b6":[8,5,12,10,1,11,13,0,9,3,7,6],bastian:0,wojek:[5,3,0],veri:[8,11,0,13,10,7],much:[8,13,0,6,7],indebt:0,bmw:[],rigor:0,test:[8,10,0],musrfit:[],mani:[8,5,12,0,13,10,7],suggest:[5,10,0],contribut:[11,12,13,0],largest:0,part:[8,12,0,11,13,10,3,7],user:[],manual:[],which:[8,5,12,10,11,13,0,6,9,7],make:[8,0,13,10,9,7],access:[],broader:0,audienc:0,thank:0,uldi:0,locan:[9,3,0],work:[8,5,12,10,13,0,9,7],enabl:[],gpu:[],support:[],kind:[12,7,0],calm:0,extrem:0,compet:0,wai:[8,5,12,10,11,13,0,6,9,7],deal:[12,11,0,13,10,9,7],project:0,well:[5,12,11,13,0,9],chao:0,physicist:0,think:0,admir:0,allow:[8,5,12,1,13,10,6,9,7],most:[5,12,1,13,10,9,7],from:[],other:[1,11,13,10,6,9,7],detail:[8,12,1,11,13,10,9,7],descript:[],see:[8,5,12,1,11,13,10,6,9,7],here:[8,5,1,11,13,10,6,9,7],report:2,bug:[8,2],request:[11,13,2,10,6],"new":[8,5,11,13,2,10,7],featur:[],improv:[12,2,10],pleas:[5,12,11,13,2,10,3,7],bitbucket:[13,2,10],repo:[9,2,10],prefer:[8,13,2,10],send:[13,2],mail:2,suter:[9,3,2],psi:[8,12,11,13,2,10,9,7],sinc:[5,11,13,10,9,3,7],quit:[8,13,10,3,7],some:[],effort:3,develop:[],mainten:[3,7],packag:[],you:[8,13,10,6,9,3,7],should:[8,5,12,11,13,10,6,9,3,7],least:[5,11,13,10,3],your:[8,5,13,10,9,3],"public":[12,3,13,10],have:[8,5,12,11,13,10,9,3,7],analyz:[],data:[],even:[5,13,10,3,7],better:[5,3,13],cours:[5,3,13,10],properli:[5,9,3,13],refer:[8,12,11,13,10,9,3,7],given:[8,5,12,11,13,10,6,9,3,7],beneath:[8,3],free:[8,12,13,10,3,7],platform:[],independ:[12,3,13],framework:[],analysi:[5,12,11,13,10,9,3,7],physic:[9,3,13,7],procedia:3,http:[8,12,13,10,9,3,7],doi:3,org:[3,10],phpro:3,high:[],speed:[],version:[8,12,13,10,6,9,3,7],util:[13,10,9,3,7],"case":[8,5,12,11,13,10,6,9,3,7],thi:[8,5,12,11,13,10,6,9,3,7],also:[8,5,12,11,13,10,6,9,3,7],add:[8,5,11,13,10,6,9,3,7],follow:[8,5,12,11,13,10,6,9,3,7],citat:3,adelmann:3,dynam:[9,3],kernel:[9,3],schedul:[9,3],comput:[9,3,10],commun:3,cpc:3,real:[11,13,10,9,3],time:[8,12,11,13,10,6,9,3,7],paramet:[],fit:[],imag:[3,13,11],reconstruct:3,graphic:[],process:[],unit:[3,13,7,11],conf:[9,3,10],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:[5,13,4],search:[13,10,4],page:[8,11,10,9,7,4],origin:[5,8,13,12],written:[8,5,12,11,13,7],implement:[8,5,12,13,10,9,7],purpos:[5,13,11,10],input:[5,8,13,11],same:[5,12,11,13,10,6,9,7],summar:[5,11],result:[8,5,12,11,13,7],either:[8,5,12,11,13,10,6],triumf:[5,8,13,11],column:[8,5,11,13,7],ascii:[8,5,12,11,13],essenti:[5,8,13,7],collect:[8,5,12,11,13,10,6,7],old:[5,13,10],abridg:5,produc:[5,13,11,10],can:[8,5,12,11,13,10,6,9,7],view:[],instanc:[5,13,10,6,7],howev:[5,11,13,10,9],thei:[5,11,13,10,9,7],complet:[5,12,11,10,9],backward:[5,13,7],compat:[5,9,13,10],languag:5,name:[8,5,12,11,13,10,6,9,7],longer:5,than:[8,5,11,13,10,7],five:[5,11],six:5,charact:[5,13],order:[5,12,13,10,9,7],establish:5,need:[8,5,12,11,13,10,9,7],ensur:[5,13],correct:[8,5,11,13,10],length:[5,12,7],apart:[5,12,10],numer:[5,12,10],might:[8,5,12,13,10,6,7],principl:[5,12,10],four:5,call:[8,5,12,11,13,10,6,7],suppli:[5,12,9,13],number:[8,5,12,11,13,10,6,9,7],firstrunno:5,lastrunno:5,interv:[5,13],specifi:[8,5,12,11,13,10,7],through:[5,12,11,13,10,7],first:[8,5,12,11,13,10,6,9,7],last:[],condit:[5,12],necessari:[8,5,11,13,10,7],runlist:[5,13],where:[8,5,12,11,13,10,6,9,7],combin:[8,5,11,13,7],run0:5,run1:[5,13],run2:[5,13],runn:5,rang:[],step:[],sequenc:[5,13,11,10],posit:[5,13,7,11],integ:[5,13,7],etc:[8,5,13,10,9,7],runlistfilenam:5,contain:[],extern:[5,12,13,10,7],pass:[5,8,13],below:[5,12,11,13,10,7],all:[8,5,11,13,10,6,9,7],mandatori:[5,12,13,7],right:[5,12,11,13,10,7],after:[8,5,11,13,10,9,7],mean:[8,5,12,11,13,10,6,9,7],becom:[5,10],clear:[5,8,13,7],give:[5,11,13,10,7],exampl:[8,5,12,11,13,10,6,7],"_tf_h13":5,out:[8,5,11,13,10,6,9,7],chang:[8,5,13,10,9],"8472_tf_h13":5,"8473_tf_h13":5,"8474_tf_h13":5,"8470_tf_h13":5,directori:[8,5,12,11,13,10,9,7],put:[5,8,13,10],var1:5,var2:5,var3:5,comment:[8,5,13,10,6,9,7],empti:[5,8,13,6],line:[8,5,12,11,13,10,6,7],determin:[],label:[8,5,12,13,6,7],present:[8,5,12,11,13,10,6,9,7],preced:5,mention:[5,12,13,10,7],togeth:[8,5,11,13,10,7],abov:[8,5,12,11,13,10,6,9,7],output:[8,5,12,11,13,6],onli:[8,5,12,11,13,10,6,9,7],newli:[5,8,11],creat:[],did:[5,10],exist:[5,13,10],befor:[8,5,12,11,13,10,9,7],invok:[5,8,13,6],were:[5,8,13,7],alreadi:[8,5,13,10,9],would:[8,5,12,11,13,10,6,9,7],append:[5,13,10],been:[8,5,12,11,13,10,7],header:[],block:[],forc:[5,13],suppress:5,nohead:[5,8],shall:[8,5,12,11,13,10,7],seen:[5,7,11],later:[5,13,11,10],like:[8,5,12,13,10,6,9,7],behavior:[5,13],ani:[8,5,11,13,10,9,7],simpl:[5,12,11,13,10],"default":[8,5,13,10,9],dat:[8,5,12,11,13,6],delet:[5,7],inform:[],both:[5,12,13,10],none:[5,8,13,11],write:[],sole:[5,13],assum:[8,5,12,11,13,10,9,7],nosummari:[5,8],attempt:5,read:[],addit:[8,5,12,11,13,10,9,7],temperatur:[5,11,13,6,7],appli:[5,12,11,13,10,7],magnet:[5,8,7,12],field:[],paramlist:5,param:[5,8,13,6],select:[8,5,11,13,10,6,9,7],"export":[5,11,13,10,9],startno:5,endno:5,space:[5,12,13,10],separ:[8,5,11,13,10],outputfilenam:[5,13],instead:[5,12,13,10,9,6],equal:[5,13,11],insensit:5,addition:[8,5,11,13,10],"final":[5,12,11,13,10],templat:[5,8,13,11],perform:[8,5,11,13,10,6,7],mlog:[5,8,13],subsequ:[5,13],chain:[5,8,10],exclam:5,mark:[5,13],without:[],keep:[5,8,13,7],mn2:[5,13],done:[5,12,11,13,10,6,9,7],ignor:[5,13,6],titl:[],illustr:[5,13],few:[8,5,13,10,7],explan:[5,13],oabc:5,"8400_tf_h13":5,"8460_tf_h13":5,abc:5,about:[5,11,13,10,7],"_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,12,11,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:[8,5,12,11,13,10,9,7],anoth:[8,5,13,6,7],each:[5,12,11,13,10,6,7],defin:[8,5,12,11,13,10,6,7],common:[5,13,10],specif:[8,5,12,11,13,10,7],when:[8,5,12,11,13,10,7],obtain:[5,12,7],valid:[],conjunct:[5,12,13,10],invoc:[5,13],state:[],idea:[5,13,7,11],basi:5,identifi:[5,13],tag:[8,5,12,11,13,10,9,6],current:[8,5,12,13,10,6,9,7],"0xu":5,digit:[5,13],lead:[8,5,12,13,7],zero:[8,5,11,13,7],end:[8,5,11,13,10,6,7],alpha0123:5,alpha00123456:5,fitparamet:[],exemplari:[5,13],"8472_exampl":5,could:[8,5,12,13,10,9,6],therefor:[5,12,11,13,10],look:[8,5,12,13,10,6,9,7],valu:[8,5,11,13,10,9,7],pos_error:[5,13,11],boundari:[8,5,12,11,13],phase:[8,5,12,11,13],asy8472:5,rate8472:5,treat:[5,10],wherea:[5,8,13],normal:[5,13,11,10],within:[8,5,12,11,13,10,6,7],appear:[5,13],explicitli:[5,8,13],theori:[],those:5,met:5,"try":[5,13,10],substitut:[5,13,11,10],them:[8,5,12,11,13,7],map:[],accordingli:[5,11,6,10],"_exampl":5,global_exampl:5,alwai:[5,12,13,7],start:[8,5,11,13,10,6,9,7],asy8471:5,rate8471:5,asy8470:5,rate8470:5,show:[8,5,11,13,6,7],reorgan:5,begin:[5,13,7,10],copi:[5,8,13,10],found:[8,5,12,11,13,10,9,7],dure:[5,12,13,10,6],affect:5,occurr:[5,10],awar:[5,13,10],fact:[5,10],propag:5,model:[],usual:[5,12],store:[8,5,12,10,7],reach:[5,13],goal:[5,13],obei:[5,13],certain:[5,12],rule:[5,8,13,7],match:[5,13],accord:[8,5,11,13,10],achiev:[5,11,10],easili:[5,8,9,10],shown:[8,5,11,13,6,7],globalfit:5,relev:[8,5,11,13,7],pre:[5,8],afterward:[5,12,13,10,6,9,7],special:[5,13,7,10],replac:[5,9,13,10],review:5,activ:[5,8,12,10],choos:[8,5,12,11,13,10],keyword:[5,13],onerunfit_exampl:5,onerunfit:5,everi:[5,13,6,10],similar:[5,10],explain:[8,5,12,11,13,10,9,7],moment:[5,12,7,10],peopl:[5,7,10],cannot:[5,12,13],behav:[5,12],integr:[5,12,10],filenam:[5,13,7],rightmost:5,highest:[5,10],treatabl:5,statist:[],itself:[5,11],more:[8,5,11,13,10,6,9,7],creativ:5,care:[5,13,10],addrun:[5,13],statement:[5,13],simpli:[5,13,10],probabl:[5,7,10],what:[5,12,11,13,10,9],two:[8,5,12,11,13,10,7],success:[5,13,7,11],encount:5,actual:[5,12,13,10],measur:[8,5,12,11,13,6,7],introduc:[5,13,7,11],reason:[5,11,13,10,9],shape:[5,12,13],design:[5,10],especi:[5,12,13,10,9,7],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:[8,5,13,10,6,9,7],stai:5,enter:[5,8,9,10],otherwis:[5,9,13,10],serv:[5,13,11],second:[8,5,12,11,13,10],noth:[5,8,13,7],correspond:[8,5,11,13,10,6,7],littl:[8,13,6],helper:[8,7,6,10],quickli:[9,6],plot:[],handl:[8,12,13,10,6,7],heavili:[12,6],inspir:6,via:[],command:[],directli:[8,13,10,6,7],typic:[8,13,10,9,6],load:[12,6],dialog:[8,6],tri:[13,6,10],fly:[6,11],drag:[6,11],over:[13,6,10],axi:[12,11,13,6,7],wish:[13,6],click:[8,13,6],analog:6,remov:[13,6],often:[8,13,6,10],compar:[9,13,6,10],trend:6,hold:[13,7,6],energi:[12,7,6],scan:[13,6],now:[11,13,10,9,6],interest:[13,6,10],ditto:6,less:[13,6,10],error:[8,12,11,13,10,6,9,7],prone:[8,9,6],quicker:[13,6],button:[8,13,6,11],mupp_plot:6,applic:[8,12,13,10,9,6],refresh:6,reload:[8,6],beamtim:6,grow:6,task:6,mous:[13,6],gambl:6,futur:[8,6,10],plane:6,help:[8,13,10,9,6],cmd:[6,10],manner:[6,10],updat:[11,13,10,9,6],web:[8,13,10,6,7],interact:[12,13,6,11],figur:[13,7,6],loadpath:6,dir:6,path:[8,11,13,10,6,9,7],bash:[6,10],variabl:[],home:[8,12,13,10,6,9,7],accept:[8,13,6],coll:6,selectal:6,carri:[13,6,10],ybco:6,"40nm":6,t5k:6,fc150mt:6,escan:6,addx:6,addi:6,savepath:6,save:[8,12,11,13,10,6,7],place:[11,13,6,10],macro:6,fln:[13,6],txt:[6,10],t30k:6,t60k:6,t120k:6,fieldvsenergi:6,pdf:[13,6],"true":[12,13,7,6],best:[12,13,10,6,7],ever:[7,6],thie:6,labl:6,until:[13,7,11],bulk:[],instrument:[8,13,7],bin:[8,11,13,10,7],fix:[8,13,7,11],binari:[7,10],rather:[8,13,7,10],stringent:7,lem:[12,13,7],cern:[13,7,10],tightli:7,tailor:7,situat:[13,7,10],unsatisfactorili:7,henc:[11,13,10,9,7],decid:[13,7,10],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:[13,7,10],understand:[13,7],upcom:[7,10],definit:[13,7,11],thing:[8,13,10,9,7],check:[],guid:[9,13,7],organ:[8,13,7],similarli:[13,7],browser:7,inspect:7,tbrowser:7,deriv:[13,7],tobject:7,small:[8,12,13,10,9,7],subset:[13,7],tfolder:7,top:[7,10],level:[13,7],tobjarrai:7,tobjstr:7,content:[13,7,10],form:[12,11,13,10,9,7],box:[8,9,7],entri:[13,7],sketch:[13,7],histo:[8,11,13,10,7],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,13,7],folder:[7,10],next:[8,12,13,10,9,7],section:[13,7,10],slow:7,control:[9,13,7],sampl:[12,9,7,11],versu:7,again:[8,13,10,9,7],meta:7,minim:[12,11,13,10,7],bracket:7,item:[13,7],detector:[8,12,11,13,7],environ:[],beamlin:[8,13,7,11],elabor:[9,7],word:7,sub:[11,13,7,10],intern:[8,13,7],tstring:7,git:[9,13,7,10],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:7,momentum:[12,7,11],mev:7,speci:7,neg:[],sourc:[],target:7,low:[12,13,7],setup:[9,13,7,10],cf1:7,wxy:7,resolut:[12,7],redgreen:[13,7],offset:[13,7],tintvector:7,except:[8,13,7,10],shortli:[13,7],discuss:[8,9,13,7],experi:[13,7],stimuli:7,electr:7,off:[13,7,10],doubl:[13,7],distinguish:7,easier:[7,10],let:7,sai:7,red:[11,13,10,9,7],green:[13,7,11],browsabl:7,string:[8,13,7,10],tobjstringv:7,quantiti:7,repres:[13,7,11],properti:[13,7],estim:[8,12,13,7],demand:[13,7],depend:[8,12,11,13,10,9,7],musrrootv:7,mock:7,print:[8,13,7],notic:[8,13,7],find:[8,13,10,9,7],encod:[8,12,13,10,7],price:7,pai:7,shade:7,"import":[13,7],approach:[13,7,10],standard:[9,13,7,10],"abstract":[13,7],text:[8,13,7,11],though:[8,7,10],clean:[9,7,10],lot:[13,7],"2nd":7,slightli:[8,9,13,7],advantag:[8,13,7,10],maintain:7,expand:7,classifi:7,group:[8,13,7,10],previou:[13,7],"float":7,point:[8,12,11,13,10,7],double_t:[13,7],tstringvector:7,tdoublevector:7,themselv:[12,7],vector:[12,13,7],code:[12,11,13,10,9,7],snippet:[13,7],reader:7,routin:[12,13,7,10],convers:[13,7],write_musrroot_runhead:7,full:[11,13,7,10],concentr:7,just:[12,13,10,9,7],prop:7,further:[],down:[8,13,7,11],deltat_tdc_gps_2871:7,come:[8,7,10],overload:7,pathnam:7,method:[13,7],tdc:[13,7],cf3:7,mrh_undefin:7,strang:7,fed:[13,7],whole:7,someth:[9,13,7,10],recreat:[8,7],iszombi:7,"return":[13,7],info:[],fillfold:7,close:[8,13,7,10],read_musrroot_runhead:7,getobject:7,cerr:[13,7],endl:[13,7],couldn:[13,7],get:[8,13,10,9,7],closefil:7,extractal:7,decod:7,fill:[13,7,11],getter:7,bool_t:[13,7],ival:7,cout:7,els:[8,13,7,10],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:[7,10],hand:[13,7,10],decent:7,book:7,libxml2:[7,10],becaus:[8,7],suppos:[13,7,10],against:7,schema:7,lmu:[8,7],semant:7,preform:7,cross:[13,7,10],facil:[8,13,7],musrrootlem:7,poitiv:7,wew:7,hdecay023:7,detector023:7,potenti:[],discontinu:7,"break":7,element:7,left:[8,12,7],npp:[8,11,13,10,7],spectromet:[9,13,7,11],good:[8,13,10,9,7],enough:[13,7,10],cryo:7,cryostat:7,oven:7,konti:7,pim3:[13,7,11],hypothet:7,light:7,per:[8,13,7],bottom:7,split:[13,7,10],mind:7,symbol:[7,10],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":[8,13,10,9,7],jump:[13,7],cpp:[13,7],"00z":7,nemu:[13,7,10],lem12_his_0234:7,said:7,detector038:7,insert:7,x123:7,perp:7,spin:[12,13,7,11],mue4:[8,13,7],scalerinfo:7,runsummari:7,wed:7,oct:7,lco:7,wtf:7,kev:[12,7],ledb:7,buc:7,edit:[8,11,7,10],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:[8,7,10],token:[13,7],val:[13,7],err:7,cf4:7,cf5:7,editor:[8,11,10],suit:[8,12,13,11],intend:[8,13,10],eventu:[8,11,10],drop:[8,10],outdat:[8,13,10],earli:[8,13],anymor:[8,10],still:[8,12,13,10,9],urg:8,strongli:[8,13,10],recommend:[8,12,10],shell:[8,13,10],tab:[8,13],startup:[],displai:[8,12,13,10],locat:[8,12,11,13,10],proof:8,exec_path:8,path_to_exec:8,musrview:[],musrt0:[],insid:[8,12,13,10],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,13,10],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:[8,12,11,13,10,9],musrview_show_fouri:8,fourier:[],transform:[8,12,11,13,10],domain:[8,13,11],musrview_show_avg:8,averag:[8,12,13],power:[8,11,13,10,9],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,13,10],messag:[8,13],musr_web_x:8,link:[8,13,10],main:[8,11,10],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,13,11,10],pictur:8,utf:[8,12,13,10],xmln:[8,13],html:8,usr:[8,10],local:[8,12,9,10],share:[8,9,13,10],doc:[8,13,11,10],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,12,13,11],"static":[8,12,10],gauss:[8,12,13,11],respect:[8,12,11,13,10],bar:[8,13],keyboard:[8,11],shortcut:[],scratch:8,too:[8,10],priori:8,knowledg:8,calcul:[8,12,11,13,10],log:[8,12,13],max:[8,13],likelihood:[8,12,13],kei:[],alt:8,equival:[8,13,10],mai:[8,13,10],chosen:[8,13,10],swap:[8,13],vice:[8,13],versa:[8,13],adjust:[8,13,11,10],initi:[8,12,11,13,10],fitter:8,own:[8,13],docu:[8,9,13],raw:[8,13],dump_head:[],stage:[8,13],wand:8,coupl:[8,9,13],dialogu:8,briefli:8,explicit:[8,13],year:[8,9,13],pull:[8,10],choosen:8,rrf:[],minu:8,transvers:[8,13,11],longitudin:8,choic:[8,13,10],question:[8,13],ask:[8,10],correctli:[8,13,11,10],proper:[8,9,13],prompt:[8,9,13,10],peak:[8,12,13],pop:8,disadvantag:8,freeli:8,custom:[8,13],cost:8,yourself:8,stand:[8,9],whatev:[8,9],press:[8,13,11],syntact:8,appropri:[8,9],previous:8,handi:8,furthermor:[8,13,10],pack:[8,13,11,10],minuit:[8,12,13],reset:[8,13],sometim:[8,13],went:[8,10],wrong:8,leav:8,far:[8,13],iter:[8,12,13],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,13,11,10],explor:[9,10],hal:[9,13],memo:[9,13],rotat:[9,13,11],tremend:[9,10],muonium:[9,13],appl:[9,10],cpu:[9,13,10],straight:9,multi:[9,13,10],thread:[9,13,10],doesn:9,openmp:[9,13,10],shop:9,bui:9,gamer:9,sure:[9,13,10],server:[9,10],suffici:[12,9],strong:[9,13,11],yet:[12,9,13,11],fall:[9,13],back:[9,13],conceptu:9,latest:[9,10],hardwar:9,crunch:9,readi:[9,13,10],acceler:[9,13],termin:[11,9,13,10],lspci:9,grep:[9,10],corpor:9,gk110bgl:9,rev:[12,9,13],recogn:9,download:[9,10],center:[12,9],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:[12,9,10],omit:[9,13,10],thin:[12,9],host:9,incorpor:9,paper:9,wiki:9,brief:[9,10],clone:[9,10],got:9,consist:[12,9,13],gitlab:[9,13,10],uldis_l:9,mkdir:[9,10],denable_musr:9,dcmake_install_prefix:[9,10],exec:9,non:[],librari:[12,9,13,10],"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:[9,10],want:[9,13,10],tell:[9,13],aslib:[9,10],bmwlib:[9,10],prefix:[9,10],rootsi:[9,10],lookup:9,superus:[9,10],ddk:9,disabl:[9,13,10],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,13,10],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,13,10],amdappsdk:9,note:[12,9,13,10],instruct:[9,13,10],compil:[9,13,10],xcode:[9,10],deliv:9,easiest:9,involv:[12,9],demonstr:10,"while":10,brave:10,virtual:10,encourag:10,gcc:[13,10],tool:[13,10],autoconf:10,libtool:10,toolchain:10,drope:10,releas:[13,10],plan:10,pkg:10,config:10,boost:10,spirit:10,scientif:[12,13,10],effici:[12,13,10],mathemat:[13,10],fftw:10,fast:10,discret:[11,10],toolkit:10,gnome:10,hdf4:[13,10],manag:10,hdf5:[13,10],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:[13,10],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:[13,10],websit:10,engin:10,mxml:10,hdf:10,libmxml1:10,libmxml:10,libhdf4:10,libhdf5:10,urgent:[13,10],isi:[13,10],safe:[13,10],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:[13,10],warn:[13,10],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:[13,10],told:10,luke_skywalk:10,echo:10,bashrc:10,bash_profil:10,restart:10,onc:[11,12,13,10],proceed:10,recent:[13,10],muonspin:10,root5:10,root6:10,newer:10,dec:10,whether:[13,10],uninstal:10,xarg:10,install_manifest:10,altern:[13,10],autogen:10,prepar:10,successfulli:[13,10],makefil:[13,10],besid:10,fftw3:[12,10],boostinc:10,qt3:10,qt47:10,lib64:10,omp:[13,10],parallel:[11,12,13,10],detect:[11,10],permiss:10,dbnmrlib:10,bnmrlib:10,dqt_based_tool:10,dqt_version:10,auto:10,dtry_openmp:10,core:10,finish:[11,10],musrfitpath:10,musrfit_startup:[],built:[13,10],everth:10,src:10,musredit_qt5:10,qmake:10,fine:10,skip:10,higher:10,uic:10,quick:[13,10],hasn:10,adventur:10,advic:10,wonder:10,occur:10,great:10,gain:10,nice:[12,10],unix:10,revis:[13,10],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:[13,10],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:[13,10],rsync:10,sed:10,subvers:10,tcltk:10,terminfo:10,unzip:10,vim:10,w32api:10,icon:[11,13,10],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:[12,10],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:10,patch1:10,www:[12,10],hdfgroup:10,ftp:10,jpegsrc:10,v6b:10,msweet:10,project3:10,hdf_current:10,precompil:10,xzf:10,root_v5:10,win32gcc:10,due:[12,13,10],visit:10,gminim:10,asimag:10,mathmor:10,accomplish:10,usernam:10,qtdir:10,i686:10,reopen:10,qt56:10,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:[13,10],x11:10,leopard:10,snow:10,xquartz:10,macosforg:10,trac:10,newest:10,port:10,selfupd:10,remark:[13,10],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:10,michaelrsweet:10,lazi:10,dmg:10,sierra:10,writ:10,root_v6:10,macosx64:10,clang91:10,owner:10,life:[11,13,10],chown:10,chgrp:10,staff:10,exactli:[13,10],wisdom:[12,10],harder:10,adopt:[13,10],parenthes:[13,10],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,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: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,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,evolut:12,salman:12,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:13,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,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,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,range_for_phase_correct: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,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,par8:13,fcp:13,bcp:13,relative_bcp:13,parrx0:13,rel:13,summ:13,parxj:13,parr:13,obvious:13,offest:13,internfldgk:13,ifgk:13,internfldl:13,ifll:13,kornilov:13,pomjakushin:13,letter:13,larkin:13,physica:13,condens:13},objects:{},objtypes:{},objnames:{},titleterms:{acknowledg:0,any2mani:[13,1],univers:1,"\u03bcsr":[12,1,13,6,7],file:[8,5,12,1,11,13,7],format:[13,1,7],convert:1,bugtrack:2,how:3,cite:3,musrfit:[8,5,11,13,10,9,3,4],welcom:4,document:[12,4],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,13,7],type:[5,13],usag:[5,8,13,6],run:[5,13,7],list:5,structur:5,option:[5,10],paramet:[5,8,6],global:[5,13],mode:5,gener:[5,13],extract:5,extend:5,known:5,limit:5,graphic:[5,9,6],user:[5,12,13,6,7],interfac:[5,8,7,6],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:[7,10],inform:7,contain:7,runhead:7,runinfo:7,overview:7,tmusrrunhead:7,concept:7,header:7,write:7,read:[7,11],valid:7,requir:[7,10],detectorinfo:7,sampleenvironmentinfo:7,magneticfieldenvironmentinfo:7,beamlineinfo:7,exhaust:7,tree:7,includ:7,everyth:[7,10],tmusrrunphysicalquant:7,possibl:7,represent:7,gui:8,base:8,introduct:[8,12,13],avail:[8,13],execut:[8,13],configur:[8,13],musrgui:[8,10],musredit_startup:8,xml:[8,12,13],featur:8,musrwiz:8,theori:[8,13],"function":[8,12,13],map:[8,13],fit:[8,9,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:[9,10],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,13,10],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,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},envversion:43}) \ No newline at end of file diff --git a/doc/html/setup-dks.html b/doc/html/setup-dks.html index fcec2311..bd141748 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.4.0 documentation + Setting up musrfit / DKS: High Speed Fitting with GPU’s — musrfit 1.4.1 documentation @@ -14,7 +14,7 @@ - + @@ -41,7 +41,7 @@
  • previous |
  • -
  • musrfit 1.4.0 documentation »
  • +
  • musrfit 1.4.1 documentation »
  • @@ -354,12 +354,12 @@ The only thing you need DKS previous | -
  • musrfit 1.4.0 documentation »
  • +
  • musrfit 1.4.1 documentation »
  • diff --git a/doc/html/setup-standard.html b/doc/html/setup-standard.html index c9df2538..e64c9cb0 100644 --- a/doc/html/setup-standard.html +++ b/doc/html/setup-standard.html @@ -6,7 +6,7 @@ - Setting up musrfit on Different Platforms — musrfit 1.4.0 documentation + Setting up musrfit on Different Platforms — musrfit 1.4.1 documentation @@ -14,7 +14,7 @@ - + @@ -41,7 +41,7 @@
  • previous |
  • -
  • musrfit 1.4.0 documentation »
  • +
  • musrfit 1.4.1 documentation »
  • @@ -1481,12 +1481,12 @@ $ musrview test-histo-ROOT-NPP.msr
  • previous |
  • -
  • musrfit 1.4.0 documentation »
  • +
  • musrfit 1.4.1 documentation »
  • diff --git a/doc/html/tutorial.html b/doc/html/tutorial.html index 9c39cb34..14bc3db4 100644 --- a/doc/html/tutorial.html +++ b/doc/html/tutorial.html @@ -6,7 +6,7 @@ - Tutorial for musrfit — musrfit 1.4.0 documentation + Tutorial for musrfit — musrfit 1.4.1 documentation @@ -14,7 +14,7 @@ - + @@ -41,7 +41,7 @@
  • previous |
  • -
  • musrfit 1.4.0 documentation »
  • +
  • musrfit 1.4.1 documentation »
  • @@ -132,7 +132,7 @@ TFieldCos map1 fun2 (phase frequency)

    The THEORY block is used to define a fit-parameter-dependent theory function used to model -the decay asymmetry. Different predefined and user-defined +the decay asymmetry. Different predefined and user-defined functions can be combined here. Theory lines following each other are multiplied and the + sign is used to add different (here: two) signal contributions. The numbers are the parameter numbers according to the FITPARAMETER block. map and fun are used to refer to @@ -443,12 +443,12 @@ For a complete description please refer to the manuals of previous | -

  • musrfit 1.4.0 documentation »
  • +
  • musrfit 1.4.1 documentation »
  • diff --git a/doc/html/user-libs.html b/doc/html/user-libs.html index 8f159925..5dddef1f 100644 --- a/doc/html/user-libs.html +++ b/doc/html/user-libs.html @@ -6,7 +6,7 @@ - Documentation of user libs (user functions) — musrfit 1.4.0 documentation + Documentation of user libs (user functions) — musrfit 1.4.1 documentation @@ -14,7 +14,7 @@ - + @@ -41,7 +41,7 @@
  • previous |
  • -
  • musrfit 1.4.0 documentation »
  • +
  • musrfit 1.4.1 documentation »
  • @@ -58,7 +58,7 @@

    libFitPofB

    Introduction

    -

    libFitPofB is a collection of C++ classes using the musrfit user-functions +

    libFitPofB is a collection of C++ classes using the musrfit user-functions interface in order to facilitate the usage in conjunction with musrfit. The classes contained in this library generally implement calculations of one-dimensional static magnetic field distributions \(p(B)\) which lead to the muon-spin depolarization functions

    @@ -372,7 +372,7 @@ The expected name of the RGE

    Functions to analyze β-NMR data (BNMR libs)

    -

    This is a collection of C++ classes using the musrfit user-functions +

    This is a collection of C++ classes using the musrfit user-functions interface in order to facilitate the usage in conjunction with musrfit. It consists of two libraries:

    diff --git a/doc/html/user-manual.html b/doc/html/user-manual.html index 3a9261c9..25a0005f 100644 --- a/doc/html/user-manual.html +++ b/doc/html/user-manual.html @@ -6,7 +6,7 @@ - User manual — musrfit 1.4.0 documentation + User manual — musrfit 1.4.1 documentation @@ -14,7 +14,7 @@ - + @@ -41,7 +41,7 @@
  • previous |
  • -
  • musrfit 1.4.0 documentation »
  • +
  • musrfit 1.4.1 documentation »
  • @@ -584,7 +584,7 @@ in case a \(\chi^2\) single-histogram fit is done, als - + name @@ -721,7 +721,7 @@ in case a \(\chi^2\) single-histogram fit is done, als if \(\alpha (1), \varphi (^\circ)\), \(\nu\) (MHz), \(\lambda_{\rm T} (\mu \mathrm{s}^{-1})\),\(\lambda_{\rm L} (\mu \mathrm{s}^{-1})\)
    -
    \(\alpha \cos\left(2\pi\nu t + \frac{\pi \varphi}{180}\right) \exp(\lambda_{\rm T}t) +\)
    +
    \(\alpha \cos\left(2\pi\nu t + \frac{\pi \varphi}{180}\right) \exp(-\lambda_{\rm T}t) +\)
    \(+ (1-\alpha) \exp(-\lambda_{\rm L} t)\)
    @@ -737,12 +737,32 @@ in case a \(\chi^2\) single-histogram fit is done, als ib \(\alpha (1), \varphi (^\circ)\), \(\nu\) (MHz), \(\lambda_{\rm T} (\mu \mathrm{s}^{-1})\),\(\lambda_{\rm L} (\mu \mathrm{s}^{-1})\)
    -
    \(\alpha j_0\left(2\pi\nu t + \frac{\pi \varphi}{180}\right) \exp(\lambda_{\rm T}t) +\)
    +
    \(\alpha j_0\left(2\pi\nu t + \frac{\pi \varphi}{180}\right) \exp(-\lambda_{\rm T}t) +\)
    \(+ (1-\alpha) \exp(-\lambda_{\rm L} t)\)
      +internFldGK +ifgk +\(\alpha (1), \nu\) (MHz), \(\sigma (\mu \mathrm{s}^{-1})\), \(\lambda (\mu\mathrm{s}^{-1}), \beta (1)\) +
    +
    \(\alpha\left[\cos(2\pi\nu t)-\frac{\sigma^2 t}{2\pi\nu}\sin(2\pi\nu t)\right]\exp(-\sigma^2 t^2/2)+\)
    +
    \(+ (1-\alpha) \exp(-(\lambda t)^\beta)\)
    +
    + +[10] + +internFldLL +ifll +\(\alpha (1), \nu\) (MHz), \(a (\mu \mathrm{s}^{-1})\), \(\lambda (\mu\mathrm{s}^{-1}), \beta (1)\) +
    +
    \(\alpha\left[\cos(2\pi\nu t)-\frac{a}{2\pi\nu}\sin(2\pi\nu t)\right]\exp(-a t)+\)
    +
    \(+ (1-\alpha) \exp(-(\lambda t)^\beta)\)
    +
    + +[11] + abragam ab \(\sigma (\mu \mathrm{s}^{-1})\), \(\gamma\) (MHz) @@ -757,19 +777,19 @@ in case a \(\chi^2\) single-histogram fit is done, als
    \(+ \frac{\sigma_{+}}{\sigma_{+}+\sigma_{-}} \exp\left[\frac{\sigma_{+}^2 t^2}{2}\right] \left\{\cos(2\pi\nu t + \frac{\pi\varphi}{180}) - \sin(2\pi\nu t + \frac{\pi\varphi}{180}) \mathrm{Erfi}\left(\frac{\sigma_{+} t}{\sqrt{2}}\right)\right\}\)
    -[10] +[12] staticNKZF snkzf \(\Delta_0 (\mu \mathrm{s}^{-1})\), \(R_b = \Delta_{\rm GbG}/\Delta_0 (1)\) \(\frac{1}{3} + \frac{2}{3}\left(\frac{1}{1+R_b^2\Delta_0^2 t^2}\right)^{3/2} \left(1 - \frac{\Delta_0^2 t^2}{1+R_b^2\Delta_0^2 t^2}\right) \exp\left[-\frac{\Delta_0^2 t^2}{2(1+R_b^2\Delta_0^2 t^2)}\right]\) -[11] +[13] staticNKTF snktf \(\varphi (^\circ), \nu\) (MHz), \(\Delta_0 (\mu \mathrm{s}^{-1})\), \(R_b = \Delta_{\rm GbG}/\Delta_0 (1)\) \(\sqrt{\frac{1}{1+R_b^2 \Delta_0^2 t^2}} \exp\left[-\frac{\Delta_0^2 t^2}{2(1+R_b^2 \Delta_0^2 t^2)}\right] \cos(2\pi\nu t + \varphi)\) -see [11] +see [13] dynamicNKZF dnkzf @@ -779,7 +799,7 @@ in case a \(\chi^2\) single-histogram fit is done, als
    \(\Theta(t) = \frac{\exp(-\nu_c t) -1 -\nu_c t}{\nu_c^2}\)
    -see [11] +see [13] dynamicNKTF dnktf @@ -789,13 +809,13 @@ in case a \(\chi^2\) single-histogram fit is done, als
    \(\Theta(t) = \frac{\exp(-\nu_c t) -1 -\nu_c t}{\nu_c^2}\)
    -see [11] +see [13] muMinusExpTF mmsetf \(N_0 (1), \tau (\mu \mathrm{s}^{-1})\), \(A (1), \lambda (\mu \mathrm{s}^{-1})\), \(\varphi (^\circ), \nu\) (MHz) \(N_0 \exp(-t/\tau) \left[ 1 + A \exp(-\lambda t) \cos(2 \pi \nu t + \varphi) \right]\) -[12] +[14] polynom p @@ -853,22 +873,36 @@ in case a \(\chi^2\) single-histogram fit is done, als - +
    [10]see memonot DKS ready.
    [10]E.I. Kornilov and V.Yu. Pomjakushin, Physics Letters A 153, 364, (1991). +In the original work, \(\alpha=2/3,\, \lambda=0,\, \beta=1\). If you find values strongly deviating from these values you should question your analysis approach.
    - +
    [11]D.R. Noakes and G.M. Kalvius, Phys. Rev. B 56, 2352 (1997); -A. Yaouanc and P. Dalmas de Réotier “Muon Spin Rotation, Relaxation, and Resonance” Oxford Scientific Publication; -simplifying the original formulae by eliminating \(\Delta_{\rm eff}\) via the identity -\(\Delta_{\rm eff}^2 = (1+R_b^2)\Delta_0\).
    [11]M.I. Larkin et al., Physica B: Condensed Matter 289-290, 153 (2000). +In the original work, \(\alpha=2/3,\, \lambda=0,\, \beta=1\). If you find values strongly deviating from these values you should question your analysis approach.
    - + + +
    [12]This function is explicit for \(\mu^-\)! Do not try to use it for \(\mu^+\)!
    [12]see memonot DKS ready.
    + + + + + +
    [13]D.R. Noakes and G.M. Kalvius, Phys. Rev. B 56, 2352 (1997); +A. Yaouanc and P. Dalmas de Réotier “Muon Spin Rotation, Relaxation, and Resonance” Oxford Scientific Publication; +simplifying the original formulae by eliminating \(\Delta_{\rm eff}\) via the identity +\(\Delta_{\rm eff}^2 = (1+R_b^2)\Delta_0\).
    + + + +
    [14]This function is explicit for \(\mu^-\)! Do not try to use it for \(\mu^+\)!
    @@ -901,7 +935,7 @@ Whereas the theory is operating on the parameters and the time, functions curren

    User Functions

    In the case complicated and not predefined functions are needed to fit data, musrfit offers the possibility to implement external functions and introduce them to musrfit through the ROOT dictionary mechanism. The detailed rules these user-defined functions have to obey will be discussed -in the according section. Here only the syntax for the msr file is provided. To call a user function in the THEORY block the +in the according section. Here only the syntax for the msr file is provided. To call a user function in the THEORY block the keyword userFcn is used. It is followed by the name of the shared library which holds the C++ class where the function is implemented and the name of the class. Finally, all parameters are given in the order needed by the class. Of course it is also possible to use mapped parameters or functions instead of specifying the parameters directly.

    @@ -1732,7 +1766,7 @@ If enabled in the XML
    -

    Fit Types

    +

    Fit Types

    Single Histogram Fit (fit type 0)

    The single-histogram fit (fit type 0) is used to fit a function directly to the raw data using

    @@ -1843,8 +1877,8 @@ the single histogram RRF fit apply: if you not urgently need it: do not

    The same applies for the plot with plot type 8.

    -
    -

    User Functions

    +
    +

    User Functions

    musrfit offers the possibility to plug-in user-defined functions implemented in C++ classes to the fitting and plotting routines. In order to do so, basically two things are needed:

    @@ -2154,7 +2188,7 @@ In case this cannot be ensured, the parallelization can be disabled by ̵
  • Non-μSR Fit (fit type 8)
  • -
  • User Functions