From 38b289b99f7bb75059500c338689ff47ab808b94 Mon Sep 17 00:00:00 2001 From: Andreas Suter Date: Fri, 9 Apr 2021 09:33:08 +0200 Subject: [PATCH 1/5] add ROOT version information for better diagnostics. --- CMakeLists.txt | 2 +- cmake/config.h.in | 1 + src/any2many.cpp | 2 +- src/dump_header.cpp | 2 +- src/msr2data.cpp | 2 +- src/musrFT.cpp | 2 +- src/musredit_qt5/musredit/CMakeLists.txt | 28 +---------- src/musredit_qt5/musredit/PMusrEditAbout.cpp | 3 ++ .../musredit/forms/PMusrEditAbout.ui | 47 +++++++++++++++++-- src/musredit_qt6/musredit/CMakeLists.txt | 1 + src/musredit_qt6/musredit/PMusrEditAbout.cpp | 3 ++ .../musredit/forms/PMusrEditAbout.ui | 47 +++++++++++++++++-- src/musrfit.cpp | 2 +- src/musrt0.cpp | 2 +- src/musrview.cpp | 2 +- 15 files changed, 101 insertions(+), 45 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6f998dac..8d6f9231 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -5,7 +5,7 @@ if (CMAKE_VERSION GREATER_EQUAL 3.12) cmake_policy(SET CMP0075 NEW) endif (CMAKE_VERSION GREATER_EQUAL 3.12) -project(musrfit VERSION 1.7.0 LANGUAGES C CXX) +project(musrfit VERSION 1.7.1 LANGUAGES C CXX) #--- musrfit specific options ------------------------------------------------- option(nexus "build optional NeXus support. Needed for ISIS" OFF) diff --git a/cmake/config.h.in b/cmake/config.h.in index 2a72e18a..e4287b93 100644 --- a/cmake/config.h.in +++ b/cmake/config.h.in @@ -1,6 +1,7 @@ // config.h #define PACKAGE_VERSION "@PROJECT_VERSION@" +#define ROOT_VERSION_USED "@ROOT_VERSION@" // define to 1 if you have and it should be used #cmakedefine HAVE_ALLOCA_H 1 diff --git a/src/any2many.cpp b/src/any2many.cpp index 1afe0056..71a7ed6d 100644 --- a/src/any2many.cpp +++ b/src/any2many.cpp @@ -197,7 +197,7 @@ int main(int argc, char *argv[]) any2many_syntax(); else if (strstr(argv[1], "--v")) { #ifdef HAVE_CONFIG_H - std::cout << std::endl << "any2many version: " << PACKAGE_VERSION << ", git-branch: " << GIT_BRANCH << ", git-rev: " << GIT_CURRENT_SHA1 << std::endl << std::endl; + std::cout << std::endl << "any2many version: " << PACKAGE_VERSION << ", git-branch: " << GIT_BRANCH << ", git-rev: " << GIT_CURRENT_SHA1 << ", ROOT version: " << ROOT_VERSION_USED << std::endl << std::endl; #else std::cout << std::endl << "any2many git-branch: " << GIT_BRANCH << ", git-rev: " << GIT_CURRENT_SHA1 << std::endl << std::endl; #endif diff --git a/src/dump_header.cpp b/src/dump_header.cpp index ffe3daef..f106f46d 100644 --- a/src/dump_header.cpp +++ b/src/dump_header.cpp @@ -776,7 +776,7 @@ int main(int argc, char *argv[]) return 0; } else if (!strcmp(argv[i], "--version") || !strcmp(argv[i], "-v")) { #ifdef HAVE_CONFIG_H - std::cout << std::endl << "dump_header version: " << PACKAGE_VERSION << ", git-branch: " << GIT_BRANCH << ", git-rev: " << GIT_CURRENT_SHA1 << std::endl << std::endl; + std::cout << std::endl << "dump_header version: " << PACKAGE_VERSION << ", git-branch: " << GIT_BRANCH << ", git-rev: " << GIT_CURRENT_SHA1 << ", ROOT version: " << ROOT_VERSION_USED << std::endl << std::endl; #else std::cout << std::endl << "dump_header git-branch: " << GIT_BRANCH << ", git-rev: " << GIT_CURRENT_SHA1 << std::endl << std::endl; #endif diff --git a/src/msr2data.cpp b/src/msr2data.cpp index 33dd4a47..0bc8ba60 100644 --- a/src/msr2data.cpp +++ b/src/msr2data.cpp @@ -512,7 +512,7 @@ int main(int argc, char *argv[]) return 0; } else if (!strcmp(argv[1], "--version")) { #ifdef HAVE_CONFIG_H - std::cout << std::endl << "msr2data version: " << PACKAGE_VERSION << ", git-branch: " << GIT_BRANCH << ", git-rev: " << GIT_CURRENT_SHA1 << std::endl << std::endl; + std::cout << std::endl << "msr2data version: " << PACKAGE_VERSION << ", git-branch: " << GIT_BRANCH << ", git-rev: " << GIT_CURRENT_SHA1 << ", ROOT version: " << ROOT_VERSION_USED << std::endl << std::endl; #else std::cout << std::endl << "msr2data git-branch: " << GIT_BRANCH << ", git-rev: " << GIT_CURRENT_SHA1 << std::endl << std::endl; #endif diff --git a/src/musrFT.cpp b/src/musrFT.cpp index 3a5b60c8..83fd70e7 100644 --- a/src/musrFT.cpp +++ b/src/musrFT.cpp @@ -297,7 +297,7 @@ Int_t musrFT_parse_options(Int_t argc, Char_t *argv[], musrFT_startup_param &sta tstr = argv[i]; if (tstr.BeginsWith("--version")) { #ifdef HAVE_CONFIG_H - std::cout << std::endl << "musrFT version: " << PACKAGE_VERSION << ", git-branch: " << GIT_BRANCH << ", git-rev: " << GIT_CURRENT_SHA1 << std::endl << std::endl; + std::cout << std::endl << "musrFT version: " << PACKAGE_VERSION << ", git-branch: " << GIT_BRANCH << ", git-rev: " << GIT_CURRENT_SHA1 << ", ROOT version: " << ROOT_VERSION_USED << std::endl << std::endl; #else std::cout << std::endl << "musrFT git-branch: " << GIT_BRANCH << ", git-rev: " << GIT_CURRENT_SHA1 << std::endl << std::endl; #endif diff --git a/src/musredit_qt5/musredit/CMakeLists.txt b/src/musredit_qt5/musredit/CMakeLists.txt index a3d4d920..12d66ecf 100644 --- a/src/musredit_qt5/musredit/CMakeLists.txt +++ b/src/musredit_qt5/musredit/CMakeLists.txt @@ -1,9 +1,5 @@ #--- musredit for Qt > 5.0 ---------------------------------------------------- -#--- check if Qt5WebEngine or Qt5WebKit is present ---------------------------- -#find_package(Qt5WebEngine QUIET) -#find_package(Qt5WebKit QUIET) - set(qt_libs Qt5::Core Qt5::Widgets Qt5::Network Qt5::Xml Qt5::Svg Qt5::PrintSupport) set(musredit_src @@ -110,35 +106,13 @@ else (APPLE) ) endif (APPLE) -# set necessary tags depending if QtWebEngine, QtWebKit, -# or none of both are given -if (Qt5WebKit_FOUND) - target_compile_options(musredit - BEFORE PRIVATE - -DHAVE_QT_WEB_KIT - ) -endif (Qt5WebKit_FOUND) - -if (Qt5WebEngine_FOUND) - target_compile_options(musredit - BEFORE PRIVATE - -DHAVE_QT_WEB_ENGINE - ) -endif (Qt5WebEngine_FOUND) - -if (Qt5NoWeb) - target_compile_options(musredit - BEFORE PRIVATE - -DHAVE_QT_NO_WEB - ) -endif (Qt5NoWeb) - target_include_directories(musredit BEFORE PRIVATE $ $ $ $ + $ $ ) diff --git a/src/musredit_qt5/musredit/PMusrEditAbout.cpp b/src/musredit_qt5/musredit/PMusrEditAbout.cpp index e41f4603..831289dd 100644 --- a/src/musredit_qt5/musredit/PMusrEditAbout.cpp +++ b/src/musredit_qt5/musredit/PMusrEditAbout.cpp @@ -27,6 +27,7 @@ * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * ***************************************************************************/ +#include "config.h" #include "git-revision.h" #include "PMusrEditAbout.h" @@ -40,6 +41,8 @@ PMusrEditAbout::PMusrEditAbout(QWidget *parent) : QDialog(parent) fGitBranch_label->setText(QString("git-branch: %1").arg(GIT_BRANCH)); fGitRev_label->setText(QString("git-rev: %1").arg(GIT_CURRENT_SHA1)); + fMusrfitVersion_label->setText(QString("musrfit-version: %1").arg(PACKAGE_VERSION)); + fRootVersion_label->setText(QString("ROOT-version: %1").arg(ROOT_VERSION_USED)); setModal(true); } diff --git a/src/musredit_qt5/musredit/forms/PMusrEditAbout.ui b/src/musredit_qt5/musredit/forms/PMusrEditAbout.ui index 95858b64..6e3c4770 100644 --- a/src/musredit_qt5/musredit/forms/PMusrEditAbout.ui +++ b/src/musredit_qt5/musredit/forms/PMusrEditAbout.ui @@ -7,7 +7,7 @@ 0 0 395 - 225 + 331 @@ -17,13 +17,13 @@ :/images/musrfit.xpm:/images/musrfit.xpm - + - 13 - 13 + 14 + 14 371 - 201 + 311 @@ -44,6 +44,26 @@ p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'Sans Serif'; font-size:24pt; font-weight:400; font-style:italic;"> <p align="center" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">musredit ...</p></body></html> + + Qt::AlignCenter + + + + + + + + 75 + true + true + + + + musrfit-version: + + + Qt::AlignCenter + @@ -80,6 +100,23 @@ p, li { white-space: pre-wrap; } + + + + + 75 + true + true + + + + ROOT-version: + + + Qt::AlignCenter + + + diff --git a/src/musredit_qt6/musredit/CMakeLists.txt b/src/musredit_qt6/musredit/CMakeLists.txt index eae972a7..cf75525a 100644 --- a/src/musredit_qt6/musredit/CMakeLists.txt +++ b/src/musredit_qt6/musredit/CMakeLists.txt @@ -111,6 +111,7 @@ target_include_directories(musredit $ $ $ + $ $ ) diff --git a/src/musredit_qt6/musredit/PMusrEditAbout.cpp b/src/musredit_qt6/musredit/PMusrEditAbout.cpp index e41f4603..831289dd 100644 --- a/src/musredit_qt6/musredit/PMusrEditAbout.cpp +++ b/src/musredit_qt6/musredit/PMusrEditAbout.cpp @@ -27,6 +27,7 @@ * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * ***************************************************************************/ +#include "config.h" #include "git-revision.h" #include "PMusrEditAbout.h" @@ -40,6 +41,8 @@ PMusrEditAbout::PMusrEditAbout(QWidget *parent) : QDialog(parent) fGitBranch_label->setText(QString("git-branch: %1").arg(GIT_BRANCH)); fGitRev_label->setText(QString("git-rev: %1").arg(GIT_CURRENT_SHA1)); + fMusrfitVersion_label->setText(QString("musrfit-version: %1").arg(PACKAGE_VERSION)); + fRootVersion_label->setText(QString("ROOT-version: %1").arg(ROOT_VERSION_USED)); setModal(true); } diff --git a/src/musredit_qt6/musredit/forms/PMusrEditAbout.ui b/src/musredit_qt6/musredit/forms/PMusrEditAbout.ui index 95858b64..6e3c4770 100644 --- a/src/musredit_qt6/musredit/forms/PMusrEditAbout.ui +++ b/src/musredit_qt6/musredit/forms/PMusrEditAbout.ui @@ -7,7 +7,7 @@ 0 0 395 - 225 + 331 @@ -17,13 +17,13 @@ :/images/musrfit.xpm:/images/musrfit.xpm - + - 13 - 13 + 14 + 14 371 - 201 + 311 @@ -44,6 +44,26 @@ p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'Sans Serif'; font-size:24pt; font-weight:400; font-style:italic;"> <p align="center" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">musredit ...</p></body></html> + + Qt::AlignCenter + + + + + + + + 75 + true + true + + + + musrfit-version: + + + Qt::AlignCenter + @@ -80,6 +100,23 @@ p, li { white-space: pre-wrap; } + + + + + 75 + true + true + + + + ROOT-version: + + + Qt::AlignCenter + + + diff --git a/src/musrfit.cpp b/src/musrfit.cpp index 7be1860a..e082b403 100644 --- a/src/musrfit.cpp +++ b/src/musrfit.cpp @@ -464,7 +464,7 @@ int main(int argc, char *argv[]) if (argc == 2) { if (!strcmp(argv[1], "--version")) { #ifdef HAVE_CONFIG_H - std::cout << std::endl << "musrfit version: " << PACKAGE_VERSION << ", git-branch: " << GIT_BRANCH << ", git-rev: " << GIT_CURRENT_SHA1 << std::endl << std::endl; + std::cout << std::endl << "musrfit version: " << PACKAGE_VERSION << ", git-branch: " << GIT_BRANCH << ", git-rev: " << GIT_CURRENT_SHA1 << ", ROOT version: " << ROOT_VERSION_USED << std::endl << std::endl; #else std::cout << std::endl << "musrfit git-branch: " << GIT_BRANCH << ", git-rev: " << GIT_CURRENT_SHA1 << std::endl << std::endl; #endif diff --git a/src/musrt0.cpp b/src/musrt0.cpp index b0cdacbd..81525c70 100644 --- a/src/musrt0.cpp +++ b/src/musrt0.cpp @@ -237,7 +237,7 @@ Int_t main(Int_t argc, Char_t *argv[]) for (int i=1; i Date: Fri, 9 Apr 2021 10:03:34 +0200 Subject: [PATCH 2/5] changes needed since upcoming ROOT6.24 (minuit2) will break the backward compatibility. --- CMakeLists.txt | 12 ++++++++++-- cmake/config.h.in | 3 +++ src/classes/PFitter.cpp | 4 ++++ 3 files changed, 17 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 8d6f9231..7ab8229f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -82,6 +82,14 @@ if (ROOT_mathmore_FOUND) include(${ROOT_USE_FILE}) endif (ROOT_mathmore_FOUND) +#--- the next check is need to set a flag, since root 6.24 (minuit2) breaks +#--- the backwards compatibility. --------------------------------------------- +if (ROOT_VERSION VERSION_LESS "6.24") + set(ROOT_GRTEQ_24 0) +else () + set(ROOT_GRTEQ_24 1) +endif () + #--- check for boost ---------------------------------------------------------- find_package(Boost REQUIRED COMPONENTS @@ -119,7 +127,7 @@ if (qt_based_tools) # check for any Qt, i.e. AUTO if (qt_version STREQUAL AUTO) # try Qt6 - find_package(Qt6Core) + find_package(Qt6Core QUIET) if (Qt6Core_FOUND) find_package(Qt6Widgets CONFIG REQUIRED) find_package(Qt6Xml CONFIG REQUIRED) @@ -129,7 +137,7 @@ if (qt_based_tools) endif (Qt6Core_FOUND) # try Qt5 if (NOT Qt6Core_FOUND) - find_package(Qt5Core) + find_package(Qt5Core QUIET) if (Qt5Core_FOUND) find_package(Qt5Widgets CONFIG REQUIRED) find_package(Qt5Xml CONFIG REQUIRED) diff --git a/cmake/config.h.in b/cmake/config.h.in index e4287b93..a7ec8219 100644 --- a/cmake/config.h.in +++ b/cmake/config.h.in @@ -3,6 +3,9 @@ #define PACKAGE_VERSION "@PROJECT_VERSION@" #define ROOT_VERSION_USED "@ROOT_VERSION@" +// define to 1 if minor ROOT6 version is >= 24 +#define ROOT_GRTEQ_24 @ROOT_GRTEQ_24@ + // define to 1 if you have and it should be used #cmakedefine HAVE_ALLOCA_H 1 diff --git a/src/classes/PFitter.cpp b/src/classes/PFitter.cpp index 7d5eaf70..50633a0d 100644 --- a/src/classes/PFitter.cpp +++ b/src/classes/PFitter.cpp @@ -1840,7 +1840,11 @@ Bool_t PFitter::ExecutePrintLevel(UInt_t lineNo) return false; } +#ifdef ROOT_GRTEQ_24 + ROOT::Minuit2::MnPrint::SetGlobalLevel(fPrintLevel); +#else ROOT::Minuit2::MnPrint::SetLevel(fPrintLevel); +#endif // clean up if (tokens) { From 911c31fb1e0397795ca57dc49451e327be4a5887 Mon Sep 17 00:00:00 2001 From: Andreas Suter Date: Fri, 9 Apr 2021 11:07:14 +0200 Subject: [PATCH 3/5] applies already for 6.24-rc which is 6.23.99, hence the odd adaptation. --- CMakeLists.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 7ab8229f..98dcc9f2 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -84,11 +84,12 @@ endif (ROOT_mathmore_FOUND) #--- the next check is need to set a flag, since root 6.24 (minuit2) breaks #--- the backwards compatibility. --------------------------------------------- -if (ROOT_VERSION VERSION_LESS "6.24") +if (ROOT_VERSION VERSION_LESS "6.23") set(ROOT_GRTEQ_24 0) else () set(ROOT_GRTEQ_24 1) endif () +set(ROOT_GRTEQ_24 ${ROOT_GRTEQ_24} CACHE INTERNAL "ROOT Version check") #--- check for boost ---------------------------------------------------------- find_package(Boost REQUIRED From 692e7e44db917e68029f271c07ddde19a5e2b777 Mon Sep 17 00:00:00 2001 From: Andreas Suter Date: Fri, 9 Apr 2021 11:08:35 +0200 Subject: [PATCH 4/5] propagate ROOT_GRTEQ_24 properly to the compile options. --- src/classes/CMakeLists.txt | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/classes/CMakeLists.txt b/src/classes/CMakeLists.txt index eb822ebf..10662e71 100644 --- a/src/classes/CMakeLists.txt +++ b/src/classes/CMakeLists.txt @@ -159,6 +159,11 @@ target_include_directories( PRgeHandler BEFORE PRIVATE $ ) +#--- add ROOT Version >= 6.24 compile options if needed ----------------------- +if (ROOT_GRTEQ_24) + target_compile_options(PMusr BEFORE PRIVATE "-DROOT_GRTEQ_24") +endif(ROOT_GRTEQ_24) + #--- add OpenMP compile options if needed ------------------------------------- if (OpenMP_FOUND) target_compile_options(PMusr PUBLIC ${OpenMP_CXX_FLAGS}) From cac1415c3e8b6d86dcb57bcb3d5752699e9fc10b Mon Sep 17 00:00:00 2001 From: Andreas Suter Date: Fri, 9 Apr 2021 15:41:52 +0200 Subject: [PATCH 5/5] update of the docu. --- doc/html/acknowledgement.html | 12 +-- doc/html/any2many.html | 12 +-- doc/html/bugtracking.html | 12 +-- doc/html/cite.html | 12 +-- doc/html/genindex.html | 22 +++-- doc/html/index.html | 12 +-- 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 2019 -> 2043 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 | 12 +-- doc/html/user-libs.html | 12 +-- doc/html/user-manual.html | 158 ++++++++++++++++++++++++++++++++-- 18 files changed, 249 insertions(+), 101 deletions(-) diff --git a/doc/html/acknowledgement.html b/doc/html/acknowledgement.html index cefc7a67..f5c0370e 100644 --- a/doc/html/acknowledgement.html +++ b/doc/html/acknowledgement.html @@ -6,7 +6,7 @@ - Acknowledgements — musrfit 1.6.5 documentation + Acknowledgements — musrfit 1.7.1 documentation @@ -14,7 +14,7 @@ - + @@ -41,7 +41,7 @@
  • previous |
  • -
  • musrfit 1.6.5 documentation »
  • +
  • musrfit 1.7.1 documentation »
  • @@ -112,12 +112,12 @@ extremely competent way to deal with his projects as well as to deal with the ch
  • previous |
  • -
  • musrfit 1.6.5 documentation »
  • +
  • musrfit 1.7.1 documentation »
  • diff --git a/doc/html/any2many.html b/doc/html/any2many.html index a40b5c89..35d1fb3c 100644 --- a/doc/html/any2many.html +++ b/doc/html/any2many.html @@ -6,7 +6,7 @@ - any2many - a Universal μSR-file-format converter — musrfit 1.6.5 documentation + any2many - a Universal μSR-file-format converter — musrfit 1.7.1 documentation @@ -14,7 +14,7 @@ - + @@ -41,7 +41,7 @@
  • previous |
  • -
  • musrfit 1.6.5 documentation »
  • +
  • musrfit 1.7.1 documentation »
  • @@ -102,12 +102,12 @@ For a detailed description see previous | -
  • musrfit 1.6.5 documentation »
  • +
  • musrfit 1.7.1 documentation »
  • diff --git a/doc/html/bugtracking.html b/doc/html/bugtracking.html index d03b1293..93cfdfde 100644 --- a/doc/html/bugtracking.html +++ b/doc/html/bugtracking.html @@ -6,7 +6,7 @@ - Bugtracking — musrfit 1.6.5 documentation + Bugtracking — musrfit 1.7.1 documentation @@ -14,7 +14,7 @@ - + @@ -37,7 +37,7 @@
  • previous |
  • -
  • musrfit 1.6.5 documentation »
  • +
  • musrfit 1.7.1 documentation »
  • @@ -93,12 +93,12 @@ or send an e-mail to A. Suter at PSI.

  • previous |
  • -
  • musrfit 1.6.5 documentation »
  • +
  • musrfit 1.7.1 documentation »
  • diff --git a/doc/html/cite.html b/doc/html/cite.html index 9547634a..e5abbe98 100644 --- a/doc/html/cite.html +++ b/doc/html/cite.html @@ -6,7 +6,7 @@ - How to Cite musrfit? — musrfit 1.6.5 documentation + How to Cite musrfit? — musrfit 1.7.1 documentation @@ -14,7 +14,7 @@ - + @@ -41,7 +41,7 @@
  • previous |
  • -
  • musrfit 1.6.5 documentation »
  • +
  • musrfit 1.7.1 documentation »
  • @@ -114,12 +114,12 @@
  • previous |
  • -
  • musrfit 1.6.5 documentation »
  • +
  • musrfit 1.7.1 documentation »
  • diff --git a/doc/html/genindex.html b/doc/html/genindex.html index 5600bb03..903eea78 100644 --- a/doc/html/genindex.html +++ b/doc/html/genindex.html @@ -7,7 +7,7 @@ - Index — musrfit 1.6.5 documentation + Index — musrfit 1.7.1 documentation @@ -15,7 +15,7 @@ - + @@ -795,6 +795,10 @@ + -
    +
    rge-handler +
    + +
    root-build-fink
    @@ -802,12 +806,12 @@
    root-build-linux
    +
    root-build-macports
    -
    root-build-windows
    @@ -863,7 +867,7 @@ -
    technical-musrfit +
    technical-musrfit
    @@ -990,12 +994,12 @@
  • index
  • -
  • musrfit 1.6.5 documentation »
  • +
  • musrfit 1.7.1 documentation »
  • diff --git a/doc/html/index.html b/doc/html/index.html index 3347f0c8..13c807bf 100644 --- a/doc/html/index.html +++ b/doc/html/index.html @@ -6,7 +6,7 @@ - Welcome to the musrfit documentation! — musrfit 1.6.5 documentation + Welcome to the musrfit documentation! — musrfit 1.7.1 documentation @@ -14,7 +14,7 @@ - + @@ -37,7 +37,7 @@
  • next |
  • -
  • musrfit 1.6.5 documentation »
  • +
  • musrfit 1.7.1 documentation »
  • @@ -180,12 +180,12 @@
  • next |
  • -
  • musrfit 1.6.5 documentation »
  • +
  • musrfit 1.7.1 documentation »
  • diff --git a/doc/html/msr2data.html b/doc/html/msr2data.html index 76ea2043..e7a0794f 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.6.5 documentation + msr2data - A Program for Automatically Processing Multiple musrfit msr Files — musrfit 1.7.1 documentation @@ -14,7 +14,7 @@ - + @@ -41,7 +41,7 @@
  • previous |
  • -
  • musrfit 1.6.5 documentation »
  • +
  • musrfit 1.7.1 documentation »
  • @@ -434,12 +434,12 @@ fit serves as template for the second and so on. The template field stays empty
  • previous |
  • -
  • musrfit 1.6.5 documentation »
  • +
  • musrfit 1.7.1 documentation »
  • diff --git a/doc/html/mupp.html b/doc/html/mupp.html index 6d0ff7a7..75de1550 100644 --- a/doc/html/mupp.html +++ b/doc/html/mupp.html @@ -6,7 +6,7 @@ - mupp - μSR Parameter Plotter — musrfit 1.6.5 documentation + mupp - μSR Parameter Plotter — musrfit 1.7.1 documentation @@ -14,7 +14,7 @@ - + @@ -41,7 +41,7 @@
  • previous |
  • -
  • musrfit 1.6.5 documentation »
  • +
  • musrfit 1.7.1 documentation »
  • @@ -324,12 +324,12 @@ SCRIPT COMMANDS:
  • previous |
  • -
  • musrfit 1.6.5 documentation »
  • +
  • musrfit 1.7.1 documentation »
  • diff --git a/doc/html/musr-root.html b/doc/html/musr-root.html index 346ad988..343bf6a2 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.6.5 documentation + MusrRoot - an Extensible Open File Format for μSR — musrfit 1.7.1 documentation @@ -14,7 +14,7 @@ - + @@ -41,7 +41,7 @@
  • previous |
  • -
  • musrfit 1.6.5 documentation »
  • +
  • musrfit 1.7.1 documentation »
  • @@ -923,12 +923,12 @@ the entry has been added. The last token, previous | -
  • musrfit 1.6.5 documentation »
  • +
  • musrfit 1.7.1 documentation »
  • diff --git a/doc/html/musredit.html b/doc/html/musredit.html index b5d5b666..abbc8991 100644 --- a/doc/html/musredit.html +++ b/doc/html/musredit.html @@ -6,7 +6,7 @@ - musredit: the GUI Based Interface to musrfit — musrfit 1.6.5 documentation + musredit: the GUI Based Interface to musrfit — musrfit 1.7.1 documentation @@ -14,7 +14,7 @@ - + @@ -41,7 +41,7 @@
  • previous |
  • -
  • musrfit 1.6.5 documentation »
  • +
  • musrfit 1.7.1 documentation »
  • @@ -550,12 +550,12 @@ the corresponding fit parameter value, except the phases where the step will be
  • previous |
  • -
  • musrfit 1.6.5 documentation »
  • +
  • musrfit 1.7.1 documentation »
  • diff --git a/doc/html/objects.inv b/doc/html/objects.inv index 8148faf5b0edd8a4507c90c645de149764b61a04..a32253458754361caa88153aa1ae5c0daa58c063 100644 GIT binary patch delta 1944 zcmV;J2WR->5Bm?0d4J=$5x(mwP?c1zeZcIDXLmE1%a;5%ql#rIlDx^DTo4ITh)IA0 zfR;3mm2;k9pDEn{N&TCk_9O}H@9Rbb{YRx-3K{biF*g33u{qBO{Xo)c_1(he*=dyaE}{bhOxo__a!U>IKFun)FMna%M%uvTTh{B5n+tJuEXTimcIu6y#oH+%ziboEZ_( z(tz9ER)39xWPi3UxFISbPl)L0QqoKqOA}yyHddFBE%lpBI}o~oOiD=}VBHx=ruF*9 zQdL-5Fx>Q;c8&@wlw=v)1d!#HYuIgB6niLGX&j4BDf#1n)5!)z#+kD4>99xrv&Ar5 zaPJT@E%Th|bq_tRm9qO7qbV-ez#%M5P>d2L$=%9wX@A5V_CG4P^q#m^8V=VTG+Nke zIH-E%`c?2{iwde_%%C8PYZaiqqoL80!I0$fl z3)62KLAXe4;{@EVyHWz|rJ8>$h30YK_AVxs{ADkO1B|TFop^35&_0=AIfM}9@>OUh zF*kIgoqsy`-3GnSpR-hQ2wsQ>p2cVD8CEp+$nu7|IcIq$B=1CiU4ag4uWwSZSR2eg z^jpcK6?PqXnZ_0FpEZn*E-70eNnE29lc6mdB87xn_u>W^F9bO^~7*j`_>O$+UulB$=wjE*U0!e}#OdO=Src zL4TI35EWk@pMHEm;SH?5#f~k6V@JDGmQy8Z1T_TcSO~!*U<~>&XVGX%ZYpT6G>}d+ zG2gSIS#ENTipspc*?7b#K^*YHeN9Rkxmynbn=eBshg=vVVG-&-R#pSI^EW(;6@6fE z{BY?thjWIrX~@aN_3&R#ty6KG zzjN}(f9d0JLR@omagATSO%9ziS+Zj``3E)e6S~bW)dA9qp-%F!gq{>l+Bs3|e&(d@ z`v6)d*H^H%4z&Q|zH)qsDIot`$-jf6#cs+sUWsoj+Bj~xiL@x{dy4tAZX&DB#D7sj z?gq|zrlOZtO1wWal&_4jMcs3CAh;jQ#{EfucsIM7kZXi_I~H8&br(av-i;=|Z!zSo zfHZBjYK0G3VGfj1C%B2QpljO%h4)DPtBX6H9&cuY(c^S$CuyeUP?5t)zC4Vs`wv?T zSlPqjlc&cmY^0zOmT{L&+>D09{(s|bvj@oS!d}%(C)(X(2jhXzqB`KF@x>C{nGGuL zAyXZSHJd+s=sTInOlV*>v~IuHfFk;c_YS+06LxYxK;Xrzg0=CfKL#$@Jj1FCy@{*H zFrY)B&fL6l13BFnaDNX~sYSP-96e12JMmb+5Y>TT{4knrp$!&DgS~M$#ea0xpADw7 z!A-@3r)1sG+J=VS&5yS|9G)SaEkL)MvS~;$nK}?OgB8f}T_6(GllPa0v|1Ypxs-_dR7bBHt7Z-1O}!OviECp$s-h;^T;1}3x^i1_2D{d%xVKyj>4rL9vt z6i(Z%!jOuAcm}e=Pu2WCFai@6;R~c=y8oo&5Uo0e2!YI$0k};A%3?D^Y5-114{Ay8 zAgQHm|GosK`h|3}X=qzGs}V=LpL!U>o@J@@i>n1o@%`s*K#EGYKSvdy zx+;SBIZu}dc2&1p)5AZH-ip^i$>P|bU&jkWNTyCgGIbJ?sgqxVgK2Amp`{eooQ14@ zJr`=(+LfF{Q;$BzA4f3oX$@TvkIyoY6)G0rkNo!%h{rMQJb&PV8GaU0Gnw*dNO#YU zq^rY&Q|aoA<5ubVjHA-Yd0W6q`{WLgHPQTAcS?sk eZe>8^9<$NG=n?L4NJWlsjhGBcBL4?B2J)Lwi?}NQ delta 1919 zcmV-_2Y~qd591Gzd4JnB5WedvFw@S|J|In;v`usA$bX5ZmZeH^+MYBJ2}-C*fB`^D z%47B1XXrC^7a*xW+5**+ByhiP7YpnkHRn>un6HSj@rRVncuMFSGA~zOEo_#4LwfkV zlc~5tG+)!|K`Gr=agp*8WH{5&Vi)4qO6jo|7_vFCB3`)gUb7e3xMBK?T0tEOjDb`7QugD#=f3NvtAQD3ldOC&K>H$&9{;nPt1M zYPEvaQj~PbP^-CS8A+5T-NLGjSrM@`UE`C88-r%|i`0rdtu-M9xfLllwMsf;MntqQ z;I^05U!owHtbcQEh)T!LRj*evxShLN}06A;}%AI|IqMTHjcz za!YfDn|{&GL2iYTEQOl@vfOeFyDjp34+Sf=WAP~^|Nb)`Z9rt0Dhr#f>AP5#)rU&=b9VXg1ailDdVxQ)bQw#9-nLi+W-DQEClAqhaM&` z*kn&aKqoBXn1aik2!+KKIgKC9er+k2>x1OhVt-OC@;aSLd>n^|PYMaZVJwoj7UxI)IkR^#!c0LoL84D;*zV z3dm1O`B!kXShIb3Pkiw@#&OL}q(xrcQ-6%ws#PiLpQD5f0i3f`MUO`*@%~IuzBI<> zRb_8MaNC;hx(^NGbj0Zv^p#fw)4Ywc5i3|z8Vie(TgAVJkI267GQ6}#Fi$m!5JL(%Z} zP!(FV3(CR6sJ9c3Ikf662!?lq$$u8wV1YE)frV3yC*4VJJn3DPJa|ghjYh}N&>{FC zs)HjMq_YL+cC#D}DJEkFf|jEMIlePQqI&ZB{E$}bMf)jSVFtFNrh-^R;msiTa2aBkDD%vAM{YZ--oOtW2WO5 z#tY!T7D>W2zQY2iJ}G zptzP$cQQ-y_2mhYZl+BbLKAaL+NAo(NJ2Y;tpa4EFzTpS@+P2>Pk$}~gk%Vl3}Sj4 zBJ?gq=!X!YA47zG3K4oABJ^{RGhYWu1^N6Fu{TSX8*r|I&*w(3@EdiY<@OYs^gnK%7c z)m#`tGIbJ?sgsaQo%|RaOk1NMEu^sKBxLz(nyV$(0Rh&CrXJnIA4f1bYYpurk54j? zL^`K}~>1cX71D9dH76itlDm;f3dzeV*mUH&oNGq|<<`)79a@ zsrl-J<5u(a2}h-q)3$)GES}u~vL-O^w5N2aW-9|Cx5-8aqq|c!6&X%|Ook+p{{V>Q F)v3yFuV4TG diff --git a/doc/html/search.html b/doc/html/search.html index 2e2dfc1d..40182c00 100644 --- a/doc/html/search.html +++ b/doc/html/search.html @@ -6,7 +6,7 @@ - Search — musrfit 1.6.5 documentation + Search — musrfit 1.7.1 documentation @@ -14,7 +14,7 @@ - + @@ -41,7 +41,7 @@
  • index
  • -
  • musrfit 1.6.5 documentation »
  • +
  • musrfit 1.7.1 documentation »
  • @@ -89,12 +89,12 @@
  • index
  • -
  • musrfit 1.6.5 documentation »
  • +
  • musrfit 1.7.1 documentation »
  • diff --git a/doc/html/searchindex.js b/doc/html/searchindex.js index de7031b0..07c1f352 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","tutorial","user-libs","user-manual","setup-standard"],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","Tutorial for musrfit","Documentation of user libs (user functions)","User manual","Setting up musrfit on Different Platforms"],terms:{"\u03b1":[6,12,5,3,11,1,10,0,8,9,7,13],"\u03b2":[],"\u03b4":[6,12,5,3,11,1,10,0,8,9,7,13],"\u03b7":[6,12,5,3,11,1,10,0,8,9,7,13],"\u03b5":[6,12,5,3,11,1,10,0,8,9,7,13],"\u03b3":[6,12,5,3,11,1,10,0,8,9,7,13],"\u03b9":[6,12,5,3,11,1,10,0,8,9,7,13],"\u03ba":[6,12,5,3,11,1,10,0,8,9,7,13],"\u03c7":[6,12,5,3,11,1,10,0,8,9,7,13],"\u03bb":[6,12,5,3,11,1,10,0,8,9,7,13],"\u03bc":[6,12,5,3,11,4,1,10,0,8,9,7,13],"\u03bd":[6,12,5,3,11,1,10,0,8,9,7,13],"\u03bf":[6,12,5,3,11,1,10,0,8,9,7,13],"\u03c9":[6,12,5,3,11,1,10,0,8,9,7,13],"\u03c0":[6,12,5,3,11,1,10,0,8,9,7,13],"\u03c6":[6,12,5,3,11,1,10,0,8,9,7,13],"\u03c8":[6,12,5,3,11,1,10,0,8,9,7,13],"\u03c1":[6,12,5,3,11,1,10,0,8,9,7,13],"\u03c2":[6,12,5,3,11,1,10,0,8,9,7,13],"\u03c3":[6,12,5,3,11,1,10,0,8,9,7,13],"\u03c4":[6,12,5,3,11,1,10,0,8,9,7,13],"\u03b8":[6,12,5,3,11,1,10,0,8,9,7,13],"\u03c5":[6,12,5,3,11,1,10,0,8,9,7,13],"\u03be":[6,12,5,3,11,1,10,0,8,9,7,13],"\u03b6":[6,12,5,3,11,1,10,0,8,9,7,13],bastian:0,wojek:[0,3,5],veri:[12,10,0,8,7,13],much:[6,12,0,8,7],indebt:0,bmw:[],rigor:0,test:[0,8,13],musrfit:[],mani:[12,5,11,0,8,7,13],suggest:[0,5,13],contribut:[6,12,11,10,0],largest:0,part:[12,3,11,10,0,8,7,13],user:[],manual:[],which:[6,12,5,11,10,0,8,9,7,13],make:[12,0,8,9,7,13],access:[],broader:0,audienc:0,thank:0,uldi:0,locan:[0,9,3],work:[12,5,11,0,8,9,7,13],enabl:[],gpu:[],support:[],kind:[0,11,7],calm:0,extrem:0,compet:0,wai:[6,12,5,11,10,0,8,9,7,13],deal:[12,11,10,0,9,7,13],project:[0,13],well:[12,5,11,10,0,9,13],chao:0,physicist:0,think:0,admir:0,allow:[6,12,5,11,1,9,8,7,13],most:[12,5,11,1,9,7,13],from:[],other:[6,12,10,1,9,7,13],detail:[],descript:[],see:[6,12,5,11,1,10,9,8,7,13],here:[6,12,5,1,10,9,8,7,13],report:[12,2,13],bug:[8,2,13],request:[6,12,10,2,13],"new":[12,5,10,8,2,7,13],featur:[],improv:[11,2,13],pleas:[12,3,5,11,10,2,7,13],bitbucket:[12,2,13],repo:[9,2,13],prefer:[12,8,2,13],send:[12,2],mail:2,suter:[9,2,3],psi:[12,11,10,9,8,2,7,13],sinc:[6,12,3,5,10,9,7,13],quit:[12,3,8,7,13],some:[],effort:3,develop:[],mainten:[3,7],packag:[],you:[6,12,3,9,8,7,13],should:[6,12,3,5,11,10,9,8,7,13],least:[12,3,5,10,13],your:[12,3,5,9,8,13],"public":[12,11,3,13],have:[12,3,5,11,10,9,8,7,13],analyz:[],data:[],even:[12,3,5,7,13],better:[12,3,5],cours:[12,3,5],properli:[12,9,3,5],refer:[12,3,11,10,9,8,7,13],given:[6,12,3,5,11,10,9,8,7,13],beneath:[8,3],free:[12,3,11,8,7,13],platform:[],independ:[12,11,3],framework:[],analysi:[12,3,5,11,10,9,7,13],physic:[6,12,3,9,7],procedia:3,http:[12,3,11,9,8,7,13],doi:3,org:[3,13],phpro:3,high:[],speed:[],version:[6,12,3,11,9,8,7,13],util:[12,3,9,7,13],"case":[6,12,3,5,11,10,9,8,7,13],thi:[6,12,3,5,11,10,9,8,7,13],also:[6,12,3,5,11,10,9,8,7,13],add:[6,12,3,5,10,9,8,7,13],follow:[6,12,3,5,11,10,9,8,7,13],citat:3,adelmann:3,dynam:[9,3],kernel:[9,3],schedul:[9,3],comput:[9,3,13],commun:3,cpc:3,real:[12,3,10,9,13],time:[6,12,3,11,10,9,8,7,13],paramet:[],fit:[],imag:[12,3,10],reconstruct:3,graphic:[],process:[],unit:[12,3,7,10],conf:[9,3,13],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:[12,5,4],search:[12,4,13],page:[4,10,9,8,7,13],origin:[12,8,11,5],written:[12,5,11,10,8,7],implement:[12,5,11,9,8,7,13],purpos:[12,5,13,10],input:[12,5,10,0,8],same:[6,12,5,11,10,9,7,13],summar:[5,10],result:[12,5,11,10,8,7],either:[6,12,5,11,10,8,13],triumf:[12,8,5,10],column:[12,5,10,8,7],ascii:[12,5,11,10,8],essenti:[12,8,5,7],collect:[6,12,5,11,10,8,7,13],old:[12,5,13],abridg:5,produc:[12,5,13,10],can:[6,12,5,11,10,9,8,7,13],view:[],instanc:[6,12,5,7,13],howev:[12,5,10,9,13],thei:[12,5,10,9,7,13],complet:[5,11,10,9,13],backward:[12,5,7],compat:[12,9,5,13],languag:5,name:[6,12,5,11,10,9,8,7,13],longer:5,than:[12,5,10,8,7,13],five:[5,10],six:5,charact:[12,5],order:[6,12,5,11,9,7,13],establish:5,need:[6,12,5,11,10,9,8,7,13],ensur:[12,5],correct:[12,5,10,8,13],length:[11,5,7],apart:[11,5,13],numer:[11,5,13],might:[6,12,5,11,8,7,13],principl:[11,5,13],four:[12,5],call:[6,12,5,11,10,8,7,13],suppli:[12,9,11,5],number:[6,12,5,11,10,9,8,7,13],firstrunno:5,lastrunno:5,interv:[12,5],specifi:[12,5,11,10,8,7,13],through:[12,5,11,10,7,13],first:[6,12,5,11,10,9,8,7,13],last:[],condit:[11,5],necessari:[12,5,10,8,7,13],runlist:[12,5],where:[6,12,5,11,10,9,8,7,13],combin:[12,5,10,8,7],run0:5,run1:[12,5],run2:[12,5],runn:5,rang:[],step:[],sequenc:[12,5,10],posit:[12,5,7,10],integ:[12,5,7],etc:[6,12,5,9,8,7,13],runlistfilenam:5,contain:[],extern:[12,5,11,7,13],pass:[12,8,5],below:[12,5,11,10,7,13],all:[6,12,5,10,9,8,7,13],mandatori:[12,11,5,7],right:[12,5,11,10,7,13],after:[12,5,10,9,8,7,13],mean:[6,12,5,11,10,9,8,7,13],becom:[5,13],clear:[12,8,5,7],give:[12,5,10,7,13],exampl:[6,12,5,11,10,8,7,13],"_tf_h13":5,out:[6,12,5,10,9,8,7,13],chang:[12,5,9,8,13],"8472_tf_h13":5,"8473_tf_h13":5,"8474_tf_h13":5,"8470_tf_h13":5,directori:[12,5,11,10,9,8,7,13],put:[12,8,5,13],var1:5,var2:5,var3:5,comment:[6,12,5,9,8,7,13],empti:[6,8,12,5],line:[6,12,5,11,10,8,7,13],determin:[],label:[6,12,5,11,8,7],present:[6,12,5,11,10,9,8,7,13],preced:5,mention:[12,5,11,7,13],togeth:[6,12,5,10,8,7,13],abov:[6,12,5,11,10,9,8,7,13],output:[6,12,5,11,10,8],onli:[6,12,5,11,10,9,8,7,13],newli:[6,8,5,10],creat:[],did:[5,13],exist:[12,5,13],befor:[12,5,11,10,9,8,7,13],invok:[6,8,12,5],were:[12,8,5,7],alreadi:[6,12,5,9,8,13],would:[6,12,5,11,10,9,8,7,13],append:[12,5,13],been:[12,5,11,10,8,7,13],header:[],block:[],forc:[12,5],suppress:5,nohead:[8,5],shall:[12,5,11,10,8,7,13],seen:[6,5,7,10],later:[12,5,13,10],like:[6,12,5,11,9,8,7,13],behavior:[12,5],ani:[12,5,10,9,8,7,13],simpl:[12,5,11,10,13],"default":[12,5,9,8,13],dat:[6,12,5,11,10,8],delet:[5,7],inform:[],both:[12,11,5,13],none:[12,8,5,10],write:[],sole:[12,5],assum:[12,5,11,10,9,8,7,13],nosummari:[8,5],attempt:5,read:[],addit:[6,12,5,11,10,9,8,7,13],temperatur:[6,12,5,10,7],appli:[6,12,5,11,10,7,13],magnet:[6,5,11,8,7],field:[],paramlist:5,param:[6,8,12,5],select:[6,12,5,10,9,8,7,13],"export":[12,5,10,9,13],startno:5,endno:5,space:[12,11,5,13],separ:[12,5,10,8,13],outputfilenam:[12,5],instead:[6,12,5,11,9,13],equal:[12,5,10],insensit:5,addition:[12,5,10,8,13],"final":[12,5,11,10,13],templat:[12,8,5,10],perform:[6,12,5,10,8,7,13],mlog:[12,8,5],subsequ:[12,5],chain:[8,5],exclam:5,mark:[12,5],without:[],keep:[12,8,5,7],mn2:[12,5],done:[6,12,5,11,10,9,7,13],ignor:[6,12,5],titl:[],illustr:[12,5],few:[12,5,8,7,13],explan:[12,5],oabc:5,"8400_tf_h13":5,"8460_tf_h13":5,abc:5,about:[12,5,10,7,13],"_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:[12,5,11,10,13],"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:[12,5,11,10,9,8,7,13],anoth:[6,12,5,8,7],each:[6,12,5,11,10,7,13],defin:[],common:[12,5,13],specif:[12,5,11,10,8,7,13],when:[12,5,11,10,8,7,13],obtain:[11,5,7],valid:[],conjunct:[12,11,5],invoc:[12,5],state:[],idea:[12,5,7,10],basi:5,identifi:[12,5],tag:[6,12,5,11,10,8,13],current:[6,12,5,11,9,8,7,13],"0xu":5,digit:[12,5],lead:[12,5,11,8,7],zero:[12,5,10,8,7],end:[6,12,5,10,8,7,13],alpha0123:5,alpha00123456:5,fitparamet:[],exemplari:[12,5],"8472_exampl":5,could:[6,12,5,11,9,8,13],therefor:[12,5,11,10,13],look:[6,12,5,11,9,8,7,13],valu:[12,5,10,9,8,7,13],pos_error:[12,5,10],boundari:[12,5,11,10,8],phase:[12,5,11,10,8],asy8472:5,rate8472:5,treat:[5,13],wherea:[12,8,5],normal:[6,12,5,10,13],within:[6,12,5,11,10,8,7,13],appear:[12,5],explicitli:[12,8,5],theori:[],those:5,met:5,"try":[12,5,13],substitut:[12,5,13,10],them:[12,5,11,10,8,7],map:[],accordingli:[6,5,13,10],"_exampl":5,global_exampl:5,alwai:[6,12,5,11,7],start:[6,12,5,10,9,8,7,13],asy8471:5,rate8471:5,asy8470:5,rate8470:5,show:[6,12,5,10,8,7],reorgan:5,begin:[12,5,7,13],copi:[12,8,5,13],found:[12,5,11,10,9,8,7,13],dure:[6,12,5,11,13],affect:5,occurr:[5,13],awar:[12,5,13],fact:[5,13],propag:5,model:[],usual:[12,11,5],store:[5,11,8,7,13],reach:[12,5],goal:[12,5],obei:[12,5],certain:[11,5],rule:[12,8,5,7],match:[12,5],accord:[12,5,10,8,13],achiev:[5,13,10],easili:[9,8,5,13],shown:[6,12,5,10,8,7],globalfit:5,relev:[12,5,10,8,7],pre:[8,5],afterward:[6,12,5,11,9,7,13],special:[12,5,7],replac:[12,5,13],review:5,activ:[8,11,5,13],choos:[12,5,11,10,8,13],keyword:[12,5],onerunfit_exampl:5,onerunfit:5,everi:[6,12,5,13],similar:[5,13],explain:[12,5,11,10,9,8,7,13],moment:[11,5,7,13],peopl:[5,7,13],cannot:[12,11,5],behav:[11,5],integr:[11,5],filenam:[6,12,5,7],rightmost:5,highest:[5,13],treatabl:5,statist:[],itself:[5,10],more:[6,12,5,10,9,8,7,13],creativ:5,care:[12,5,13],addrun:[12,5],statement:[12,5],simpli:[12,5,13],probabl:[5,7,13],what:[12,5,11,10,9,13],two:[12,5,11,10,8,7,13],success:[6,12,5,10,7],encount:5,actual:[12,11,5,13],measur:[6,12,5,11,10,8,7],introduc:[12,5,10,7,13],reason:[12,5,13,10],shape:[12,11,5],design:[5,13],especi:[12,5,11,9,7,13],manipul:[12,8,5],front:[8,5,7,10],offer:[12,5,10],almost:[12,8,5],self:[8,5],explanatori:[8,5],depict:[12,5],under:[6,12,5,9,8,7,13],stai:5,enter:[9,8,5,13],otherwis:[12,9,5,13],serv:[12,5,10],second:[12,5,11,10,8],noth:[12,8,5,7],correspond:[6,12,5,10,8,7,13],littl:[6,8,12,13],helper:[6,12,8,7,13],quickli:[6,9],plot:[],handl:[6,12,11,8,7,13],heavili:[6,11],inspir:6,via:[],command:[],directli:[6,12,8,7,13],typic:[6,12,9,8,13],load:[6,11,12],dialog:[],tri:[6,12,13],fly:[6,10],drag:[6,13,10],over:[6,12,13],axi:[6,12,11,10,7],wish:[6,12],click:[6,8,12],analog:6,remov:[6,12],often:[6,8,12,13],compar:[6,9,12,13],trend:6,hold:[6,12,7],energi:[6,11,7,12],scan:[6,12],now:[6,12,10,9,13],interest:[6,12,13],ditto:6,less:[6,12,13],error:[6,12,11,10,9,8,7,13],prone:[6,9,8],quicker:[6,12],button:[6,8,12,10],mupp_plot:6,applic:[6,12,11,9,8,13],refresh:6,reload:[6,8],beamtim:6,grow:6,task:6,mous:[6,12],gambl:6,futur:[6,8,13],plane:6,help:[6,12,9,8,13],cmd:[6,12,13],manner:[6,13],updat:[6,12,10,9,13],web:[6,12,0,8,7,13],interact:[6,11,12,10],figur:[6,12,7],loadpath:6,dir:6,path:[6,12,10,9,8,7,13],bash:[6,13],variabl:[],home:[6,12,11,9,8,7,13],accept:[6,8,12],coll:6,selectal:6,carri:[6,12,13],ybco:6,"40nm":6,t5k:6,fc150mt:6,escan:6,addx:[],addi:[],savepath:6,save:[6,12,11,10,8,7,13],place:[6,12,13,10],macro:6,fln:[6,12],txt:[6,13],t30k:[],t60k:[],t120k:[],fieldvsenergi:[],pdf:[6,12],"true":[6,11,7,12],best:[6,12,11,7,13],ever:[6,7],thie:[],labl:[],until:[12,7,10],bulk:[],instrument:[12,8,7,13],bin:[12,10,8,7,13],fix:[12,10,8,7,13],binari:[7,13],rather:[12,8,7,13],stringent:7,lem:[12,11,7],cern:[12,7,13],tightli:7,tailor:7,situat:[12,7,13],unsatisfactorili:7,henc:[6,12,10,9,7,13],decid:[12,7,13],move:[12,13,7,10],forward:[12,9,7,10],acquisit:7,mida:7,respons:[12,9,7],build:[],decai:[12,7,10],easi:[8,7],object:[],th1f:7,orient:[11,7],mine:7,frame:[12,9,7],tfile:7,eas:[12,7,13],understand:[12,7],upcom:7,definit:[12,7,10],thing:[12,9,8,7,13],check:[],guid:[12,9,7],organ:[12,8,7],similarli:[12,7],browser:7,inspect:7,tbrowser:7,deriv:[12,7],tobject:7,small:[12,11,9,8,7,13],subset:[12,7],tfolder:7,top:7,level:[12,7],tobjarrai:7,tobjstr:7,content:[12,7,13],form:[12,11,10,9,7,13],box:[12,9,8,7],entri:[12,7],sketch:[12,7],histo:[12,10,8,7,13],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:[12,7],"class":[12,11,7],folder:[7,13],next:[6,12,11,9,8,7,13],section:[12,7,13],slow:7,control:[12,9,7],sampl:[9,11,7,10],versu:7,again:[12,9,8,7,13],meta:[12,7],minim:[12,11,10,7,13],bracket:7,item:[12,7],detector:[12,11,10,8,7],environ:[],beamlin:[12,8,7,10],elabor:[9,7],word:7,sub:[12,13,7,10],intern:[12,8,7],tstring:7,git:[12,9,7,13],url:7,xsd:7,wrote:7,nemu_analyz:7,deltat_tdc_gps_4295:7,int_t:[12,7],iso:7,date:[12,13,7,10],stop:7,durat:7,sec:[12,7],laboratori:7,muon:[],beam:[12,7],momentum:[11,7,10],mev:7,speci:7,neg:[],sourc:[],target:7,low:[12,11,7],setup:[12,9,7,13],cf1:7,wxy:7,resolut:[11,7],redgreen:[12,7],offset:[12,7],tintvector:7,except:[12,8,7,13],shortli:[12,7],discuss:[12,9,8,7],experi:[12,7],stimuli:7,electr:7,off:[12,7],doubl:[12,7],distinguish:7,easier:[7,13],let:7,sai:7,red:[12,10,9,7,13],green:[12,7,10],browsabl:7,string:[12,8,7,13],tobjstringv:7,quantiti:7,repres:[12,7,10],properti:[12,7],estim:[12,8,11,7],demand:[12,7],depend:[12,11,10,9,8,7,13],musrrootv:7,mock:7,print:[12,8,7],notic:[12,8,7],find:[12,9,8,7,13],encod:[12,11,8,7,13],price:7,pai:7,shade:7,"import":[12,7],approach:[12,7,13],standard:[12,9,7,13],"abstract":[12,7],text:[6,12,10,8,7],though:[8,7,13],clean:[9,7,13],lot:[12,7],"2nd":7,slightli:[12,9,8,7,13],advantag:[12,8,7,13],maintain:7,expand:7,classifi:7,group:[12,8,7,13],previou:[12,7,13],"float":7,point:[12,11,10,8,7,13],double_t:[12,7],tstringvector:7,tdoublevector:7,themselv:[11,7],vector:[6,11,7,12],code:[12,11,10,9,7,13],snippet:[12,7],reader:7,routin:[12,11,7,13],convers:[12,7],write_musrroot_runhead:7,full:[12,13,7,10],concentr:7,just:[12,11,9,7,13],prop:7,further:[],down:[12,8,7,10],deltat_tdc_gps_2871:7,come:[8,7,13],overload:7,pathnam:7,method:[12,7],tdc:[12,7],cf3:7,mrh_undefin:7,strang:7,fed:[12,7],whole:7,someth:[12,9,7,13],recreat:[8,7],iszombi:7,"return":[12,7],info:[],fillfold:7,close:[12,8,7,13],read_musrroot_runhead:7,getobject:7,cerr:[12,7],endl:[12,7],couldn:[12,7],get:[12,9,8,7,13],closefil:7,extractal:7,decod:7,fill:[12,7,10],getter:7,bool_t:[12,7],ival:7,cout:7,els:[12,8,7,13],getvalu:7,geterror:7,getunit:7,getdemand:7,getdescript:7,mechan:[12,7],inde:7,minimum:7,scheme:7,musrrootvalid:7,recurs:7,pars:[6,7],temporari:7,xml:[],ampl:[12,7],parser:[7,13],hand:[12,7],decent:7,book:7,libxml2:[7,13],becaus:[8,7],suppos:[12,7,13],against:[6,7],schema:7,lmu:[8,7],semant:7,preform:7,cross:[12,7,13],facil:[12,8,7],musrrootlem:7,poitiv:7,wew:7,hdecay023:7,detector023:7,potenti:[],discontinu:7,"break":7,element:7,left:[8,11,7],npp:[12,10,8,7,13],spectromet:[12,9,7,10],good:[12,8,7,13],enough:[12,7,13],cryo:7,cryostat:7,oven:7,konti:7,pim3:[12,7,10],hypothet:7,light:7,per:[12,8,7],bottom:7,split:[12,7,13],mind:7,symbol:[12,7,13],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":[12,9,8,7,13],jump:[12,7],cpp:[12,7],"00z":7,nemu:[12,7,13],lem12_his_0234:7,said:7,detector038:7,insert:7,x123:7,perp:7,spin:[12,11,7,10],mue4:[12,8,7],scalerinfo:7,runsummari:7,wed:7,oct:7,lco:7,wtf:7,kev:[12,11,7],ledb:7,buc:7,edit:[6,10,8,7,13],euc:7,event:[7,10],event_0:7,mcp1:7,event_1:7,mcp2:7,event_2:7,lemusr:7,problem:[],deviat:[12,7],hereaft:7,snip:7,somewher:[8,7,13],token:[12,7],val:[12,7],err:[6,7],cf4:7,cf5:7,editor:[8,13,10],suit:[12,8,11,10],intend:[12,8,13],eventu:[8,10],drop:[8,13],outdat:[12,8,13],earli:[12,8],anymor:[8,13],still:[12,8,11,13],urg:8,strongli:[12,8,13],recommend:[8,11,13],shell:[12,8,13],tab:[12,8],startup:[],displai:[12,8,11,13],locat:[12,11,10,8,13],proof:8,exec_path:8,path_to_exec:8,musrview:[],musrt0:[],insid:[12,8,11,13],default_save_path:8,save_path:8,msr_default_file_path:8,msr_def_path:8,timeout:[12,8],canva:[12,8,10],keep_minuit2_output:8,flag:[12,8],minuit2:[],kept:[12,8],dump_ascii:8,dump:[12,8],dump_root:8,title_from_data_fil:8,chisq_pre_run_block:8,chisq:[12,8,10],estimate_n0:8,procedur:[12,11,10,8,13],musrview_show_fouri:8,fourier:[],transform:[12,11,10,8,13],domain:[12,8,10],musrview_show_avg:8,averag:[12,8,11],power:[12,10,9,8,13],spectra:[12,8],enable_musrt0:8,font_set:8,font:[8,13],font_nam:8,font_siz:8,size:[12,8],msr_file_default:8,institut:[12,8,10],inst:8,ral:[8,13],jparc:8,file_format:[12,8],nexu:[],musr:[12,8],ppc:[12,8,10],mdu:[12,8,10],wkm:[12,8,10],mud:[12,8,10],lifetime_correct:8,lifetimecorrect:[12,8],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,13],who:8,help_sect:8,variou:[12,8,13],messag:[12,8],musr_web_x:8,link:[6,8,12,13],main:[8,13,10],musrft:[],func_pixmap_path:8,pix_path:8,latex:8,pixmap:8,visual:[8,10],theory_funct:8,syntax:[12,8],func:8,menu:[12,8,13,10],pictur:8,utf:[12,8,11,13],xmln:[12,8],html:8,usr:[8,13],local:[9,8,11,13],share:[12,9,8,13],doc:[12,8,13,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:[6,8,12],statgsskt:[12,8],rate:[12,8,11,10],"static":[8,11,13],gauss:[12,8,11,10],respect:[12,11,10,8,13],bar:[12,8],keyboard:[8,10],shortcut:[],scratch:[8,13],too:[8,13],priori:8,knowledg:8,calcul:[12,8,11,10],log:[6,8,11,12],max:[6,8,12],likelihood:[12,8,11],kei:[],alt:8,equival:[12,8,13],mai:[12,8,13],chosen:[12,8,13],swap:[12,8],vice:[12,8],versa:[12,8],adjust:[12,8,13,10],initi:[12,11,10,8,13],fitter:8,own:[12,8],docu:[12,9,8],raw:[12,8],dump_head:[],stage:[12,8],wand:8,coupl:[12,9,8,13],dialogu:8,briefli:[8,13],explicit:[12,8],year:[12,9,8],pull:[8,13],choosen:8,rrf:[],minu:8,transvers:[12,8,10],longitudin:8,choic:[12,8,13],question:[12,8],ask:[8,13],correctli:[12,8,13,10],proper:[12,9,8,13],prompt:[12,9,8,13],peak:[12,8,11],pop:8,disadvantag:8,freeli:8,custom:[12,8],cost:8,yourself:8,stand:[9,8],whatev:[9,8],press:[12,8,10],syntact:8,appropri:[9,8],previous:8,handi:8,furthermor:[12,8,13],pack:[12,8,13,10],minuit:[12,8,11],reset:[12,8],sometim:[12,8],went:[8,13],wrong:8,leav:8,far:[12,8],iter:[12,8,11],individu:[12,8],tediou:[8,11],popup:8,asym:8,uncheck:8,unselect:8,modifi:[8,11],degre:[12,8,10],cancel:8,anyth:[12,8],scale:[12,8],factor:[12,8],absolut:[12,8,13,10],explor:[9,13],hal:[12,9],memo:[12,9],rotat:[12,9,10],tremend:[9,13],muonium:[12,9],appl:[9,13],cpu:[12,9,13],straight:9,multi:[12,9,13],thread:[12,9,13],doesn:[6,9],openmp:[12,9,13],shop:9,bui:9,gamer:9,sure:[12,9,13],server:[9,13],suffici:[9,11],strong:[12,9,10],yet:[12,11,10,9,13],fall:[12,9],back:[12,9],conceptu:9,latest:[9,13],hardwar:9,crunch:9,readi:[12,9,13],acceler:[12,9],termin:[12,9,13,10],lspci:9,grep:[9,13],corpor:9,gk110bgl:9,rev:[12,9,11],recogn:9,download:[9,13],center:[9,11],hat:[9,13],enterpris:9,rhel:[9,13],rpm:[9,13],diag:9,rhel7:9,x86_64:9,conflict:9,nouveau:9,reboot:9,machin:[9,11,13],omit:[12,9,13],thin:[9,11],host:9,incorpor:9,paper:9,wiki:9,brief:[12,9,13],clone:[9,13],got:9,consist:[12,9,11],gitlab:[12,9,13],uldis_l:9,mkdir:[9,13],denable_musr:9,dcmake_install_prefix:[9,13],exec:9,non:[],librari:[12,9,11,13],"super":9,sbin:[9,13],ldconfig:[9,13],ld_library_path:[9,13],launchctl:[9,13],setenv:[9,13],checkout:[9,13],branch:[9,13],dks6:9,soon:13,want:[12,13],tell:12,aslib:13,bmwlib:13,prefix:13,rootsi:[9,13],lookup:9,superus:[9,13],ddk:9,disabl:[12,9,13],daslib:[9,13],dbmwlib:[9,13],dnexu:[9,13],vga:9,advanc:9,micro:[12,9],devic:9,inc:9,ati:9,hawaii:9,grenada:9,"290x":9,amdgpu:9,pro:[9,13],unpack:[9,13],tar:[12,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:[12,9],opt:[12,9,13],amdappsdk:9,note:[],instruct:[12,9,13],compil:[12,9,13],xcode:[9,13],deliv:9,easiest:[9,13],involv:[9,11],demonstr:13,"while":13,brave:13,virtual:13,encourag:13,gcc:[12,13],tool:[12,13],autoconf:13,libtool:13,toolchain:[],drope:[],releas:[12,13],plan:[],pkg:13,config:13,boost:13,spirit:13,scientif:[12,11,13],effici:[12,11,13],mathemat:[6,12,13],fftw:13,fast:13,discret:[13,10],toolkit:13,gnome:13,hdf4:[12,13],manag:13,hdf5:[12,13],minixml:13,neutron:13,rai:13,scienc:13,focus:13,seriou:13,distribut:[],fedora:13,debian:13,ubuntu:13,mint:13,opensus:13,nativ:13,microsoft:13,distributor:13,taken:[12,13],dev:13,devel:13,trick:13,never:13,qt4:13,yum:13,gsl:13,qtwebkit:13,qt5:13,epel:13,qtbase:13,qtsvg:13,dpkg:13,apt:13,libboost:13,libgsl:13,libfftw3:13,libqt4:13,libqtwebkit:13,qtbase5:13,libqt5svg5:13,libqt5webkit5:[],everyon:13,know:13,himself:13,doe:[12,13],websit:13,engin:13,mxml:13,hdf:13,libmxml1:[],libmxml:[],libhdf4:13,libhdf5:13,urgent:12,isi:[12,13],safe:12,master:13,repositori:13,github:13,com:13,nexusformat:13,denable_hdf5:13,denable_hdf4:13,denable_mxml:13,sudo:13,flavour:[12,13],legaci:13,incompat:13,guess:[12,13],warn:[12,13],upgrad:13,recompil:13,redhat:13,libx11:13,libxft:13,libxpm:13,libxext:13,systemat:13,term:13,offici:13,root_build:13,dgminim:13,dasimag:13,dmathmor:13,dminuit2:13,dxml:13,root_exec:13,multicor:13,miss:[12,13],told:13,luke_skywalk:13,echo:13,bashrc:13,bash_profil:13,restart:13,onc:[12,11,13,10],proceed:13,recent:[12,13],muonspin:13,root5:[],root6:13,newer:13,dec:13,whether:12,uninstal:[],xarg:13,install_manifest:13,altern:[12,13],autogen:[],prepar:13,successfulli:[12,13],makefil:12,besid:[],fftw3:[11,13],boostinc:[],qt3:13,qt47:[],lib64:[],omp:12,parallel:[12,11,10],detect:10,permiss:[],dbnmrlib:13,bnmrlib:13,dqt_based_tool:13,dqt_version:13,auto:13,dtry_openmp:13,core:13,finish:[13,10],musrfitpath:13,musrfit_startup:[],built:[12,13],everth:[],src:13,musredit_qt5:13,qmake:13,fine:13,skip:13,higher:13,uic:13,quick:[12,13],hasn:13,adventur:13,advic:13,wonder:13,occur:13,great:13,gain:13,nice:[11,13],unix:13,revis:[12,13],fulfil:13,abl:13,a2p:13,passwd:13,binutil:13,bison:13,bzip2:13,colorgcc:13,coreutil:13,curl:13,cygutil:13,editright:13,findutil:13,flex:13,adob:13,dpi100:13,dpi75:13,alia:13,bitstream:13,ibm:13,type1:13,sun:13,misc:13,xfree86:13,fontconfig:13,freeglut:13,gawk:13,gcc4:13,fortran:13,gccmakedep:13,gettext:13,ghostscript:13,std:[12,13],giflib:13,gmp:13,groff:13,gzip:13,inputproto:13,jasper:13,jpeg:13,lapack:13,libbz2_1:13,libcharset1:13,libcurl4:13,libfftw3_3:13,libgcc1:13,libgd:13,libgif:13,libgl:13,libgl1:13,libglu:13,libglu1:13,libglut:13,libglut3:13,libgmp:13,libgmp3:13,libgomp1:13,libic:13,libice6:13,libjpeg:13,libjpeg62:13,liblapack:13,libmpfr:13,libmpfr1:13,libncurs:13,libncurses9:13,libosmesa:13,libosmesa7:13,libpng:13,libpng14:13,libreadline6:13,libsm:13,libsm6:13,libssh2_1:13,libstdc:13,libtiff:13,libtiff5:13,libx11_6:13,libxau:13,libxau6:13,libxaw7:13,libxcb:13,xlib:13,libxcursor:13,libxcursor1:13,libxdmcp:13,libxdmcp6:13,libxext6:13,libxfix:13,libxfixes3:13,libxfont:13,libxfont1:13,libxft2:13,libxi:13,libxi6:13,libxkbfile1:13,libxmu:13,libxmu6:13,libxpm4:13,libxrend:13,libxrender1:13,libxt:13,libxt6:13,login:13,makedepend:13,man:13,mpfr:13,nano:13,opengl:13,openssh:13,openssl:13,pdftk:13,perl:13,ping:13,psutil:13,python:13,readlin:13,rebas:13,rgb:[12,13],rsync:13,sed:13,subvers:13,tcltk:13,terminfo:13,unzip:13,vim:13,w32api:13,icon:[12,13,10],xauth:13,xextproto:13,xfontsel:13,xinit:13,xkbcomp:13,xkeyboard:13,xkill:13,xlogo:13,xlsfont:13,xorg:13,xproto:13,xrdb:13,xrefresh:13,xset:13,xterm:13,zip:13,zlib:13,zlib0:13,libqt3support4:13,libqtassistantclient4:13,libqtcore4:13,libqtdbus4:13,libqtdesigner4:13,libqtgui4:13,libqthelp4:13,libqtnetwork4:13,libqtopengl4:13,libqtscript4:13,libqtscripttools4:13,libqtsql4:13,libqtsvg4:13,libqttest4:13,libqtwebkit4:13,libqtxml4:13,libqtxmlpatterns4:13,posix:13,convent:[11,13],hard:13,drive:13,network:13,cygdriv:13,stick:13,had:13,x_yy_z:13,"1_33_1":13,librpc:13,sunrpc:13,track:[],patch1:[],www:[11,13],hdfgroup:13,ftp:13,jpegsrc:13,v6b:13,msweet:[],project3:[],hdf_current:[],precompil:13,xzf:13,root_v5:13,win32gcc:13,due:[12,11,13],visit:13,gminim:13,asimag:13,mathmor:13,accomplish:13,usernam:13,qtdir:13,i686:13,reopen:13,qt56:[],readili:13,startxwinrc:13,status_access_viol:13,ash:13,rebaseal:13,resolv:13,administr:13,privileg:13,extent:13,emploi:13,emphas:13,rout:13,dvd:13,xcodebuild:13,licens:[12,13],x11:13,leopard:13,snow:13,xquartz:13,macosforg:[],trac:[],newest:13,port:13,selfupd:13,remark:[12,13],synchron:13,frequent:13,happen:13,servic:13,firewal:13,svn:13,trunk:13,dport:13,sync:13,pkgconfig:13,qtwebengin:[],past:13,unfortun:13,subject:13,mini:[],michaelrsweet:[],lazi:13,dmg:13,sierra:13,writ:13,root_v6:13,macosx64:13,clang91:13,owner:13,life:[12,13,10],chown:13,chgrp:13,staff:13,exactli:[12,13],wisdom:[11,13],harder:13,adopt:[12,13],parenthes:[12,13],macosx:13,plist:13,doctyp:13,dtd:13,propertylist:13,dict:13,qt3mac:13,stabl:13,crypto:13,unstabl:13,finkcommand:13,boost1:13,nopython:13,shlib:13,libtool2:13,qtwebenginecor:[],qtwebenginewidget:[],bit:13,earlier:13,"1_63_0":13,cpp11:13,circumst:13,finder:13,workaround:13,dyld_library_path:13,mgui:13,differenti:[12,10],diamagnet:[11,10],approxim:10,geometri:10,positron:[11,10],counter:[12,10],precess:10,"3110_tutori":10,conveni:10,underli:10,divid:[11,10],xyz:10,normup:10,bgup:10,phaseup:10,normdown:10,bgdown:10,phasedown:10,normright:10,bgright:10,phaseright:10,asymsig1:10,ratesig1:10,fieldsig1:10,asymsig2:10,ratesig2:10,fieldsig2:10,uncertainti:[11,10],asymmetr:10,lower:[12,10],upper:[12,10],constant:[12,0,10],background:[12,10],uncorrel:10,three:[12,11,10],remain:10,signal:[12,11,10],holder:10,amplitud:10,depolar:[12,11,10],simplexpo:[12,10],tfieldco:[12,10],map1:[12,10],fun1:[12,10],frequenc:[12,11,10],simplegss:[12,10],fun2:[12,10],predefin:[12,10],multipli:[12,10],sign:10,fun:10,interrel:10,gamma_mu:[12,10],par12:[12,10],par15:10,altogeth:[12,10],deltat_pta_gps_3110:10,fittyp:[12,10],norm:[6,12,10],backgr:[12,10],map2:[12,10],map3:10,undefin:10,implant:[6,11,10],exce:10,mino:[12,11,10],mhz:[12,11,10],fourier_pow:[12,10],apod:[12,10],weak:[12,10],medium:[12,10],real_and_imag:[12,10],par3:[12,10],imaginari:[12,10],drawn:[12,10],abscissa:[12,10],ordin:[12,10],use_fit_rang:[12,10],third:[12,11,10],ndf:10,freedom:[12,10],converg:[12,11,10],blue:[12,10],maximum:[6,12,10],count:[12,10],zoom:[12,10],graph:[12,10],around:[12,10],cursor:[12,10],suitabl:10,repeat:[12,10],proce:[13,10],comma:[12,10],between:[12,11,10],"short":[12,10],conclud:10,attent:[12,11,10],"3111_tutori":10,"3114_tutori":10,"_tutori":10,snapshot:[6,10],dark:10,theme:10,facilit:11,gyromagnet:11,ratio:[12,11],smu:11,outlin:11,literatur:11,reli:11,repeatedli:11,sizabl:11,worth:11,maxim:[12,11],trial:11,deserv:11,effect:[12,11],shift:[12,11],advis:11,prove:11,appreci:11,induct:11,vari:[12,11],dimens:11,incid:11,simul:11,trim:11,arrai:11,total:[12,11],thick:11,solv:11,equat:[12,11],layer:11,account:[12,11],superfluid:11,macroscop:11,dover:11,adjac:11,penetr:11,depth:11,constitu:11,half:11,film:11,userfcn:[12,11],tlondon1dh:11,deg:11,dead:11,tlondon1d1l:11,fraction:[12,11],substrat:11,bilay:11,heterostructur:11,tlondon1d2l:11,trilay:11,tlondon1d3l:11,investig:11,flux:11,probe:11,randomli:11,spatial:11,seri:11,reciproc:11,coeffici:[12,11],coher:[12,11],gaussian:11,cutoff:11,brandt:11,temp:[6,11],phy:[12,11],riseman:[12,11],analyt:11,ginzburg:11,landau:11,yaouanc:[12,11],dalma:[12,11],réotier:[12,11],bessel:[12,11],region:[12,11],triangular:11,grid:11,inter:11,distanc:11,tbulktrivortexlondon:11,tbulktrivortexml:11,tbulktrivortexagl:11,tbulktrivortexngl:11,migrad:[12,11],proven:11,larg:[12,11],futil:11,strategi:[12,11],max_likelihood:[12,11],hess:[12,11],bmw_startup:11,debug:[12,11],one_or_zero:11,deactiv:11,path_to_fil:11,invalid:11,delta_t:11,rest:11,microsecond:11,delta_b:11,resb:11,vortexlattic:11,n_vortexgrid:11,data_path:[12,11],data_path_prefix:11,n_theori:11,invers:11,energy_list:11,energy_label:11,rge:11,expect:[12,11],belong:11,wordsofwisdom:11,trimsp:11,"02_0":11,"03_0":11,"03_6":11,"05_0":11,"05_3":11,relax:[12,11],slr:11,reson:[12,11],lineshap:11,puls:[12,11],evolut:11,salman:[0,11],prl:11,lifetim:[12,11],exponenti:[12,11],exprlx:11,stretch:11,sexprlx:11,expon:[12,11],chemic:11,anisotropi:11,powder:11,mehr:11,solid:[12,11],springer:11,axial:11,symmetr:11,observ:11,paralel:11,perpendicular:11,symmetri:11,anisotrop:11,along:[12,11],loss:11,ellipt:11,linegauss:11,fwhm:11,height:11,lorentzian:11,linelorentzian:11,laplacian:11,linelaplac:11,skew:11,lineskewlorentzian:11,width:[12,11],lineskewlorentzian2:11,convolut:11,powderlineaxiallor:11,powderlineaxialgss:11,powderlineasymlor:11,princip:11,powderlineasymgss:11,gpl:12,philosophi:12,abil:12,fcn:12,sever:12,correl:12,renam:12,msr_file_without_extens:12,msr_file:12,maxlh:12,estimaten0:12,timeout_tag:12,overwrit:12,prevent:12,orphan:12,jam:12,"8472_tf_histo":12,avg:12,graphic_format_extens:12,session:12,"8472_0":12,gif:12,jpg:[6,12],svg:12,xpm:12,"8472_x":12,experiment:12,action:12,canvas:12,toggl:12,spectrum:12,area:12,hair:12,consid:12,beta:[],feed:12,exit:12,"3310_0":12,subtract:12,fopt:12,neither:12,nor:12,pad:12,angular:12,interpret:12,lem15_his_01234:12,rebin:12,fudg:12,elimin:12,sens:12,tweak:12,tdc_hifi_2014_00153:12,mnsi:12,"50k":12,unzoom:12,crosshair:12,gett0frompromptpeak:12,firstgoodbinoffset:12,argument:12,color:12,channel:12,interrupt:12,msr_file_in:12,msr_file_out:12,parc:12,wors:12,aim:12,idf1:12,idf2:12,nexus1:12,nexus2:12,flexibl:12,filenamelist:12,lem10_his_0111:12,lem10_his_0113:12,run3:12,runstart:12,runend:12,rrrr:12,rrrrrr:12,yyyi:12,unless:12,sent:12,stdout:12,compress:12,absent:12,lem10_his_0123:12,lem10_his_0123_v2:12,idf:12,deltat_tdc_gps_:12,d2001:12,deltat_tdc_gps_0123:12,deltat_tdc_gps_0137:12,deltat_tdc_alc_:12,rrr:12,spit:12,psi_gps_:12,psi_:12,"_gps_":12,psi_gps_run_100to117:12,archiv:12,lem10_his_0012:12,rebin25:12,lem10_his_0123_rebin25:12,runno:12,fileformat:12,pta:12,ltf:12,dolli:12,gpd:12,hifi:12,tdc_hifi_2015_00123:12,construct:12,path_to_data:12,write_per_run_block_chisq:12,pearson:12,fourier_set:12,phase_incr:12,phincr:12,increment:12,optim:12,root_set:12,marker_list:12,marker:12,color_list:12,intranet:12,mnt:12,unlik:12,headlin:12,style:12,lower_boundari:12,upper_boundari:12,init:12,alpha:12,asi:12,freq:12,constrain:12,semi:12,par:12,asy1:12,rate1:12,asy2:12,field2:12,rate2:12,whitespac:12,avoid:12,whenev:12,abbr:12,express:[6,12],"const":12,generexpo:12,stg:12,statgssktlf:12,sgktlf:12,dyngssktlf:12,dgktlf:12,statexpkt:12,sekt:12,statexpktlf:12,sektlf:12,dynexpktlf:12,dektlf:12,combilgkt:12,lgkt:12,strkt:12,skt:12,spinglass:12,spg:12,rdanisohf:12,rahf:12,internfld:12,internbsl:12,internfldgk:12,ifgk:12,internfldl:12,ifll:12,abragam:12,skewedgss:12,skg:12,staticnkzf:12,snkzf:12,staticnktf:12,snktf:12,dynamicnkzf:12,dnkzf:12,dynamicnktf:12,dnktf:12,muminusexptf:12,mmsetf:12,polynom:12,hayano:12,conden:12,matter:12,keren:12,uemura:12,crook:12,cywinski:12,turner:12,harshman:12,kornilov:12,pomjakushin:12,letter:12,larkin:12,physica:12,condens:12,noak:12,kalviu:12,oxford:12,simplifi:12,formula:12,ident:12,compact:12,difficulti:12,simultan:12,address:[6,12],funx:12,complic:12,dictionari:12,libmylibrari:12,tmyfunct:12,auxiliari:12,arithmet:12,divis:12,sin:[6,12],tan:[6,12],aco:12,asin:12,atan:12,cosh:12,sinh:12,tanh:12,acosh:12,asinh:12,atanh:12,exp:[6,12],sqrt:12,pow:[6,12],parx:12,par5:12,mapi:12,denot:12,frac1:12,shorten:12,logic:12,fire:12,addt0:12,rrf_freq:12,rrf_pack:12,rrf_phase:12,exact:12,pie3:12,particular:12,run_file_nam:12,record:12,digress:12,musrfulldatapath:12,colon:12,smith:12,lem07_his_2018:12,musrfulldatapathtoken:12,runnam:12,ext:12,lem07_2018_rb1_npp:12,d2007:12,deltat_pta_gps_2650:12,d2010:12,deltat_tdc_gpd_8472:12,mue1:12,beauti:12,muminu:12,t0addrun1:12,t0addrun2:12,t0addrun1forward:12,t0addrun1backward:12,t0addrun2forward:12,t0addrun2backward:12,sum:12,onlin:12,angl:12,nanosecond:12,fun3:12,transfer:12,ten:12,fgb:12,lgb:12,larger:12,direct:12,span:12,meaningless:12,simplex:12,batch:12,anywher:12,contour:12,mnplot:12,optimum:12,list_of_param_to_be_fix:12,restor:12,freq1:12,freq2:12,complex:12,fit_rang:12,flavor:12,n00:12,n01:12,n10:12,n11:12,nn0:12,nn1:12,inlin:12,scale_n0_bkg:12,fals:12,print_level:12,footnot:12,bigger:12,phd:12,thesi:12,ubc:12,val0:12,sep:12,val1:12,valn:12,parx0:12,parx1:12,parxn:12,par7:12,par17:12,par22:12,par27:12,par32:12,par37:12,par42:12,par47:12,par52:12,par57:12,par62:12,par67:12,par72:12,par77:12,par82:12,fcp:12,bcp:12,relative_bcp:12,parrx0:12,rel:12,summ:12,parxj:12,parr:12,obvious:12,offest:12,range_for_phase_correct:12,par8:12,nsec:12,min:[6,12],sub_rang:12,view_pack:12,logx:12,logarithm:12,logi:12,khz:12,par4:12,downward:12,upward:12,unwant:12,rid:12,filter:12,kaiser:12,fail:[12,13],tricki:12,compon:12,ideal:12,uncontrol:12,ghost:12,imperfect:12,distort:12,dispers:12,fold:12,substanti:12,infer:12,math:12,mathrm:12,theoret:12,rearrang:12,unbin:12,histogramm:12,reserv:12,plug:12,simpler:12,why:[12,13],although:12,declar:12,puserfcnbas:12,evalu:12,cassert:12,cmath:12,namespac:12,constructor:12,destructor:12,needglobalpart:12,"void":12,setglobalpart:12,globalpart:12,uint_t:12,idx:12,globalpartisvalid:12,classdef:12,destroi:12,peculiar:12,ness:12,introductori:12,topic:12,const_correct:12,herein:12,classimp:12,assert:12,arg:12,linkdef:12,tmylibrarylinkdef:12,ifdef:12,"__cint__":12,pragma:12,endif:12,wise:12,attach:12,tmylibrari:12,libtmylibrari:12,sensibl:12,bluish:12,node:12,uf1:12,uf2:12,entiti:12,ineffici:12,associ:[6,12],ufx:12,g_ufx:12,consum:12,abrikosov:12,cycl:12,thu:12,overhead:12,tmyglobalfunct:12,isvalid:12,fvalid:12,fprevparam:12,calcsomethingcpuexpens:12,liklei:12,getwhatisneed:12,privat:12,finvokedglob:12,fidxglob:12,fglobaluserfcn:12,static_cast:12,sorri:12,resiz:12,pointer:12,dynamic_cast:12,retriev:12,pseudo:12,increas:12,safeti:12,manjaro:13,antergo:13,distro:13,deb:13,installatio:13,ration:[],indicationg:12,helic:12,opposit:12,zaher:0,robert:0,scheuermann:0,contruct:0,helec:12,broken:13,bind:[],cope:13,agre:13,complain:13,mojav:13,unistal:13,catalina:[],homebrew:[],novemb:[],aspect:13,stumbl:13,smooth:13,zsh:13,zprofil:13,nuisanc:13,trigger:13,crash:13,bla:[],ref:[],htmldoc:[],nearli:12,genuin:12,multidimension:12,slower:12,revert:12,linear:12,matrix:12,compatibilti:12,covari:12,pari:12,sector:12,speedup:12,khrono:12,lokk:[],bundl:6,complement:6,histori:6,sigmasc_10:6,sigmasc_10err:6,"var":6,var_nam:6,expr:6,datat:6,invt:6,accompani:6,invterr:6,dataterr:6,col:6,sigmasc:6,e3p8kev:6,b10mt:6,tscan:6,b150mt:6,"10mt":6,sigma:6,nuclear:6,sigmaerr:6,"150mt":6,sigmasc_150:6,sigmasc_150err:6,sigmascvstemp:6,refin:6,row:6,one_to_on:12,mainli:12,big:13,sur:13,chanc:[],christma:[],issu:[],requri:[],intel:13,qt6:[8,13],kick:13,wide:13,dopengl:13,dbuiltin_glew:13},objects:{},objtypes:{},objnames:{},titleterms:{acknowledg:0,any2mani:[12,1],univers:1,"\u03bcsr":[6,12,11,1,7],file:[12,5,11,10,1,8,7],format:[12,7,1],convert:1,bugtrack:2,how:3,cite:3,musrfit:[12,3,5,4,10,9,8,13],welcom:4,document:[11,4],indic:4,tabl:4,msr2data:[12,5,10],program:5,automat:5,process:[5,10],multipl:[5,10],msr:[12,5,10],basic:[12,8,5,7],type:[12,5],usag:[6,8,12,5],run:[12,5,7],list:5,structur:5,option:[5,13],paramet:[6,8,5],global:[12,5],mode:5,gener:[12,5],extract:5,extend:5,known:5,limit:5,graphic:[6,9,5],user:[6,12,5,11,7],interfac:[6,8,5,7],provid:5,musredit:[8,5,13],mupp:6,plotter:6,script:6,summari:6,musrroot:7,extens:[12,7],open:7,some:7,concern:7,root:[7,13],inform:7,contain:7,runhead:7,runinfo:7,overview:[12,7],tmusrrunhead:7,concept:7,header:7,write:7,read:[7,10],valid:7,requir:[7,13],detectorinfo:7,sampleenvironmentinfo:7,magneticfieldenvironmentinfo:7,beamlineinfo:7,exhaust:7,tree:7,includ:7,everyth:[7,13],tmusrrunphysicalquant:7,possibl:7,represent:7,gui:8,base:8,introduct:[12,8,11],avail:[12,8],execut:[12,8],configur:[12,8],musrgui:[8,13],musredit_startup:8,xml:[12,8,11],featur:8,musrwiz:8,theori:[12,8],"function":[12,8,11],map:[12,8],fit:[12,9,8,10],info:8,creat:8,musrstep:8,set:[9,13],high:9,speed:9,gpu:[12,9],tesla:9,k40c:9,nvidia:9,driver:9,instal:[9,13],cuda:9,via:[9,13],automak:[],cmake:[9,13],amd:9,card:9,radeon:9,"390x":9,app:9,softwar:[9,13],develop:9,kit:9,sdk:9,enabl:[12,9],opencl:[12,9],support:[12,9,13],maco:[9,13],differ:13,platform:13,oper:13,system:13,restrict:13,gnu:13,linux:13,nexu:13,build:13,last:13,step:13,obsol:[],check:13,window:13,cygwin:13,potenti:13,problem:13,mac:13,macport:13,packag:13,from:13,sourc:13,environ:13,variabl:[6,13],fink:13,obsolet:13,tutori:10,singl:[12,10],histogram:[12,10],determin:10,data:[11,10],rang:10,musrt0:[12,10],model:[11,10],view:10,musrview:[12,10],further:10,asymmteri:10,lib:11,meissner:11,profil:11,vortex:11,lattic:11,relat:11,bmw:11,libfitpofb:11,dimension:11,london:11,state:11,isotrop:11,superconductor:11,bulk:11,field:11,distribut:11,mix:11,startup:11,nonloc:11,superconduct:11,screen:11,analyz:11,"\u03b2":11,nmr:[12,11],bnmr:11,libbnmr:11,liblineprofil:11,manual:12,kei:12,shortcut:12,musrft:12,msr2msr:12,dump_head:12,musrfit_startup:12,descript:12,titl:12,fitparamet:12,block:12,command:12,fourier:12,plot:12,statist:12,rrf:12,asymmetri:12,neg:12,muon:12,non:12,without:12,object:12,access:12,technic:12,framework:12,beta:12,note:13,catalina:13,minuit2:12,detail:12,defin:6,dialog:6,depreci: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":[5,6,8,13,3,7,1,12,11,9,0,10],"\u03b2":[],"\u03b4":[5,6,8,13,3,7,1,12,11,9,0,10],"\u03b7":[5,6,8,13,3,7,1,12,11,9,0,10],"\u03b5":[5,6,8,13,3,7,1,12,11,9,0,10],"\u03b3":[5,6,8,13,3,7,1,12,11,9,0,10],"\u03b9":[5,6,8,13,3,7,1,12,11,9,0,10],"\u03ba":[5,6,8,13,3,7,1,12,11,9,0,10],"\u03c7":[5,6,8,13,3,7,1,12,11,9,0,10],"\u03bb":[5,6,8,13,3,7,1,12,11,9,0,10],"\u03bc":[5,6,4,8,3,7,13,1,12,11,9,0,10],"\u03bd":[5,6,8,13,3,7,1,12,11,9,0,10],"\u03bf":[5,6,8,13,3,7,1,12,11,9,0,10],"\u03c9":[5,6,8,13,3,7,1,12,11,9,0,10],"\u03c0":[5,6,8,13,3,7,1,12,11,9,0,10],"\u03c6":[5,6,8,13,3,7,1,12,11,9,0,10],"\u03c8":[5,6,8,13,3,7,1,12,11,9,0,10],"\u03c1":[5,6,8,13,3,7,1,12,11,9,0,10],"\u03c2":[5,6,8,13,3,7,1,12,11,9,0,10],"\u03c3":[5,6,8,13,3,7,1,12,11,9,0,10],"\u03c4":[5,6,8,13,3,7,1,12,11,9,0,10],"\u03b8":[5,6,8,13,3,7,1,12,11,9,0,10],"\u03c5":[5,6,8,13,3,7,1,12,11,9,0,10],"\u03be":[5,6,8,13,3,7,1,12,11,9,0,10],"\u03b6":[5,6,8,13,3,7,1,12,11,9,0,10],bastian:0,wojek:[5,3,0],veri:[8,13,7,11,0,10],much:[6,8,13,7,0],indebt:0,bmw:[],rigor:0,test:[8,0,10],musrfit:[],mani:[5,8,13,7,12,0,10],suggest:[5,0,10],contribut:[6,13,12,11,0],largest:0,part:[8,13,7,3,12,11,0,10],user:[],manual:[],which:[5,6,8,13,7,12,11,9,0,10],make:[8,13,7,9,0,10],access:[],broader:0,audienc:0,thank:0,uldi:0,locan:[9,3,0],work:[5,8,13,7,12,9,0,10],enabl:[],gpu:[],support:[],kind:[7,0,12],calm:0,extrem:0,compet:0,wai:[5,6,8,13,7,12,11,9,0,10],deal:[13,7,12,11,9,0,10],project:[0,10],well:[5,13,12,11,9,0,10],chao:0,physicist:0,think:0,admir:0,allow:[5,6,8,13,7,1,12,9,10],most:[5,13,7,1,12,9,10],from:[],other:[6,13,7,1,11,9,10],detail:[],descript:[],see:[5,6,8,13,7,1,12,11,9,10],here:[5,6,8,13,7,1,11,9,10],report:[2,13,10],bug:[8,2,10],request:[6,13,11,2,10],"new":[5,8,13,7,11,2,10],featur:[],improv:[2,12,10],pleas:[5,13,7,3,12,11,2,10],bitbucket:[2,13,10],repo:[2,9,10],prefer:[8,2,13,10],send:[2,13],mail:2,suter:[2,3,9],psi:[8,13,7,12,11,2,9,10],sinc:[5,6,13,7,3,11,9,10],quit:[8,13,7,3,10],some:[],effort:3,develop:[],mainten:[7,3],packag:[],you:[6,8,13,7,3,9,10],should:[5,6,8,13,7,3,12,11,9,10],least:[5,13,3,11,10],your:[5,8,13,3,9,10],"public":[13,3,12,10],have:[5,8,13,7,3,12,11,9,10],analyz:[],data:[],even:[5,13,7,3,10],better:[5,13,3],cours:[5,13,3],properli:[5,13,3,9],refer:[8,13,7,3,12,11,9,10],given:[5,6,8,13,7,3,12,11,9,10],beneath:[8,3],free:[8,13,7,3,12,10],platform:[],independ:[13,3,12],framework:[],analysi:[5,13,7,3,12,11,9,10],physic:[6,13,7,3,9],procedia:3,http:[8,13,7,3,12,9,10],doi:3,org:[3,10],phpro:3,high:[],speed:[],version:[6,8,13,7,3,12,9,10],util:[13,7,3,9,10],"case":[5,6,8,13,7,3,12,11,9,10],thi:[5,6,8,13,7,3,12,11,9,10],also:[5,6,8,13,7,3,12,11,9,10],add:[5,6,8,13,7,3,11,9,10],follow:[5,6,8,13,7,3,12,11,9,10],citat:3,adelmann:3,dynam:[3,9],kernel:[3,9],schedul:[3,9],comput:[3,9,10],commun:3,cpc:3,real:[13,3,11,9,10],time:[6,8,13,7,3,12,11,9,10],paramet:[],fit:[],imag:[11,13,3],reconstruct:3,graphic:[],process:[],unit:[7,13,11,3],conf:[3,9,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,4,13],search:[4,13,10],page:[8,4,7,11,9,10],origin:[5,8,13,12],written:[5,8,13,7,12,11],implement:[5,8,13,7,12,9,10],purpos:[5,13,11,10],input:[5,8,13,11,0],same:[5,6,13,7,12,11,9,10],summar:[5,11],result:[5,8,13,7,12,11],either:[5,6,8,13,12,11,10],triumf:[5,8,13,11],column:[5,8,13,7,11],ascii:[5,8,13,12,11],essenti:[5,8,13,7],collect:[5,6,8,13,7,12,11,10],old:[5,13,10],abridg:5,produc:[5,13,11,10],can:[5,6,8,13,7,12,11,9,10],view:[],instanc:[5,6,13,7,10],howev:[5,13,11,9,10],thei:[5,13,7,11,9,10],complet:[5,12,11,9,10],backward:[5,13,7],compat:[5,13,9,10],languag:[5,13],name:[5,6,8,13,7,12,11,9,10],longer:5,than:[5,8,13,7,11,10],five:[5,11],six:5,charact:[5,13],order:[5,6,13,7,12,9,10],establish:5,need:[5,6,8,13,7,12,11,9,10],ensur:[5,13],correct:[5,8,13,11,10],length:[5,7,12],apart:[5,12,10],numer:[5,12,10],might:[5,6,8,13,7,12,10],principl:[5,12,10],four:[5,13],call:[5,6,8,13,7,12,11,10],suppli:[5,13,9,12],number:[5,6,8,13,7,12,11,9,10],firstrunno:5,lastrunno:5,interv:[5,13],specifi:[5,8,13,7,12,11,10],through:[5,13,7,12,11,10],first:[5,6,8,13,7,12,11,9,10],last:[],condit:[5,12],necessari:[5,8,13,7,11,10],runlist:[5,13],where:[5,6,8,13,7,12,11,9,10],combin:[5,8,13,7,11],run0:5,run1:[5,13],run2:[5,13],runn:5,rang:[],step:[],sequenc:[5,13,11],posit:[5,13,11,7],integ:[5,13,7],etc:[5,6,8,13,7,9,10],runlistfilenam:5,contain:[],extern:[5,13,7,12,10],pass:[5,8,13],below:[5,13,7,12,11,10],all:[5,6,8,13,7,11,9,10],mandatori:[5,13,7,12],right:[5,13,7,12,11,10],after:[5,8,13,7,11,9,10],mean:[5,6,8,13,7,12,11,9,10],becom:[5,10],clear:[5,8,13,7],give:[5,13,7,11,10],exampl:[5,6,8,13,7,12,11,10],"_tf_h13":5,out:[5,6,8,13,7,11,9,10],chang:[5,8,13,9,10],"8472_tf_h13":5,"8473_tf_h13":5,"8474_tf_h13":5,"8470_tf_h13":5,directori:[5,8,13,7,12,11,9,10],put:[5,8,13,10],var1:5,var2:5,var3:5,comment:[5,6,8,13,7,9,10],empti:[5,6,13,8],line:[5,6,8,13,7,12,11,10],determin:[],label:[5,6,8,13,7,12],present:[5,6,8,13,7,12,11,9,10],preced:5,mention:[5,13,7,12,10],togeth:[5,6,8,13,7,11,10],abov:[5,6,8,13,7,12,11,9,10],output:[5,6,8,13,12,11],onli:[5,6,8,13,7,12,11,9,10],newli:[5,6,11,8],creat:[],did:[5,10],exist:[5,13,10],befor:[5,8,13,7,12,11,9,10],invok:[5,6,13,8],were:[5,8,13,7],alreadi:[5,6,8,13,9,10],would:[5,6,8,13,7,12,11,9,10],append:[5,13,10],been:[5,8,13,7,12,11,10],header:[],block:[],forc:[5,13],suppress:5,nohead:[5,8],shall:[5,8,13,7,12,11,10],seen:[5,6,11,7],later:[5,13,11,10],like:[5,6,8,13,7,12,9,10],behavior:[5,13],ani:[5,8,13,7,11,9,10],simpl:[5,13,12,11,10],"default":[5,8,13,9,10],dat:[5,6,8,13,12,11],delet:[5,7],inform:[],both:[5,13,12,10],none:[5,8,13,11],write:[],sole:[5,13],assum:[5,8,13,7,12,11,9,10],nosummari:[5,8],attempt:5,read:[],addit:[5,6,8,13,7,12,11,9,10],temperatur:[5,6,13,7,11],appli:[5,6,13,7,12,11,10],magnet:[5,6,8,13,7,12],field:[],paramlist:5,param:[5,6,13,8],select:[5,6,8,13,7,11,9,10],"export":[5,13,11,9,10],startno:5,endno:5,space:[5,13,12,10],separ:[5,8,13,11,10],outputfilenam:[5,13],instead:[5,6,13,12,9,10],equal:[5,13,11],insensit:5,addition:[5,8,13,11,10],"final":[5,13,12,11,10],templat:[5,8,13,11],perform:[5,6,8,13,7,11,10],mlog:[5,8,13],subsequ:[5,13],chain:[5,8],exclam:5,mark:[5,13],without:[],keep:[5,8,13,7],mn2:[5,13],done:[5,6,13,7,12,11,9,10],ignor:[5,6,13],titl:[],illustr:[5,13],few:[5,8,13,7,10],explan:[5,13],oabc:5,"8400_tf_h13":5,"8460_tf_h13":5,abc:5,about:[5,13,7,11,10],"_zf":5,def:5,"8472_zf":[5,8],"8500_zf":5,"8502_zf":5,"8503_zf":5,"8504_zf":5,"8507_zf":5,oghi:5,ouput:5,ghi:5,take:[5,13,12,11,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:[5,8,13,7,12,11,9,10],anoth:[5,6,8,13,7],each:[5,6,13,7,12,11,10],defin:[],common:[5,13,10],specif:[5,8,13,7,12,11,10],when:[5,8,13,7,12,11,10],obtain:[5,13,7,12],valid:[],conjunct:[5,13,12],invoc:[5,13],state:[],idea:[5,13,11,7],basi:5,identifi:[5,13],tag:[5,6,8,13,12,11,10],current:[5,6,8,13,7,12,9,10],"0xu":5,digit:[5,13],lead:[5,8,13,7,12],zero:[5,8,13,7,11],end:[5,6,8,13,7,11,10],alpha0123:5,alpha00123456:5,fitparamet:[],exemplari:[5,13],"8472_exampl":5,could:[5,6,8,13,12,9,10],therefor:[5,13,12,11,10],look:[5,6,8,13,7,12,9,10],valu:[5,8,13,7,11,9,10],pos_error:[5,13,11],boundari:[5,8,13,12,11],phase:[5,8,13,12,11],asy8472:5,rate8472:5,treat:[5,10],wherea:[5,8,13],normal:[5,6,13,11,10],within:[5,6,8,13,7,12,11,10],appear:[5,13],explicitli:[5,8,13],theori:[],those:5,met:5,"try":[5,13,10],substitut:[5,13,11,10],them:[5,8,13,7,12,11],map:[],accordingli:[5,6,11,10],"_exampl":5,global_exampl:5,alwai:[5,6,13,7,12],start:[5,6,8,13,7,11,9,10],asy8471:5,rate8471:5,asy8470:5,rate8470:5,show:[5,6,8,13,7,11],reorgan:5,begin:[5,13,7,10],copi:[5,8,13,10],found:[5,8,13,7,12,11,9,10],dure:[5,6,13,12,10],affect:5,occurr:[5,10],awar:[5,13,10],fact:[5,10],propag:5,model:[],usual:[5,13,12],store:[5,8,7,12,10],reach:[5,13],goal:[5,13],obei:[5,13],certain:[5,12],rule:[5,8,13,7],match:[5,13],accord:[5,8,13,11,10],achiev:[5,11,10],easili:[5,8,13,9,10],shown:[5,6,8,13,7,11],globalfit:5,relev:[5,8,13,7,11],pre:[5,8],afterward:[5,6,13,7,12,9,10],special:[5,13,7],replac:[5,13,10],review:5,activ:[5,8,12,10],choos:[5,8,13,12,11,10],keyword:[5,13],onerunfit_exampl:5,onerunfit:5,everi:[5,6,13,10],similar:[5,10],explain:[5,8,13,7,12,11,9,10],moment:[5,7,12,10],peopl:[5,7,10],cannot:[5,13,12],behav:[5,12],integr:[5,12],filenam:[5,6,13,7],rightmost:5,highest:[5,10],treatabl:5,statist:[],itself:[5,11],more:[5,6,8,13,7,11,9,10],creativ:5,care:[5,13,10],addrun:[5,13],statement:[5,13],simpli:[5,13,10],probabl:[5,7,10],what:[5,13,12,11,9,10],two:[5,8,13,7,12,11,10],success:[5,6,13,7,11],encount:5,actual:[5,13,12,10],measur:[5,6,8,13,7,12,11],introduc:[5,13,7,11,10],reason:[5,13,11,10],shape:[5,13,12],design:[5,10],especi:[5,13,7,12,9,10],manipul:[5,8,13],front:[5,8,11,7],offer:[5,13,11],almost:[5,8,13],self:[5,8],explanatori:[5,8],depict:[5,13],under:[5,6,8,13,7,9,10],stai:5,enter:[5,8,9,10],otherwis:[5,13,9,10],serv:[5,13,11],second:[5,8,13,12,11],noth:[5,8,13,7],correspond:[5,6,8,13,7,11,10],littl:[6,13,8,10],helper:[6,8,13,7,10],quickli:[6,9],plot:[],handl:[6,8,13,7,12,10],heavili:[6,12],inspir:6,via:[],command:[],directli:[6,8,13,7,10],typic:[6,8,13,9,10],load:[6,13,12],dialog:[],tri:[6,13,10],fly:[6,11],drag:[6,11,10],over:[6,13,10],axi:[6,13,7,12,11],wish:[6,13],click:[6,13,8],analog:6,remov:[6,13],often:[6,13,8,10],compar:[6,13,9,10],trend:6,hold:[6,13,7],energi:[6,7,12],scan:[6,13],now:[6,13,11,9,10],interest:[6,13,10],ditto:6,less:[6,13,10],error:[6,8,13,7,12,11,9,10],prone:[6,9,8],quicker:[6,13],button:[6,13,11,8],mupp_plot:6,applic:[6,8,13,12,9,10],refresh:6,reload:[6,8],beamtim:6,grow:6,task:6,mous:[6,13],gambl:6,futur:[6,8,10],plane:6,help:[6,8,13,9,10],cmd:[6,13,10],manner:[6,10],updat:[6,13,11,9,10],web:[6,8,13,7,0,10],interact:[6,13,11,12],figur:[6,13,7],loadpath:6,dir:6,path:[6,8,13,7,11,9,10],bash:[6,10],variabl:[],home:[6,8,13,7,12,9,10],accept:[6,13,8],coll:6,selectal:6,carri:[6,13,10],ybco:6,"40nm":6,t5k:6,fc150mt:6,escan:6,addx:[],addi:[],savepath:6,save:[6,8,13,7,12,11,10],place:[6,13,11,10],macro:6,fln:[6,13],txt:[6,10],t30k:[],t60k:[],t120k:[],fieldvsenergi:[],pdf:[6,13],"true":[6,13,7,12],best:[6,13,7,12,10],ever:[6,7],thie:[],labl:[],until:[11,13,7],bulk:[],instrument:[8,13,7,10],bin:[8,13,7,11,10],fix:[8,13,7,11,10],binari:[7,10],rather:[8,13,7,10],stringent:7,lem:[13,7,12],cern:[13,7,10],tightli:7,tailor:7,situat:[13,7,10],unsatisfactorili:7,henc:[6,13,7,11,9,10],decid:[13,7,10],move:[11,13,7,10],forward:[11,13,7,9],acquisit:7,mida:7,respons:[13,7,9],build:[],decai:[11,13,7],easi:[8,7],object:[],th1f:7,orient:[7,12],mine:7,frame:[13,7,9],tfile:7,eas:[13,7,10],understand:[13,7],upcom:7,definit:[11,13,7],thing:[8,13,7,9,10],check:[],guid:[13,7,9],organ:[8,13,7],similarli:[13,7],browser:7,inspect:7,tbrowser:7,deriv:[13,7],tobject:[13,7],small:[8,13,7,12,9,10],subset:[13,7],tfolder:7,top:7,level:[13,7],tobjarrai:7,tobjstr:7,content:[13,7,10],form:[13,7,12,11,9,10],box:[8,13,7,9],entri:[13,7],sketch:[13,7],histo:[8,13,7,11,10],decayanamodul:7,hdecay001:7,hdecay002:7,scanamodul:7,hsampletemperatur:7,hsamplemagneticfield:7,detector001:7,detector002:7,hdecayxxx:7,xxx:7,"int":7,"03d":7,notat:[13,7],"class":[13,7,12],folder:[7,10],next:[6,8,13,7,12,9,10],section:[13,7,10],slow:7,control:[13,7,9],sampl:[11,7,9,12],versu:7,again:[8,13,7,9,10],meta:[13,7],minim:[13,7,12,11,10],bracket:7,item:[13,7],detector:[8,13,7,12,11],environ:[],beamlin:[11,8,13,7],elabor:[7,9],word:7,sub:[11,13,7,10],intern:[8,13,7],tstring:7,git:[13,7,9,10],url:7,xsd:7,wrote:7,nemu_analyz:7,deltat_tdc_gps_4295:7,int_t:[13,7],iso:7,date:[11,13,7,10],stop:[13,7],durat:7,sec:[13,7],laboratori:7,muon:[],beam:[13,7],momentum:[11,7,12],mev:7,speci:7,neg:[],sourc:[],target:7,low:[7,12],setup:[13,7,9,10],cf1:7,wxy:7,resolut:[7,12],redgreen:[13,7],offset:[13,7],tintvector:7,except:[8,13,7,10],shortli:[13,7],discuss:[8,13,7,9],experi:[13,7],stimuli:7,electr:7,off:[13,7],doubl:[13,7],distinguish:7,easier:[7,10],let:7,sai:7,red:[13,7,11,9,10],green:[11,13,7],browsabl:7,string:[8,13,7,10],tobjstringv:7,quantiti:7,repres:[11,13,7],properti:[13,7],estim:[8,13,7,12],demand:[13,7],depend:[8,13,7,12,11,9,10],musrrootv:7,mock:7,print:[8,13,7],notic:[8,13,7],find:[8,13,7,9,10],encod:[8,13,7,12,10],price:7,pai:7,shade:7,"import":[13,7],approach:[13,7,10],standard:[13,7,9,10],"abstract":[13,7],text:[6,8,13,7,11],though:[8,7,10],clean:[7,9,10],lot:[13,7],"2nd":7,slightli:[8,13,7,9,10],advantag:[8,13,7,10],maintain:7,expand:7,classifi:7,group:[8,13,7,10],previou:[13,7,10],"float":7,point:[8,13,7,12,11,10],double_t:[13,7],tstringvector:7,tdoublevector:7,themselv:[7,12],vector:[6,13,7,12],code:[13,7,12,11,9,10],snippet:[13,7],reader:7,routin:[13,7,12,10],convers:[13,7],write_musrroot_runhead:7,full:[11,13,7,10],concentr:7,just:[13,7,12,9,10],prop:7,further:[],down:[11,8,13,7],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:[13,7,9,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,7,9,10],closefil:7,extractal:7,decod:7,fill:[11,13,7],getter:7,bool_t:[13,7],ival:7,cout:[13,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:[6,7],temporari:7,xml:[],ampl:[13,7],parser:[7,10],hand:[13,7],decent:7,book:7,libxml2:[7,10],becaus:[8,7],suppos:[13,7,10],against:[6,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,7,12],npp:[8,13,7,11,10],spectromet:[11,13,7,9],good:[8,13,7,10],enough:[13,7,10],cryo:7,cryostat:7,oven:7,konti:7,pim3:[11,13,7],hypothet:7,light:7,per:[8,13,7],bottom:7,split:[13,7,10],mind:7,symbol:[13,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,7,9,10],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:[11,13,7,12],mue4:[8,13,7],scalerinfo:7,runsummari:7,wed:7,oct:7,lco:7,wtf:7,kev:[13,7,12],ledb:7,buc:7,edit:[6,8,7,11,10],euc:7,event:[11,7],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:[6,7],cf4:7,cf5:7,editor:[8,11,10],suit:[8,13,11,12],intend:[8,13,10],eventu:[8,11],drop:[8,10],outdat:[8,13,10],earli:[8,13],anymor:[8,10],still:[8,13,12,10],urg:8,strongli:[8,13,10],recommend:[8,12,10],shell:[8,13,10],tab:[8,13],startup:[],displai:[8,13,12,10],locat:[8,13,12,11,10],proof:8,exec_path:8,path_to_exec:8,musrview:[],musrt0:[],insid:[8,13,12,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:[],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,13,12,11,10],musrview_show_fouri:8,fourier:[],transform:[8,13,12,11,10],domain:[8,13,11],musrview_show_avg:8,averag:[8,13,12],power:[8,13,11,9,10],spectra:[8,13],enable_musrt0:8,font_set:8,font:[8,10],font_nam:8,font_siz:8,size:[8,13],msr_file_default:8,institut:[8,13,11],inst:8,ral:[8,10],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:[6,13,8,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,13,12,10],xmln:[8,13],html:8,usr:[8,10],local:[8,9,12,10],share:[8,13,9,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:[6,13,8],statgsskt:[8,13],rate:[8,13,11,12],"static":[8,12,10],gauss:[8,13,11,12],respect:[8,13,12,11,10],bar:[8,13],keyboard:[8,11],shortcut:[],scratch:[8,10],too:[8,13,10],priori:8,knowledg:8,calcul:[8,13,11,12],log:[6,13,12,8],max:[6,13,8],likelihood:[8,13,12],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,13,12,11,10],fitter:8,own:[8,13],docu:[8,13,9],raw:[8,13],dump_head:[],stage:[8,13],wand:8,coupl:[8,13,9,10],dialogu:8,briefli:[8,10],explicit:[8,13],year:[8,13,9],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,13,9,10],prompt:[8,13,9,10],peak:[8,13,12],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,13,12],reset:[8,13],sometim:[8,13],went:[8,10],wrong:8,leav:8,far:[8,13],iter:[8,13,12],individu:[8,13],tediou:[8,12],popup:8,asym:8,uncheck:8,unselect:8,modifi:[8,12],degre:[8,13,11],cancel:8,anyth:[8,13],scale:[8,13],factor:[8,13],absolut:[8,13,11,10],explor:[9,10],hal:[13,9],memo:[13,9],rotat:[11,13,9],tremend:[9,10],muonium:[13,9],appl:[9,10],cpu:[13,9,10],straight:9,multi:[13,9,10],thread:[13,9,10],doesn:[6,9],openmp:[13,9,10],shop:9,bui:9,gamer:9,sure:[13,9,10],server:[9,10],suffici:[9,12],strong:[11,13,9],yet:[13,12,11,9,10],fall:[13,9],back:[13,9],conceptu:9,latest:[9,10],hardwar:9,crunch:9,readi:[13,9,10],acceler:[13,9],termin:[11,13,9,10],lspci:9,grep:[9,10],corpor:9,gk110bgl:9,rev:[13,9,12],recogn:9,download:[9,10],center:[9,12],hat:[9,10],enterpris:9,rhel:[9,10],rpm:[9,10],diag:9,rhel7:9,x86_64:9,conflict:9,nouveau:9,reboot:9,machin:[9,12,10],omit:[13,9,10],thin:[9,12],host:9,incorpor:9,paper:9,wiki:9,brief:[13,9,10],clone:[9,10],got:9,consist:[13,9,12],gitlab:[13,9,10],uldis_l:9,mkdir:[9,10],denable_musr:9,dcmake_install_prefix:[9,10],exec:9,non:[],librari:[13,9,12,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:10,want:[13,10],tell:13,aslib:10,bmwlib:10,prefix:10,rootsi:[9,10],lookup:9,superus:[9,10],ddk:9,disabl:[13,9,10],daslib:[9,10],dbmwlib:[9,10],dnexu:[9,10],vga:9,advanc:9,micro:[13,9],devic:9,inc:9,ati:9,hawaii:9,grenada:9,"290x":9,amdgpu:9,pro:[9,10],unpack:[9,10],tar:[13,9,10],jxvf:9,blabla:9,usermod:9,video:9,technolog:9,materi:9,leverag:9,amp:9,xvjf:9,sdkinstal:9,linux64:9,bz2:[13,9],opt:[13,9,10],amdappsdk:9,note:[],instruct:[13,9,10],compil:[13,9,10],xcode:[9,10],deliv:[13,9],easiest:[9,10],involv:[9,12],demonstr:10,"while":[13,10],brave:10,virtual:[13,10],encourag:10,gcc:[13,10],tool:[13,10],autoconf:10,libtool:10,toolchain:[],drope:[],releas:[13,10],plan:[],pkg:10,config:10,boost:10,spirit:10,scientif:[13,12,10],effici:[13,12,10],mathemat:[6,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:[],everyon:10,know:10,himself:10,doe:[13,10],websit:10,engin:10,mxml:10,hdf:10,libmxml1:[],libmxml:[],libhdf4:10,libhdf5:10,urgent:13,isi:[13,10],safe:13,master:10,repositori:10,github:10,com:10,nexusformat:10,denable_hdf5:10,denable_hdf4:10,denable_mxml:10,sudo:10,flavour:[13,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:[13,11,12,10],proceed:10,recent:[13,10],muonspin:10,root5:[],root6:10,newer:10,dec:10,whether:13,uninstal:[],xarg:10,install_manifest:10,altern:[13,10],autogen:[],prepar:10,successfulli:[13,10],makefil:13,besid:[],fftw3:[12,10],boostinc:[],qt3:10,qt47:[],lib64:[],omp:13,parallel:[13,11,12],detect:11,permiss:[],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:[],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:[13,11,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:[],patch1:[],www:[12,10],hdfgroup:10,ftp:10,jpegsrc:10,v6b:10,msweet:[],project3:[],hdf_current:[],precompil:10,xzf:10,root_v5:10,win32gcc:10,due:[13,12,10],visit:10,gminim:10,asimag:10,mathmor:10,accomplish:10,usernam:10,qtdir:10,i686:10,reopen:10,qt56:[],readili:10,startxwinrc:10,status_access_viol:10,ash:10,rebaseal:10,resolv:10,administr:10,privileg:10,extent:10,emploi:10,emphas:10,rout:10,dvd:10,xcodebuild:10,licens:[13,10],x11:10,leopard:10,snow:10,xquartz:10,macosforg:[],trac:[],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:[],past:10,unfortun:10,subject:10,mini:[],michaelrsweet:[],lazi:10,dmg:10,sierra:10,writ:10,root_v6:10,macosx64:10,clang91:10,owner:10,life:[13,11,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:[],qtwebenginewidget:[],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:[11,12],approxim:11,geometri:11,positron:[13,11,12],counter:[13,11],precess:11,"3110_tutori":11,conveni:11,underli:11,divid:[11,12],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:[11,12],asymmetr:11,lower:[13,11],upper:[13,11],constant:[13,11,0],background:[13,11],uncorrel:11,three:[13,11,12],remain:11,signal:[13,11,12],holder:11,amplitud:11,depolar:[13,11,12],simplexpo:[13,11],tfieldco:[13,11],map1:[13,11],fun1:[13,11],frequenc:[13,11,12],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:[6,13,11],backgr:[13,11],map2:[13,11],map3:11,undefin:11,implant:[6,13,11,12],exce:11,mino:[13,11,12],mhz:[13,11,12],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,11,12],ndf:11,freedom:[13,11],converg:[13,11,12],blue:[13,11],maximum:[6,13,11],count:[13,11],zoom:[13,11],graph:[13,11],around:[13,11],cursor:[13,11],suitabl:11,repeat:[13,11],proce:[11,10],comma:[13,11],between:[13,11,12],"short":[13,11],conclud:11,attent:[13,11,12],"3111_tutori":11,"3114_tutori":11,"_tutori":11,snapshot:[6,11],dark:11,theme:11,facilit:12,gyromagnet:[13,12],ratio:[13,12],smu:12,outlin:12,literatur:12,reli:12,repeatedli:12,sizabl:12,worth:12,maxim:[13,12],trial:12,deserv:12,effect:[13,12],shift:[13,12],advis:12,prove:12,appreci:12,induct:12,vari:[13,12],dimens:12,incid:12,simul:12,trim:[13,12],arrai:12,total:[13,12],thick:12,solv:12,equat:[13,12],layer:[13,12],account:[13,12],superfluid:12,macroscop:12,dover:12,adjac:12,penetr:[13,12],depth:[13,12],constitu:12,half:12,film:12,userfcn:[13,12],tlondon1dh:12,deg:12,dead:[13,12],tlondon1d1l:12,fraction:[13,12],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:[13,12],coher:[13,12],gaussian:12,cutoff:12,brandt:12,temp:[6,12],phy:[13,12],riseman:[13,12],analyt:12,ginzburg:12,landau:12,yaouanc:[13,12],dalma:[13,12],réotier:[13,12],bessel:[13,12],region:[13,12],triangular:12,grid:12,inter:12,distanc:12,tbulktrivortexlondon:12,tbulktrivortexml:12,tbulktrivortexagl:12,tbulktrivortexngl:12,migrad:[13,12],proven:12,larg:[13,12],futil:12,strategi:[13,12],max_likelihood:[13,12],hess:[13,12],bmw_startup:12,debug:[13,12],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:[13,12],data_path_prefix:12,n_theori:12,invers:12,energy_list:[13,12],energy_label:12,rge:12,expect:[13,12],belong:12,wordsofwisdom:12,trimsp:[13,12],"02_0":12,"03_0":12,"03_6":12,"05_0":12,"05_3":12,relax:[13,12],slr:12,reson:[13,12],lineshap:12,puls:[13,12],evolut:12,salman:[0,12],prl:12,lifetim:[13,12],exponenti:[13,12],exprlx:12,stretch:12,sexprlx:12,expon:[13,12],chemic:12,anisotropi:12,powder:12,mehr:12,solid:[13,12],springer:12,axial:12,symmetr:12,observ:12,paralel:12,perpendicular:12,symmetri:12,anisotrop:12,along:[13,12],loss:12,ellipt:12,linegauss:12,fwhm:12,height:12,lorentzian:12,linelorentzian:12,laplacian:12,linelaplac:12,skew:12,lineskewlorentzian:12,width:[13,12],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:[6,13],svg:13,xpm:13,"8472_x":13,experiment:13,action:13,canvas:13,toggl:13,spectrum:13,area:13,hair:13,consid:13,beta:[],feed:13,exit:13,"3310_0":13,subtract:13,fopt:13,neither:13,nor:13,pad:13,angular:13,interpret:13,lem15_his_01234:13,rebin:13,fudg:13,elimin:13,sens:13,tweak:13,tdc_hifi_2014_00153:13,mnsi:13,"50k":13,unzoom:13,crosshair:13,gett0frompromptpeak:13,firstgoodbinoffset:13,argument:13,color:13,channel:13,interrupt:13,msr_file_in:13,msr_file_out:13,parc:13,wors:13,aim:13,idf1:13,idf2:13,nexus1:13,nexus2:13,flexibl:13,filenamelist:13,lem10_his_0111:13,lem10_his_0113:13,run3:13,runstart:13,runend:13,rrrr:13,rrrrrr:13,yyyi:13,unless:13,sent:13,stdout:13,compress:13,absent:13,lem10_his_0123:13,lem10_his_0123_v2:13,idf:13,deltat_tdc_gps_:13,d2001:13,deltat_tdc_gps_0123:13,deltat_tdc_gps_0137:13,deltat_tdc_alc_:13,rrr:13,spit:13,psi_gps_:13,psi_:13,"_gps_":13,psi_gps_run_100to117:13,archiv:13,lem10_his_0012:13,rebin25:13,lem10_his_0123_rebin25:13,runno:13,fileformat:13,pta:13,ltf:13,dolli:13,gpd:13,hifi:13,tdc_hifi_2015_00123:13,construct:13,path_to_data:13,write_per_run_block_chisq:13,pearson:13,fourier_set:13,phase_incr:13,phincr:13,increment:13,optim:13,root_set:13,marker_list:13,marker:13,color_list:13,intranet:13,mnt:13,unlik:13,headlin:13,style:13,lower_boundari:13,upper_boundari:13,init:13,alpha:13,asi:13,freq:13,constrain:13,semi:13,par:13,asy1:13,rate1:13,asy2:13,field2:13,rate2:13,whitespac:13,avoid:13,whenev:13,abbr:13,express:[6,13],"const":13,generexpo:13,stg:13,statgssktlf:13,sgktlf:13,dyngssktlf:13,dgktlf:13,statexpkt:13,sekt:13,statexpktlf:13,sektlf:13,dynexpktlf:13,dektlf:13,combilgkt:13,lgkt:13,strkt:13,skt:13,spinglass:13,spg:13,rdanisohf:13,rahf:13,internfld:13,internbsl:13,internfldgk:13,ifgk:13,internfldl:13,ifll:13,abragam:13,skewedgss:13,skg:13,staticnkzf:13,snkzf:13,staticnktf:13,snktf:13,dynamicnkzf:13,dnkzf:13,dynamicnktf:13,dnktf:13,muminusexptf:13,mmsetf:13,polynom:13,hayano:13,conden:13,matter:13,keren:13,uemura:13,crook:13,cywinski:13,turner:13,harshman:13,kornilov:13,pomjakushin:13,letter:13,larkin:13,physica:13,condens:13,noak:13,kalviu:13,oxford:13,simplifi:13,formula:13,ident:13,compact:13,difficulti:13,simultan:13,address:[6,13],funx:13,complic:13,dictionari:13,libmylibrari:13,tmyfunct:13,auxiliari:13,arithmet:13,divis:13,sin:[6,13],tan:[6,13],aco:13,asin:13,atan:13,cosh:13,sinh:13,tanh:13,acosh:13,asinh:13,atanh:13,exp:[6,13],sqrt:13,pow:[6,13],parx:13,par5:13,mapi:13,denot:13,frac1:13,shorten:13,logic:13,fire:13,addt0:13,rrf_freq:13,rrf_pack:13,rrf_phase:13,exact:13,pie3:13,particular:13,run_file_nam:13,record:13,digress:13,musrfulldatapath:13,colon:13,smith:13,lem07_his_2018:13,musrfulldatapathtoken:13,runnam:13,ext:13,lem07_2018_rb1_npp:13,d2007:13,deltat_pta_gps_2650:13,d2010:13,deltat_tdc_gpd_8472:13,mue1:13,beauti:13,muminu:13,t0addrun1:13,t0addrun2:13,t0addrun1forward:13,t0addrun1backward:13,t0addrun2forward:13,t0addrun2backward:13,sum:13,onlin:13,angl:13,nanosecond:13,fun3:13,transfer:13,ten:13,fgb:13,lgb:13,larger:13,direct:13,span:13,meaningless:13,simplex:13,batch:13,anywher:13,contour:13,mnplot:13,optimum:13,list_of_param_to_be_fix:13,restor:13,freq1:13,freq2:13,complex:13,fit_rang:13,flavor:13,n00:13,n01:13,n10:13,n11:13,nn0:13,nn1:13,inlin:13,scale_n0_bkg:13,fals:13,print_level:13,footnot:13,bigger:13,phd:13,thesi:13,ubc:13,val0:13,sep:13,val1:13,valn:13,parx0:13,parx1:13,parxn:13,par7:13,par17:13,par22:13,par27:13,par32:13,par37:13,par42:13,par47:13,par52:13,par57:13,par62:13,par67:13,par72:13,par77:13,par82:13,fcp:13,bcp:13,relative_bcp:13,parrx0:13,rel:13,summ:13,parxj:13,parr:13,obvious:13,offest:13,range_for_phase_correct:13,par8:13,nsec:13,min:[6,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,10],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,10],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:[6,13],ufx:13,g_ufx:13,consum:13,abrikosov:13,cycl:13,thu:13,overhead:13,tmyglobalfunct:13,isvalid:13,fvalid:13,fprevparam:13,calcsomethingcpuexpens:13,liklei:13,getwhatisneed:13,privat:13,finvokedglob:13,fidxglob:13,fglobaluserfcn:13,static_cast:13,sorri:13,resiz:13,pointer:13,dynamic_cast:13,retriev:13,pseudo:13,increas:13,safeti:13,manjaro:10,antergo:10,distro:10,deb:10,installatio:10,ration:[],indicationg:13,helic:13,opposit:13,zaher:0,robert:0,scheuermann:0,contruct:0,helec:13,broken:10,bind:[],cope:10,agre:10,complain:10,mojav:10,unistal:10,catalina:[],homebrew:[],novemb:[],aspect:10,stumbl:10,smooth:10,zsh:10,zprofil:10,nuisanc:10,trigger:10,crash:10,bla:[],ref:[],htmldoc:[],nearli:13,genuin:13,multidimension:13,slower:13,revert:13,linear:13,matrix:13,compatibilti:13,covari:13,pari:13,sector:13,speedup:13,khrono:13,lokk:[],bundl:6,complement:6,histori:6,sigmasc_10:6,sigmasc_10err:6,"var":6,var_nam:6,expr:6,datat:6,invt:6,accompani:6,invterr:6,dataterr:6,col:6,sigmasc:6,e3p8kev:6,b10mt:6,tscan:6,b150mt:6,"10mt":6,sigma:6,nuclear:6,sigmaerr:6,"150mt":6,sigmasc_150:6,sigmasc_150err:6,sigmascvstemp:6,refin:6,row:6,one_to_on:13,mainli:13,big:10,sur:10,chanc:[],christma:[],issu:[],requri:[],intel:10,qt6:[8,10],kick:10,wide:10,dopengl:10,dbuiltin_glew:10,handler:[],profound:13,impact:13,polar:13,normaiz:13,mont:13,carlo:13,dealt:13,interpol:13,prgehandl:13,bool:13,prgedatalist:13,getrgedata:13,fdata:13,getzmax:13,get_n:13,getenergyindex:13,readrgefil:13,prgedata:13,runtim:13,nonlocal_par:13,fourier_point:13,trim_sp:13,rge_fln_pr:13,sn_e:13,portion:13,embrac:13,sn_e1000:13,sn_e2000:13,aforement:13,pnl_pippardfitterglob:13,frgehandl:13,nonlocal_startup:13,panic:13,unhappi:13,unfriendli:13,pnl_pippardfitt:13,fpippardfitterglob:13,calculatefield:13,energyindex:13,calcualt:13,pol:13,dpol:13,getmuonstoppingdens:13,degree2rad:13,getmagneticfield:13,fab:13},objects:{},objtypes:{},objnames:{},titleterms:{acknowledg:0,any2mani:[13,1],univers:1,"\u03bcsr":[6,13,7,1,12],file:[5,8,13,7,1,12,11],format:[13,1,7],convert:1,bugtrack:2,how:3,cite:3,musrfit:[5,8,4,13,3,11,9,10],welcom:4,document:[4,12],indic:4,tabl:4,msr2data:[5,13,11],program:5,automat:5,process:[5,11],multipl:[5,11],msr:[5,13,11],basic:[5,8,13,7],type:[5,13],usag:[5,6,13,8],run:[5,13,7],list:5,structur:5,option:[5,10],paramet:[5,6,8],global:[5,13],mode:5,gener:[5,13],extract:5,extend:5,known:5,limit:5,graphic:[5,6,9],user:[5,6,13,7,12],interfac:[5,6,7,8],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:[13,7],tmusrrunhead:7,concept:7,header:7,write:7,read:[11,7],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,13,12],avail:[8,13],execut:[8,13],configur:[8,13],musrgui:[8,10],musredit_startup:8,xml:[8,13,12],featur:8,musrwiz:8,theori:[8,13],"function":[8,13,12],map:[8,13],fit:[11,8,13,9],info:8,creat:8,musrstep:8,set:[9,10],high:9,speed:9,gpu:[13,9],tesla:9,k40c:9,nvidia:9,driver:9,instal:[9,10],cuda:9,via:[9,10],automak:[],cmake:[9,10],amd:9,card:9,radeon:9,"390x":9,app:9,softwar:[9,10],develop:9,kit:9,sdk:9,enabl:[13,9],opencl:[13,9],support:[13,9,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:[],check:10,window:10,cygwin:10,potenti:10,problem:10,mac:10,macport:10,packag:10,from:10,sourc:10,environ:10,variabl:[6,10],fink:10,obsolet:10,tutori:11,singl:[13,11],histogram:[13,11],determin:11,data:[11,12],rang:11,musrt0:[13,11],model:[11,12],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:[13,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,beta:13,note:10,catalina:10,minuit2:13,detail:13,defin:6,dialog:6,depreci:10,rge:13,handler:13,low:13,energi:13},envversion:43}) \ No newline at end of file diff --git a/doc/html/setup-dks.html b/doc/html/setup-dks.html index 828f38fc..857c30ca 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.6.5 documentation + Setting up musrfit / DKS: High Speed Fitting with GPU’s — musrfit 1.7.1 documentation @@ -14,7 +14,7 @@ - + @@ -41,7 +41,7 @@
  • previous |
  • -
  • musrfit 1.6.5 documentation »
  • +
  • musrfit 1.7.1 documentation »
  • @@ -321,12 +321,12 @@ The only thing you need DKS previous | -
  • musrfit 1.6.5 documentation »
  • +
  • musrfit 1.7.1 documentation »
  • diff --git a/doc/html/setup-standard.html b/doc/html/setup-standard.html index 9e3ecaa7..5baa4d13 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.6.5 documentation + Setting up musrfit on Different Platforms — musrfit 1.7.1 documentation @@ -14,7 +14,7 @@ - + @@ -41,7 +41,7 @@
  • previous |
  • -
  • musrfit 1.6.5 documentation »
  • +
  • musrfit 1.7.1 documentation »
  • @@ -1302,12 +1302,12 @@ $ musrview test-histo-ROOT-NPP.msr
  • previous |
  • -
  • musrfit 1.6.5 documentation »
  • +
  • musrfit 1.7.1 documentation »
  • diff --git a/doc/html/tutorial.html b/doc/html/tutorial.html index 54cdb53f..2f530a62 100644 --- a/doc/html/tutorial.html +++ b/doc/html/tutorial.html @@ -6,7 +6,7 @@ - Tutorial for musrfit — musrfit 1.6.5 documentation + Tutorial for musrfit — musrfit 1.7.1 documentation @@ -14,7 +14,7 @@ - + @@ -41,7 +41,7 @@
  • previous |
  • -
  • musrfit 1.6.5 documentation »
  • +
  • musrfit 1.7.1 documentation »
  • @@ -443,12 +443,12 @@ For a complete description please refer to the manuals of previous | -
  • musrfit 1.6.5 documentation »
  • +
  • musrfit 1.7.1 documentation »
  • diff --git a/doc/html/user-libs.html b/doc/html/user-libs.html index 0f07a205..76cbf2ae 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.6.5 documentation + Documentation of user libs (user functions) — musrfit 1.7.1 documentation @@ -14,7 +14,7 @@ - + @@ -41,7 +41,7 @@
  • previous |
  • -
  • musrfit 1.6.5 documentation »
  • +
  • musrfit 1.7.1 documentation »
  • @@ -662,12 +662,12 @@ K(m)&=\int_0^{\pi/2}\frac{\mathrm d\varphi}{\sqrt{1-m^2\sin^2{\varphi}}},\en
  • previous |
  • -
  • musrfit 1.6.5 documentation »
  • +
  • musrfit 1.7.1 documentation »
  • diff --git a/doc/html/user-manual.html b/doc/html/user-manual.html index 1ac58bc3..c2f9d9b6 100644 --- a/doc/html/user-manual.html +++ b/doc/html/user-manual.html @@ -6,7 +6,7 @@ - User manual — musrfit 1.6.5 documentation + User manual — musrfit 1.7.1 documentation @@ -14,7 +14,7 @@ - + @@ -41,7 +41,7 @@
  • previous |
  • -
  • musrfit 1.6.5 documentation »
  • +
  • musrfit 1.7.1 documentation »
  • @@ -2450,9 +2450,152 @@ parallelized and the operator() is expected to evaluate to reasonable values for In case this cannot be ensured, the parallelization can be disabled by –disable-omp on the configure level of the program installation.

    +
    +

    rge-file handler for Low-Energy μSR

    +

    In the case of LE-μSR, the muon stopping distribution might have a profound impact on the muon polarization function \(P(t)\). In case of transverse field μSR measurements it can be written as

    +
    +\[P(t) = \int_0^\infty n(z) \cos(\gamma_\mu B(z) t + \varphi) \, dz\]
    +

    where \(n(z)\) is the normaized muon stopping distribution obtained from the Monte-Carlo code TRIM.SP. Normalized means

    +
    +\[\int_0^\infty n(z) \, dz = 1.\]
    +

    \(\gamma_\mu = 2 \pi \times 135.54\) MHz/T is the gyromagnetic ratio of the muon and \(\varphi\) +is the initial phase of the muon spins with respect to the positron detector. Typically \(B(z)\) is the function which needs to be dealt with in a specific user function. A simple example would be the Meissner screening of a superconductor, for which

    +
    +\[B(z) = B_0\, \exp(-z/\lambda),\]
    +

    with \(B_0\) being the applied magnetic field, and \(\lambda\) is the magnetic penetration depth.

    +

    This means that one needs to deal with the \(n(z)\) objects in all these user functions. \(n(z)\) does not only depend on the depth, but also on the implantation energy \(E_{\rm impl}\). For a real experiment this means that one is calculating a collection (various energies) of muon stopping distribution profiles with TRIM.SP. In the language of TRIM.SP, these files are called rge-files.

    +

    Since this is often needed in a detailed analysis of LE-μSR spectra, there is a special rge-file handler class implemented which deals with the loading, normalization and interpolation of these \(n(z, E_{\rm impl})\) objects. The essential user-interface of this class with the name PRgeHandler is given +here:

    +
    class PRgeHandler : public TObject
    +{
    +  public:
    +    PRgeHandler(std::string fln="");
    +    virtual ~PRgeHandler() {}
    +
    +    virtual bool IsValid() { return fValid; }
    +    virtual PRgeDataList GetRgeData() { return fData; }
    +    virtual Double_t GetZmax(const Double_t energy);
    +    virtual Double_t GetZmax(const Int_t idx);
    +    virtual Double_t Get_n(const Double_t energy, const Double_t z);
    +    virtual Double_t Get_n(const Int_t idx, const Double_t z);
    +    virtual Int_t GetEnergyIndex(const Double_t energy);
    +
    +  private:
    +    bool fValid{false};
    +    PRgeDataList fData;
    +
    +    virtual bool ReadRgeFile(const std::string fln, PRgeData &data);
    +};
    +
    +
    +

    The rge-file objects are loaded internally (see below) and can easily be accessed via this interface. The \(n(z, E_{\rm impl})\) data can either be accessed via Get_n(const Double_t energy, const Double_t z), i.e. via the implantation energy (given in eV), or via Get_n(const Int_t idx, const Double_t z) with the index idx which is the energy index of the collection. Both this routines deliver \(n(z, E_{\rm impl})\) in normalized form. The on via the energy index is slightly more efficient. The routine GetEnergyIndex(const Double_t energy) allows the get the proper energy index of the collection.

    +

    In order that class can find the rge-files at runtime, a xml-file is needed when calling the constructor. Very often, specific user-function need some additional input which is not delivered via the msr-files, but via a startup xml-file. In this case the rge-file will be just a part of the startup xml-file. For instance in the case of the Nonlocal Meissner screening user-function class, this looks like this

    +
    <?xml version="1.0" encoding="UTF-8"?>
    +<nonlocal xmlns="http://nemu.web.psi.ch/musrfit/nonlocal">
    +  <comment>
    +      Fourier and TrimSp information
    +  </comment>
    +  <nonlocal_par>
    +      <fourier_points>262144</fourier_points>
    +  </nonlocal_par>
    +  <trim_sp>
    +      <data_path>./profiles/</data_path>
    +      <rge_fln_pre>Sn_E</rge_fln_pre>
    +      <energy_list>
    +          <energy>1000</energy>
    +          <energy>2000</energy>
    +          <energy>4000</energy>
    +          <energy>6000</energy>
    +          <energy>8000</energy>
    +          <energy>10000</energy>
    +          <energy>12000</energy>
    +          <energy>14100</energy>
    +          <energy>18000</energy>
    +          <energy>22000</energy>
    +          <energy>25000</energy>
    +          <energy>27300</energy>
    +      </energy_list>
    +  </trim_sp>
    +</nonlocal>
    +
    +
    +

    The relevant portion for the rge-file handler class is starting with the xml tag <trim_sp> and contains four further tags:

    +
      +
    • <data_path>: Here the path where to find the rge-files needs to be given
    • +
    • <rge_fln_pre>: Start portion of the rge-file name.
    • +
    • <energy_list>: This will embrace all the implantation energies available.
    • +
    • <energy>: A single energy (in eV)
    • +
    +

    In the given example the files are searched for in the sub-directory call profiles of the current directory. The rge-files have file names like +Sn_E1000.rge, Sn_E2000.rge, etc.

    +

    In the aforementioned Nonlocal Meissner screening class, in the constructor you will find the following invocation of the rge-handler object:

    +
    PNL_PippardFitterGlobal::PNL_PippardFitterGlobal()
    +{
    + ...
    +
    +  // load all the TRIM.SP rge-files
    +  fRgeHandler = new PRgeHandler("./nonlocal_startup.xml");
    +  if (!fRgeHandler->IsValid()) {
    +    std::cout << std::endl << ">> PNL_PippardFitterGlobal::PNL_PippardFitterGlobal **PANIC ERROR**";
    +    std::cout << std::endl << ">>  rge data handler too unhappy. Will terminate unfriendly, sorry.";
    +    std::cout << std::endl;
    +    fValid = false;
    +  }
    +
    +  ...
    +}
    +
    +
    +

    And in the operator() function call which calculates the muon spin polarization, it will look like this

    +
    Double_t PNL_PippardFitter::operator()(Double_t t, const std::vector<Double_t> &param) const
    +{
    +  ...
    +
    +  // calculate field if parameter have changed
    +  fPippardFitterGlobal->CalculateField(param);
    +  Int_t energyIndex = fPippardFitterGlobal->GetEnergyIndex(param[0]);
    +  if (energyIndex == -1) { // energy not found
    +    std::cerr << std::endl << ">> PNL_PippardFitter::operator() energy " << param[0] << " not found. Will terminate." << std::endl;
    +    assert(0);
    +  }
    +
    +  ...
    +
    +  // calcualte polarization
    +  Bool_t done = false;
    +  Double_t pol = 0.0, dPol = 0.0;
    +  Double_t z=0.0;
    +  Int_t terminate = 0;
    +  Double_t dz = 1.0;
    +
    +  do {
    +    if (z < param[8]) { // z < dead-layer
    +      dPol = fPippardFitterGlobal->GetMuonStoppingDensity(energyIndex, z) * cos(GAMMA_MU * param[6] * t + param[7] * DEGREE2RAD);
    +    } else {
    +      dPol = fPippardFitterGlobal->GetMuonStoppingDensity(energyIndex, z) * cos(GAMMA_MU * param[6] * fPippardFitterGlobal->GetMagneticField(z-param[8]) * t + param[7] * DEGREE2RAD);
    +    }
    +    z += dz;
    +    pol += dPol;
    +
    +    // change in polarization is very small hence start termination counting
    +    if (fabs(dPol) < 1.0e-9) {
    +      terminate++;
    +    } else {
    +      terminate = 0;
    +    }
    +
    +    if (terminate > 10) // polarization died out hence one can stop
    +      done = true;
    +  } while (!done);
    +
    +  return pol*dz;
    +}
    +
    +
    +
    -

    Technical Description of the musrfit framework

    +

    Technical Description of the musrfit framework

    A technical description of the musrfit framework can be found on its own docu.

    @@ -2505,6 +2648,7 @@ In case this cannot be ensured, the parallelization can be disabled by ̵
  • User Functions
  • Technical Description of the musrfit framework
  • @@ -2552,12 +2696,12 @@ In case this cannot be ensured, the parallelization can be disabled by ̵
  • previous |
  • -
  • musrfit 1.6.5 documentation »
  • +
  • musrfit 1.7.1 documentation »