add first Qt6 version of musredit, mupp, etc.

This commit is contained in:
suter_a 2021-01-22 22:04:11 +01:00
parent acb1b1542a
commit 01957630e8
358 changed files with 59153 additions and 47 deletions

View File

@ -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.6.4 LANGUAGES C CXX)
project(musrfit VERSION 1.6.5 LANGUAGES C CXX)
#--- musrfit specific options -------------------------------------------------
option(dks "build musrfit with DKS (GPU/MIC) support" ON)
@ -150,49 +150,58 @@ endif (DKS_FOUND)
if (qt_based_tools)
# check for any Qt, i.e. AUTO
if (qt_version STREQUAL AUTO)
# first try Qt5
# Find the QtCore library
# try Qt6
find_package(Qt6Core)
if (Qt6Core_FOUND)
find_package(Qt6Widgets CONFIG REQUIRED)
find_package(Qt6Xml CONFIG REQUIRED)
find_package(Qt6Network CONFIG REQUIRED)
find_package(Qt6Svg CONFIG REQUIRED)
find_package(Qt6PrintSupport CONFIG REQUIRED)
endif (Qt6Core_FOUND)
# try Qt5
find_package(Qt5Core)
if (Qt5Core_FOUND)
# Find the QtWidgets library
if (NOT Qt5Core_FOUND)
find_package(Qt5Widgets CONFIG REQUIRED)
# Find the QtXml library
find_package(Qt5Xml CONFIG REQUIRED)
# Find the QtNetwork library
find_package(Qt5Network CONFIG REQUIRED)
# Find the QtSvg library
find_package(Qt5Svg CONFIG REQUIRED)
# Fing the QtPrintSupport
find_package(Qt5PrintSupport CONFIG REQUIRED)
endif (Qt5Core_FOUND)
endif (NOT Qt5Core_FOUND)
# if Qt5 is not found, try Qt4
if (NOT Qt5Core_FOUND)
# if Qt6 and Qt5 is not found, try Qt4
if (NOT Qt6Core_FOUND AND NOT Qt5Core_FOUND)
find_package(Qt4 COMPONENTS QtGui QtWebKit QtXml)
endif (NOT Qt5Core_FOUND)
endif (NOT Qt6Core_FOUND AND NOT Qt5Core_FOUND)
# if Qt5 and Qt4 is not found try Qt3. Hopefully you never reach this point
if (NOT Qt5Core_FOUND)
if (NOT Qt4_FOUND)
find_package(Qt3)
endif (NOT Qt4_FOUND)
endif (NOT Qt5Core_FOUND)
# if Qt6, Qt5 and Qt4 is not found try Qt3. Hopefully you never reach this point
if (NOT Qt6Core_FOUND AND NOT Qt5Core_FOUND AND Qt4_FOUND)
find_package(Qt3)
endif (NOT Qt6Core_FOUND AND NOT Qt5Core_FOUND AND Qt4_FOUND)
endif (qt_version STREQUAL AUTO)
# check specifically for Qt5
# check specifically for Qt6
if (qt_version STREQUAL 6)
find_package(Qt6Core)
if (Qt6Core_FOUND)
find_package(Qt6Widgets CONFIG REQUIRED)
find_package(Qt6Xml CONFIG REQUIRED)
find_package(Qt6Network CONFIG REQUIRED)
find_package(Qt6Svg CONFIG REQUIRED)
find_package(Qt6PrintSupport CONFIG REQUIRED)
else (Qt6Core_FOUND)
message(FATAL_ERROR "Couldn't find the specifically requested Qt6 version.")
endif (Qt6Core_FOUND)
endif (qt_version STREQUAL 6)
# check specifically for Qt5
if (qt_version STREQUAL 5)
# Find the QtCore library
find_package(Qt5Core)
if (Qt5Core_FOUND)
# Find the QtWidgets library
find_package(Qt5Widgets CONFIG REQUIRED)
# Find the QtXml library
find_package(Qt5Xml CONFIG REQUIRED)
# Find the QtNetwork library
find_package(Qt5Network CONFIG REQUIRED)
# Find the QtSvg library
find_package(Qt5Svg CONFIG REQUIRED)
# Fing the QtPrintSupport
find_package(Qt5PrintSupport CONFIG REQUIRED)
else (Qt5Core_FOUND)
message(FATAL_ERROR "Couldn't find the specifically requested Qt5 version.")
@ -219,7 +228,7 @@ endif (qt_based_tools)
#--- if NeXus check also for HDF4, HDF5, and MXML -----------------------------
if (nexus)
find_package(HDF5 COMPONENTS CXX REQUIRED )
find_package(HDF4 REQUIRED)
#as35 find_package(HDF4 REQUIRED)
find_package(NeXus REQUIRED)
add_definitions(-DPNEXUS_ENABLED)
endif (nexus)
@ -288,17 +297,21 @@ endif (nexus)
message("")
if (qt_based_tools)
if (Qt5Core_FOUND)
message(" Qt found in ${Qt5Core_INCLUDE_DIRS} (Version: ${Qt5Core_VERSION})")
else (Qt5Core_FOUND)
if (Qt4_FOUND)
message(" Qt found (Version: ${QT_VERSION_MAJOR}.${QT_VERSION_MINOR}.${QT_VERSION_PATCH})")
else (Qt4_FOUND)
if (QT_FOUND)
message(" Qt found (Version: ${QT_VERSION})")
endif (QT_FOUND)
endif (Qt4_FOUND)
endif (Qt5Core_FOUND)
if (Qt6Core_FOUND)
message(" Qt found in ${Qt6Core_INCLUDE_DIRS} (Version: ${Qt6Core_VERSION})")
else (Qt6Core_FOUND)
if (Qt5Core_FOUND)
message(" Qt found in ${Qt5Core_INCLUDE_DIRS} (Version: ${Qt5Core_VERSION})")
else (Qt5Core_FOUND)
if (Qt4_FOUND)
message(" Qt found (Version: ${QT_VERSION_MAJOR}.${QT_VERSION_MINOR}.${QT_VERSION_PATCH})")
else (Qt4_FOUND)
if (QT_FOUND)
message(" Qt found (Version: ${QT_VERSION})")
endif (QT_FOUND)
endif (Qt4_FOUND)
endif (Qt5Core_FOUND)
endif (Qt6Core_FOUND)
endif (qt_based_tools)
message("")
message(" Features:")
@ -336,25 +349,27 @@ else (BNMRlibs)
endif (BNMRlibs)
if (qt_based_tools)
if (Qt5Core_FOUND)
if (Qt6Core_FOUND)
message("")
message(" Qt6 based tools:")
message(" musredit, musrStep, musrWiz, mupp : yes")
elseif (Qt5Core_FOUND)
message("")
message(" Qt5 based tools:")
message(" musredit, musrStep, musrWiz, mupp : yes")
endif (Qt5Core_FOUND)
if (Qt4_FOUND)
elseif (Qt4_FOUND)
message("")
message(" Qt4 based tools (deprecated):")
message(" musredit : yes")
endif (Qt4_FOUND)
if (QT_FOUND)
else ()
message("")
message(" Qt3 based tools (outdated):")
message(" musrgui : yes")
endif (QT_FOUND)
if (NOT Qt5Core_FOUND AND NOT Qt4_FOUND AND NOT QT_FOUND)
endif ()
if (NOT Qt6Core_FOUND AND NOT Qt5Core_FOUND AND NOT Qt4_FOUND AND NOT QT_FOUND)
message("")
message(" NO Qt based tools will be installed since Qt is not found or not installed on the system")
endif (NOT Qt5Core_FOUND AND NOT Qt4_FOUND AND NOT QT_FOUND)
endif (NOT Qt6Core_FOUND AND NOT Qt5Core_FOUND AND NOT Qt4_FOUND AND NOT QT_FOUND)
else (qt_based_tools)
message("")
message(" Qt based tools (musredit, musrStep, musrWiz, mupp) have been disabled")

View File

@ -12,6 +12,11 @@ or
https://bitbucket.org/muonspin/musrfit/commits/all
Release of V1.6.5, 2021/01/22
=============================
Add Qt6 version of musredit, mupp, etc.
Release of V1.6.4, 2020/08/29
=============================

View File

@ -1,7 +1,9 @@
#--- add further sub-directories ----------------------------------------------
add_subdirectory(classes)
add_subdirectory(external)
if (Qt5Core_FOUND)
if (Qt6Core_FOUND)
add_subdirectory(musredit_qt6)
elseif (Qt5Core_FOUND)
add_subdirectory(musredit_qt5)
elseif (Qt4_FOUND)
add_subdirectory(musredit)

View File

@ -0,0 +1,12 @@
#--- musredit_qt6 for Qt > 6.0 ------------------------------------------------
#--- create musrfit-info.h ----------------------------------------------------
configure_file(
${CMAKE_SOURCE_DIR}/cmake/musrfit-info.h.in
${CMAKE_CURRENT_BINARY_DIR}/musrfit-info.h
)
add_subdirectory(musredit)
add_subdirectory(musrStep)
add_subdirectory(musrWiz)
add_subdirectory(mupp)

View File

@ -0,0 +1,107 @@
#--- mupp for Qt > 6.0 --------------------------------------------------------
#--- Find includes in corresponding build directories -------------------------
set(CMAKE_INCLUDE_CURRENT_DIR ON)
#--- instruct CMake to run moc automatically when needed ----------------------
set(CMAKE_AUTOMOC ON)
#--- define mupp version ------------------------------------------------------
set(mupp_VERSION 1.0.0)
#--- mupp_version.h generation - START ----------------------------------------
configure_file(
${CMAKE_CURRENT_SOURCE_DIR}/cmake/configure_mupp_version_file.cmake.in
${CMAKE_CURRENT_BINARY_DIR}/configure_mupp_version_file.cmake
@ONLY
)
add_custom_command(
OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/mupp_version.h
COMMAND ${CMAKE_COMMAND} -P
${CMAKE_CURRENT_BINARY_DIR}/configure_mupp_version_file.cmake
DEPENDS
${CMAKE_CURRENT_BINARY_DIR}/configure_mupp_version_file.cmake
${CMAKE_CURRENT_SOURCE_DIR}/cmake/mupp_version.h.in
COMMENT "Configuring mupp_version.h"
VERBATIM
)
add_custom_target(
configure_mupp_version ALL
DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/mupp_version.h
)
#--- mupp_version.h generation - END ------------------------------------------
add_subdirectory(plotter)
qt6_add_resources(qrc_mupp.cpp mupp.qrc)
set_property(SOURCE qrc_mupp.cpp PROPERTY SKIP_AUTOMOC ON) # needed for cmake 3.x
set(GENERATED_HEADER_FILES
mupp_version.h
)
set_property(SOURCE mupp_version.h PROPERTY SKIP_AUTOMOC ON) # needed for cmake 3.x
set(MUPP_SOURCE_FILES
mupp.cpp
PmuppAdmin.cpp
Pmupp.cpp
PmuppScript.cpp
PmuppGui.cpp
PVarDialog.cpp
)
if (APPLE)
set(RESOURCE_FILES icons/mupp.icns)
add_executable(mupp
MACOSX_BUNDLE ${GENERATED_HEADER_FILES} ${MUPP_SOURCE_FILES}
qrc_mupp.cpp ${RESOURCE_FILES}
)
else (APPLE)
add_executable(mupp ${GENERATED_HEADER_FILES} ${MUPP_SOURCE_FILES} qrc_mupp.cpp)
endif (APPLE)
#--- compiler option to workaround a little cast problem for some
#--- boost/compiler combinations ----------------------------------------------
target_compile_options(mupp
PRIVATE
"-fpermissive"
)
#--- add the variable related sources -----------------------------------------
add_subdirectory(var)
#--- add the necessary header includes ----------------------------------------
target_include_directories(mupp
BEFORE PRIVATE
$<BUILD_INTERFACE:${Boost_INCLUDE_DIR}>
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}>
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/var/include>
)
#--- use the Widgets and XML modules from Qt5 ---------------------------------
target_link_libraries(mupp Qt6::Widgets Qt6::Xml)
#--- if macOS make an app rather than just a command line executable ----------
set_target_properties(mupp PROPERTIES
VERSION ${mupp_VERSION}
)
if (APPLE)
set_target_properties(mupp PROPERTIES
MACOSX_BUNDLE TRUE
MACOSX_BUNDLE_BUNDLE_NAME "mupp"
MACOSX_BUNDLE_INFO_STRING "mupp is used to plot parameters from musrfit collections."
MACOSX_BUNDLE_ICON_FILE "mupp.icns"
MACOSX_BUNDLE_LONG_VERSION_STRING "${mupp_VERSION}"
MACOSX_FRAMEWORK_IDENTIFIER ch.psi.mupp
MACOSX_BUNDLE_COPYRIGHT "Andreas Suter"
RESOURCE "${RESOURCE_FILES}"
)
endif (APPLE)
#--- install ------------------------------------------------------------------
if (APPLE)
install(TARGETS mupp BUNDLE DESTINATION /Applications)
else (APPLE)
install(TARGETS mupp DESTINATION ${CMAKE_INSTALL_PREFIX}/bin)
endif (APPLE)

View File

@ -0,0 +1,459 @@
/***************************************************************************
PVarDialog.cpp
Author: Andreas Suter
e-mail: andreas.suter@psi.ch
***************************************************************************/
/***************************************************************************
* Copyright (C) 2007-2020 by Andreas Suter *
* andreas.suter@psi.ch *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program; if not, write to the *
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
#include <iostream>
#include <QVBoxLayout>
#include <QHBoxLayout>
#include <QSplitter>
#include <QListWidgetItem>
#include <QMessageBox>
#include <QLabel>
#include <QRegularExpression>
#include "PVarDialog.h"
//--------------------------------------------------------------------------
/**
* @brief PShowVarNameDialog::PShowVarNameDialog. Ctor
* @param info containing the necessary information of the collection
*/
PShowVarNameDialog::PShowVarNameDialog(PCollInfo &info)
{
// if fCollName is a path name, extract the fln
QString collNameStr(info.fCollName);
if (collNameStr.contains("/")) {
QStringList tok = collNameStr.split('/', Qt::SkipEmptyParts);
collNameStr = tok[tok.count()-1];
}
QLabel *collName = new QLabel(collNameStr);
QLabel *numVars = new QLabel(QString("#variables: %1").arg(info.fVarName.count()));
QListWidget *list = new QListWidget();
for (int i=0; i<info.fVarName.count(); i++) {
QListWidgetItem *newItem = new QListWidgetItem;
newItem->setText(QString("%1 : %2").arg(i, 2).arg(info.fVarName[i]));
list->addItem(newItem);
}
QPushButton *done = new QPushButton("Done", this);
QVBoxLayout *vLayout = new QVBoxLayout;
vLayout->addWidget(collName);
vLayout->addWidget(numVars);
vLayout->addWidget(list);
vLayout->addWidget(done);
connect(done, SIGNAL( clicked() ), this, SLOT( accept() ));
resize(300, 450);
setLayout(vLayout);
setModal(false);
setWindowTitle("Variable Names");
QString iconName("");
if (true) // <-- NEEDS TO BE PROPERLY IMPLEMENTED
iconName = QString(":/icons/varEdit-dark.svg");
else
iconName = QString(":/icons/varEdit-plain.svg");
setWindowIcon( QIcon( QPixmap(iconName) ) );
}
//--------------------------------------------------------------------------
/**
* @brief PVarDialog::PVarDialog. Variable GUI allowing the users to define
* variables.
* @param collection_list list of all the collections
* @param darkTheme plain/dark theme flag
* @param parent parent widget pointer
* @param f window flag
*/
PVarDialog::PVarDialog(QVector<PCollInfo> collection_list, bool darkTheme,
QWidget *parent, Qt::WindowFlags f) :
QDialog(parent, f), fCollList(collection_list)
{
fVarEdit = new QPlainTextEdit();
fCollectionView = new QListWidget();
fCancel = new QPushButton("&Cancel", this);
fCheck = new QPushButton("Chec&k", this);
fAdd = new QPushButton("&Add", this);
fHelp = new QPushButton("&Help", this);
fShowVarName = new QPushButton("Show&VarName", this);
// fill collection view
for (int i=0; i<fCollList.count(); i++) {
QListWidgetItem *newItem = new QListWidgetItem;
newItem->setText(fCollList[i].fCollName);
fCollectionView->addItem(newItem);
}
fCollectionView->setCurrentRow(0, QItemSelectionModel::Select);
fCollectionView->setSelectionMode(QAbstractItemView::ExtendedSelection);
QHBoxLayout *hLayout0 = new QHBoxLayout;
hLayout0->addWidget(fShowVarName);
hLayout0->addWidget(fHelp);
QHBoxLayout *hLayout1 = new QHBoxLayout;
hLayout1->addWidget(fCancel);
hLayout1->addWidget(fCheck);
hLayout1->addWidget(fAdd);
QLabel *varLabel = new QLabel("Edit Variables:");
QVBoxLayout *varVLayout = new QVBoxLayout;
varVLayout->addWidget(varLabel);
varVLayout->addWidget(fVarEdit);
QLabel *collLabel = new QLabel("Collections:");
QVBoxLayout *collVLayout = new QVBoxLayout;
collVLayout->addWidget(collLabel);
collVLayout->addWidget(fCollectionView);
QWidget *varWidget = new QWidget(this); // only needed since splitter needs a QWidget
varWidget->setLayout(varVLayout);
QWidget *collWidget = new QWidget(this); // only needed since splitter needs a QWidget
collWidget->setLayout(collVLayout);
QSplitter *splitter = new QSplitter(Qt::Vertical, this);
splitter->addWidget(varWidget);
splitter->addWidget(collWidget);
QVBoxLayout *vLayout = new QVBoxLayout;
vLayout->addWidget(splitter);
vLayout->addLayout(hLayout0);
vLayout->addLayout(hLayout1);
fVarEdit->resize(600, 300);
setLayout(vLayout);
resize(600, 450);
connect(fCancel, SIGNAL( clicked() ), this, SLOT( reject() ));
connect(fCheck, SIGNAL( clicked() ), this, SLOT( check() ));
connect(fAdd, SIGNAL( clicked() ), this, SLOT( add() ));
connect(fHelp, SIGNAL( clicked() ), this, SLOT( help() ));
connect(fShowVarName, SIGNAL( clicked() ), this, SLOT( showVarNames() ));
QString iconName("");
if (darkTheme)
iconName = QString(":/icons/varEdit-dark.svg");
else
iconName = QString(":/icons/varEdit-plain.svg");
setWindowIcon( QIcon( QPixmap(iconName) ) );
}
//--------------------------------------------------------------------------
/**
* @brief PVarDialog::check. Allows the user to check the variable string.
*/
void PVarDialog::check()
{
if (!basic_check())
return;
if (!var_consistency_check())
return;
// create the collection index vector
QVector<int> idx;
QList<QListWidgetItem *> selected = fCollectionView->selectedItems();
for (int i=0; i<selected.count(); i++) {
idx.push_back(fCollectionView->row(selected[i]));
}
emit check_request(fVarEdit->toPlainText(), idx);
}
//--------------------------------------------------------------------------
/**
* @brief PVarDialog::add. It is used to initiate the add variable to the mupp GUI.
*/
void PVarDialog::add()
{
if (fVarEdit->toPlainText().isEmpty()) {
QMessageBox::critical(this, "**ERROR**", "No input available.");
return;
}
if (fCollectionView->selectedItems().count() == 0) {
QMessageBox::critical(this, "**ERROR**", "One or more collection(s) need to linked to the variable(s).");
return;
}
if (!basic_check())
return;
if (!var_consistency_check())
return;
// create the collection index vector
QVector<int> idx;
QList<QListWidgetItem *> selected = fCollectionView->selectedItems();
for (int i=0; i<selected.count(); i++) {
idx.push_back(fCollectionView->row(selected[i]));
}
emit add_request(fVarEdit->toPlainText(), idx);
}
//--------------------------------------------------------------------------
/**
* @brief PVarDialog::help
*/
void PVarDialog::help()
{
QMessageBox::information(this, "Var Help",
"Syntax: var <var_name> = <expr>.\n"\
"<expr> can contain identifiers defined in the collections.\n"\
"An identifier is an addressed variable which is defined\n"\
"by a preceeding '$' before the variable name.\n"\
"Example: variable sigma -> identifier $sigma.\n"\
"Example:\nvar sigSC = pow(abs(pow($sigma,2.0)-pow(0.11,2.0)),0.5)");
}
//--------------------------------------------------------------------------
/**
* @brief PVarDialog::showVarNames. Show a variable name dialog for a given
* selected collection.
*/
void PVarDialog::showVarNames()
{
// get the selected collection
if (fCollectionView->selectedItems().count() == 0) {
QMessageBox::critical(this, "**ERROR**", "At least one collection needs to be selected.");
return;
}
if (fCollectionView->selectedItems().count() > 1) {
QMessageBox::critical(this, "**ERROR**", "Currently only the vars of a single collection can be shown.");
return;
}
int idx = fCollectionView->currentRow();
if (idx >= fCollList.count()) {
QMessageBox::critical(this, "**ERROR**", QString("Collection idx=%1 > #Collections=%2. This never should have happened.").arg(idx).arg(fCollList.count()));
return;
}
PCollInfo info = fCollList[idx];
PShowVarNameDialog *dialog = new PShowVarNameDialog(info);
dialog->show();
}
//--------------------------------------------------------------------------
/**
* @brief PVarDialog::basic_check. Carry out basic checks before feeding it
* to the parser.
* @return true on success
*/
bool PVarDialog::basic_check()
{
QString varStr = fVarEdit->toPlainText();
bool ok;
if (varStr.isEmpty()) {
QMessageBox::critical(this, "**ERROR**", "No input available.");
return false;
}
if (fCollectionView->selectedItems().count() == 0) {
QMessageBox::critical(this, "**ERROR**", "One or more collection(s) need to linked to the variable(s).");
return false;
}
// tokenize variable input
QStringList strList = varStr.split(QRegularExpression("\\s+"), Qt::SkipEmptyParts);
// check if there are ANY var definitions
ok = false;
for (int i=0; i<strList.count(); i++) {
if (strList[i] == "var") {
ok = true;
break;
}
}
if (!ok) {
QMessageBox::critical(this, "**ERROR**", "<b>NO</b> 'var' definition found.");
return false;
}
// check that for each variable, there is also an Err variable present
QStringList varNames = collectVarNames(strList, ok);
if (!ok) {
QMessageBox::critical(this, "**ERROR**", "found 'var' without <var_name>.");
return false;
}
QString name("");
if (!hasErrorDef(varNames, name)) {
QMessageBox::critical(this, "**ERROR**", QString("found &lt;var_name&gt;=%1 without corresponding %1Err.<br>Both, a variable <b>and</b> its corresponding error variable needs to be defined.").arg(name));
return false;
}
return true;
}
//--------------------------------------------------------------------------
/**
* @brief PVarDialog::var_consistency_check. Variable consistency checks. For
* instance it is checked that for each variable there is also the corresponding
* error variable defined.
* @return true on success
*/
bool PVarDialog::var_consistency_check()
{
QString varStr = fVarEdit->toPlainText();
// collect all identifiers
int idx = 0, idxEnd = 0;
QStringList varNames;
QVector<int> isIdendifier;
char ch;
bool done;
do {
idx = varStr.indexOf("$", idx);
if (idx > -1) { // found identifier
idxEnd = idx+1;
done = false;
do {
ch = varStr[idxEnd].toLatin1();
if (isalnum(ch) || (ch == '_'))
idxEnd++;
else
done = true;
} while (!done && (idxEnd <= varStr.length()));
varNames << varStr.mid(idx+1, idxEnd-idx-1);
isIdendifier.push_back(1);
idx++;
}
} while (idx != -1);
// collect all the variable names
idx = 0;
do {
idx = varStr.indexOf("var ", idx);
if (idx > -1) { // found variable
idxEnd = varStr.indexOf("=", idx);
if (idxEnd == -1) {
return false;
}
varNames << varStr.mid(idx+4, idxEnd-idx-5);
isIdendifier.push_back(0);
idx++;
}
} while (idx != -1);
// make sure that identifier is found in collection if it is not a variable
bool isVar = false;
bool found = false;
QString str;
QList<QListWidgetItem *> selColl = fCollectionView->selectedItems();
for (int i=0; i<varNames.count(); i++) {
if (isIdendifier[i] == 0) // it is a variable, hence nothing to be done
continue;
str = varNames[i];
if (str.endsWith("Err")) {
str = str.left(str.indexOf("Err"));
}
isVar = false;
for (int j=i+1; j<varNames.count(); j++) {
if ((varNames[j] == str) && isIdendifier[j] == 0) {
isVar = true;
break;
}
}
if (isVar)
continue;
for (int j=0; j<selColl.count(); j++) {
idx = fCollectionView->row(selColl[j]);
found = false;
for (int k=0; k<fCollList[idx].fVarName.count(); k++) {
if (str == fCollList[idx].fVarName[k]) {
found = true;
break;
}
}
if (!found) {
QMessageBox::critical(this, "**ERROR**", QString("Identifier '%1' not present in selected collection '%2'").arg(str).arg(fCollList[idx].fCollName));
return false;
}
}
}
return true;
}
//--------------------------------------------------------------------------
/**
* @brief PVarDialog::collectVarNames. Collect variable names from edit variable.
* @param list input list
* @param ok true if ok
* @return return variable list
*/
QStringList PVarDialog::collectVarNames(QStringList &list, bool &ok)
{
QStringList name;
ok = true;
for (int i=0; i<list.count(); i++) {
if (list[i] == "var") {
if (i+1 >= list.count()) {
ok = false;
} else {
name << list[i+1];
i++;
}
}
}
return name;
}
//--------------------------------------------------------------------------
/**
* @brief PVarDialog::hasErrorDef. Check for error definition
* @param varNames variable name list
* @param name failed variable name
* @return true on success
*/
bool PVarDialog::hasErrorDef(QStringList &varNames, QString &name)
{
QString errStr;
for (int i=0; i<varNames.count(); i++) {
if (!varNames[i].contains("Err", Qt::CaseSensitive)) { // not an error variable
errStr = varNames[i] + "Err";
bool ok = false;
for (int j=0; j<varNames.count(); j++) {
if (varNames[j] == errStr) {
ok = true;
break;
}
}
if (!ok) {
name = varNames[i];
return ok;
}
}
}
return true;
}

View File

@ -0,0 +1,102 @@
/***************************************************************************
PVarDialog.h
Author: Andreas Suter
e-mail: andreas.suter@psi.ch
***************************************************************************/
/***************************************************************************
* Copyright (C) 2007-2020 by Andreas Suter *
* andreas.suter@psi.ch *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program; if not, write to the *
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
#ifndef _PVARDIALOG_H_
#define _PVARDIALOG_H_
#include <QDialog>
#include <QPushButton>
#include <QPlainTextEdit>
#include <QListWidget>
#include <QVector>
//-----------------------------------------------------------------------------
/**
* @brief The PCollInfo struct
*/
struct PCollInfo
{
QString fCollName; ///< collection name
QStringList fVarName; ///< variable names of the given collection
};
//-----------------------------------------------------------------------------
/**
* @brief The PShowVarNameDialog class. Class used to create a show variable
* name dialog.
*/
class PShowVarNameDialog : public QDialog
{
Q_OBJECT
public:
PShowVarNameDialog(PCollInfo &info);
};
//-----------------------------------------------------------------------------
/**
* @brief The PVarDialog class
*/
class PVarDialog : public QDialog
{
Q_OBJECT
public:
PVarDialog(QVector<PCollInfo> collection_list, bool darkTheme,
QWidget *parent = nullptr,
Qt::WindowFlags f = Qt::WindowFlags());
private:
QPlainTextEdit *fVarEdit;
QListWidget *fCollectionView;
QPushButton *fCancel;
QPushButton *fAdd;
QPushButton *fCheck;
QPushButton *fHelp;
QPushButton *fShowVarName;
QVector<PCollInfo> fCollList;
bool basic_check();
bool var_consistency_check();
QStringList collectVarNames(QStringList &list, bool& ok);
bool hasErrorDef(QStringList &varNames, QString& name);
private slots:
void check();
void add();
void help();
void showVarNames();
signals:
void check_request(QString varStr, QVector<int> idx);
void add_request(QString varStr, QVector<int> idx);
};
#endif // _PVARDIALOG_H_

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,171 @@
/***************************************************************************
Pmupp.h
Author: Andreas Suter
e-mail: andreas.suter@psi.ch
***************************************************************************/
/***************************************************************************
* Copyright (C) 2007-2020 by Andreas Suter *
* andreas.suter@psi.ch *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program; if not, write to the *
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
#ifndef _PMUPP_H_
#define _PMUPP_H_
#include <QObject>
#include <QString>
#include <QVector>
#include <QStringList>
#include <QProcess>
#define MUPP_UNDEF 1.0e99
//----------------------------------------------------------------------------
/**
* <p>The PmuppParam class. It handles a single parameter: name, value,
* positive- and negative error.
*/
class PmuppParam {
public:
PmuppParam();
PmuppParam(QString name, double param, double posErr);
PmuppParam(QString name, double param, double posErr, double negErr);
void ResetParam();
void SetParam(QString name, double param, double posErr);
void SetParam(QString name, double param, double posErr, double negErr);
void SetName(QString name) { fName = name; }
void SetValue(double dval) { fValue = dval; }
void SetPosErr(double dval) { fPosErr = dval; }
void SetNegErr(double dval) { fNegErr = dval; }
QString GetName() { return fName; }
double GetValue() { return fValue; }
double GetPosErr() { return fPosErr; }
double GetNegErr() { return fNegErr; }
private:
QString fName; ///< parameter name
double fValue; ///< parameter value
double fPosErr; ///< positive error of the parameter
double fNegErr; ///< negative error of the parameter
};
//----------------------------------------------------------------------------
/**
* <p>The PmuppRun class. Contains all the parameters of a single run.
*/
class PmuppRun {
public:
PmuppRun() { fNumber = -1; fName=""; fParam.clear(); }
~PmuppRun() { fNumber = -1; fName=""; fParam.clear(); }
void Clear() { fNumber = -1; fName=""; fParam.clear(); }
void SetName(QString name) { fName = name; }
void SetNumber(int ival) { fNumber = ival; }
void AddParam(PmuppParam param) { fParam.push_back(param); }
int GetNumber() { return fNumber; }
QString GetName() { return fName; }
int GetNoOfParam() { return fParam.size(); }
PmuppParam GetParam(unsigned int idx);
private:
int fNumber; ///< run number
QString fName; ///< name of the run
QVector<PmuppParam> fParam; ///< parameters of the run
};
//----------------------------------------------------------------------------
/**
* <p>The PmuppCollection class. Is collecting a number of runs. Typically
* something like a full temperature scan, an energy scan, etc.
*/
class PmuppCollection {
public:
PmuppCollection() { fPathName=""; fName = ""; fRun.clear(); }
void SetPathName(QString pathName) { fPathName = pathName; }
void SetName (QString name) { fName = name; }
void AddRun(PmuppRun run) { fRun.push_back(run); }
QString GetPathName() { return fPathName; }
QString GetName() { return fName; }
int GetNoOfRuns() { return fRun.size(); }
PmuppRun GetRun(unsigned int idx);
private:
QString fPathName; ///< path-name of the collection
QString fName; ///< name of the collection
QVector<PmuppRun> fRun; ///< all the runs in the collection
};
//----------------------------------------------------------------------------
/**
* <p>The PParamDataHandler class. This class handles all the collections
* loaded.
*/
class PParamDataHandler : public QObject {
Q_OBJECT
public:
PParamDataHandler() {}
int GetNoOfCollections() { return fCollection.size(); }
void NewCollection(const QString name);
bool ReadParamFile(const QStringList fln, QString &errorMsg);
PmuppCollection ReadDbFile(const QString fln, bool &valid, QString &errorMsg);
PmuppCollection ReadColumnParamFile(const QString fln, bool &valid, QString &errorMsg);
PmuppCollection GetCollection(const int idx, bool &valid);
PmuppCollection GetCollection(const QString name, bool &valid);
PmuppCollection *GetCollection(const int idx);
PmuppCollection *GetCollection(const QString name);
int GetCollectionIndex(const QString name);
QString GetCollectionName(const int idx);
QVector<double> GetValues(QString collName, QString paramName);
QVector<double> GetPosErr(QString collName, QString paramName);
QVector<double> GetNegErr(QString collName, QString paramName);
void RemoveCollection(QString name);
void ReplaceCollection(PmuppCollection coll, int idx);
void Dump();
signals:
void newData();
private:
QProcess *fProc; ///< this will be needed if msr2data needs to be called
QVector<PmuppCollection> fCollection; ///< all the collections handeled
bool analyzeFileList(const QStringList &fln, QString &collectionName,
QStringList &arg, QString &workDir, QString &errorMsg);
private slots:
void readFromStdOut();
void readFromStdErr();
void processDone(int, QProcess::ExitStatus);
};
#endif // _PMUPP_H_

View File

@ -0,0 +1,605 @@
/****************************************************************************
PmuppAdmin.cpp
Author: Andreas Suter
e-mail: andreas.suter@psi.ch
*****************************************************************************/
/***************************************************************************
* Copyright (C) 2010-2017 by Andreas Suter *
* andreas.suter@psi.ch *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program; if not, write to the *
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
#include <cstdlib>
#include <iostream>
#include <QMessageBox>
#include <QString>
#include <QStringView>
#include <QFile>
#include <QTextStream>
#include <QVector>
#include <QDir>
#include <QProcessEnvironment>
#include <QSysInfo>
#include <QtDebug>
#include "PmuppAdmin.h"
//--------------------------------------------------------------------------
// implementation of PmuppColor class
//--------------------------------------------------------------------------
/**
* @brief PmuppColor::PmuppColor. Ctor
*/
PmuppColor::PmuppColor()
{
fName = "UnDef";
fRed = -1;
fGreen = -1;
fBlue = -1;
}
//--------------------------------------------------------------------------
/**
* @brief PmuppColor::setRGB. set RGB value
* @param r red (0..255)
* @param g green (0..255)
* @param b blue (0..255)
*/
void PmuppColor::setRGB(const int r, const int g, const int b)
{
if ((r>=0) && (r<=255))
fRed = r;
if ((g>=0) && (g<=255))
fGreen = g;
if ((b>=0) && (b<=255))
fBlue = b;
}
//--------------------------------------------------------------------------
// implementation of PmuppAdminXMLParser class
//--------------------------------------------------------------------------
/**
* <p>XML Parser class for the mupp administration file.
*
* \param admin pointer to an admin class instance.
*/
PmuppAdminXMLParser::PmuppAdminXMLParser(const QString& fln, PmuppAdmin *admin) : fAdmin(admin)
{
fValid = false;
fKeyWord = eEmpty;
QFile file(fln);
if (!file.open(QFile::ReadOnly | QFile::Text)) {
// warning and create default - STILL MISSING
}
fValid = parse(&file);
}
//--------------------------------------------------------------------------
/**
* <p>parse the mupp startup xml-file.
*
* \param device QFile object of the mupp startup xml-file
*
* @return true on success, false otherwise
*/
bool PmuppAdminXMLParser::parse(QIODevice *device)
{
fXml.setDevice(device);
bool expectChars = false;
while (!fXml.atEnd()) {
fXml.readNext();
if (fXml.isStartDocument()) {
startDocument();
} else if (fXml.isStartElement()) {
startElement();
expectChars = true;
} else if (fXml.isCharacters() && expectChars) {
characters();
} else if (fXml.isEndElement()) {
endElement();
expectChars = false;
} else if (fXml.isEndDocument()) {
endDocument();
}
}
if (fXml.hasError()) {
QString msg;
msg = QString("%1 Line %2, column %3").arg(fXml.errorString()).arg(fXml.lineNumber()).arg(fXml.columnNumber());
QMessageBox::critical(0, "**ERROR**", msg, QMessageBox::Ok, QMessageBox::NoButton);
return false;
}
return true;
}
//--------------------------------------------------------------------------
/**
* <p>Routine called at the beginning of the XML parsing process.
*/
bool PmuppAdminXMLParser::startDocument()
{
// nothing to be done here for now
return true;
}
//--------------------------------------------------------------------------
/**
* <p>Routine called when a new XML tag is found. Here it is used
* to set a tag for filtering afterwards the content.
*/
bool PmuppAdminXMLParser::startElement()
{
QString qName = fXml.name().toString();
if (qName == "path_file_name") {
fKeyWord = eRecentFile;
} else if (qName == "dark_theme") {
fKeyWord = eDarkTheme;
} else if (qName == "marker") {
fKeyWord = eMarker;
} else if (qName == "color") {
fKeyWord = eColor;
}
return true;
}
//--------------------------------------------------------------------------
/**
* <p>Routine called when the end XML tag is found. It is used to
* put the filtering tag to 'empty'. It also resets the fFunc flag in case
* the entry was a theory function.
*/
bool PmuppAdminXMLParser::endElement()
{
fKeyWord = eEmpty;
return true;
}
//--------------------------------------------------------------------------
/**
* <p>This routine delivers the content of an XML tag. It fills the
* content into the load data structure.
*/
bool PmuppAdminXMLParser::characters()
{
QString str = fXml.text().toString();
if (str.isEmpty())
return true;
bool ok;
int ival, r, g, b;
double dval;
QString name("");
QStringList tok;
switch (fKeyWord) {
case eRecentFile:
fAdmin->addRecentFile(QString(str.toLatin1()).trimmed());
break;
case eDarkTheme:
if ((str == "yes") || (str == "1") || (str == "true"))
fAdmin->setTheme(true);
else
fAdmin->setTheme(false);
break;
case eMarker:
tok = str.split(",", Qt::SkipEmptyParts);
if ((tok.count() != 1) && (tok.count() != 2)) {
return false;
}
ival = tok[0].toInt(&ok);
if (!ok)
return false;
dval = 1.0;
if (tok.count() == 2) {
dval = tok[1].toDouble(&ok);
if (!ok)
return false;
}
fAdmin->setMarker(ival, dval);
break;
case eColor:
tok = str.split(",", Qt::SkipEmptyParts);
if ((tok.count() != 3) && (tok.count() != 4)) {
return false;
}
ival = tok[0].toInt(&ok);
if (!ok)
return false;
r = ival;
ival = tok[1].toInt(&ok);
if (!ok)
return false;
g = ival;
ival = tok[2].toInt(&ok);
if (!ok)
return false;
b = ival;
if (tok.count() == 4)
name = tok[3];
fAdmin->setColor(r, g, b, name);
break;
default:
break;
}
return true;
}
//--------------------------------------------------------------------------
/**
* <p>Called at the end of the XML parse process. It checks if default paths
* contain system variables, and if so expand them for the further use.
*/
bool PmuppAdminXMLParser::endDocument()
{
return true;
}
//--------------------------------------------------------------------------
// implementation of PmuppAdmin class
//--------------------------------------------------------------------------
/**
* <p>Initializes that PmuppAdmin object, and calls the XML parser which feeds
* the object variables.
*/
PmuppAdmin::PmuppAdmin() : QObject(), fDarkTheme(false)
{
// XML Parser part
// 1st: check local directory
QString path = QString("./");
QString fln = QString("mupp_startup.xml");
QString pathFln = path + fln;
QProcessEnvironment procEnv = QProcessEnvironment::systemEnvironment();
if (!QFile::exists(pathFln)) {
// 2nd: check $HOME/.musrfit/mupp/mupp_startup.xml
path = procEnv.value("HOME", "");
pathFln = path + "/.musrfit/mupp/" + fln;
if (!QFile::exists(pathFln)) {
// 3rd: check $MUSRFITPATH/mupp_startup.xml
path = procEnv.value("MUSRFITPATH", "");
pathFln = path + "/" + fln;
if (!QFile::exists(pathFln)) {
// 4th: check $ROOTSYS/bin/mupp_startup.xml
path = procEnv.value("ROOTSYS", "");
pathFln = path + "/bin/" + fln;
if (!QFile::exists(pathFln)) {
// 5th: not found anywhere hence create it
path = procEnv.value("HOME", "");
pathFln = path + "/.musrfit/mupp/" + fln;
createMuppStartupFile();
}
}
}
}
if (QFile::exists(pathFln)) { // administration file present
PmuppAdminXMLParser handler(pathFln, this);
if (!handler.isValid()) {
QMessageBox::critical(0, "**ERROR**",
"Error parsing mupp_startup.xml settings file.\nProbably a few things will not work porperly.\nPlease fix this first.",
QMessageBox::Ok, QMessageBox::NoButton);
return;
}
} else {
QMessageBox::critical(0, "**ERROR**",
"Couldn't find the mupp_startup.xml settings file.\nProbably a few things will not work porperly.\nPlease fix this first.",
QMessageBox::Ok, QMessageBox::NoButton);
return;
}
}
//--------------------------------------------------------------------------
/**
* <p>Destructor
*/
PmuppAdmin::~PmuppAdmin()
{
saveRecentFiles();
}
//--------------------------------------------------------------------------
/**
* <p>Add recent path-file name to the internal ring-buffer.
*
* \param str recent path-file name to be added
*/
void PmuppAdmin::addRecentFile(const QString str)
{
// check if file name is not already present
for (int i=0; i<fRecentFile.size(); i++) {
if (str == fRecentFile[i])
return;
}
fRecentFile.push_front(str);
if (fRecentFile.size() > MAX_RECENT_FILES)
fRecentFile.resize(MAX_RECENT_FILES);
}
//--------------------------------------------------------------------------
/**
* @brief PmuppAdmin::getRecentFile. Get a file from the recent files with
* index idx.
* @param idx
*
* @return return the recent file with index idx if present, otherwise return
* an empty string.
*/
QString PmuppAdmin::getRecentFile(int idx)
{
QString str("");
if ((idx >= 0) && (idx < fRecentFile.size()))
str = fRecentFile[idx];
return str;
}
//--------------------------------------------------------------------------
/**
* @brief PmuppAdmin::getMarker. Get the marker with index idx.
* @param idx marker index
*
* @return requested marker
*/
PmuppMarker PmuppAdmin::getMarker(int idx) {
PmuppMarker marker;
if (idx >= fMarker.size())
return marker;
return fMarker[idx];
}
//--------------------------------------------------------------------------
/**
* @brief PmuppAdmin::getColor. Get rgb color codes of name
* @param name of the requeset color.
* @param r red value (0..255)
* @param g green value (0..255)
* @param b blue value (0..255
*/
void PmuppAdmin::getColor(QString name, int &r, int &g, int &b)
{
int idx=-1;
for (int i=0; i<fColor.size(); i++) {
if (fColor[i].getName() == name) {
idx = i;
break;
}
}
if (idx == -1) {
r = -1;
g = -1;
b = -1;
} else {
fColor[idx].getRGB(r, g, b);
}
}
//--------------------------------------------------------------------------
/**
* @brief PmuppAdmin::getColor. Get color codes of color at index idx
* @param idx requested color index
* @param r red value (0..255)
* @param g green value (0..255)
* @param b blue value (0..255)
*/
void PmuppAdmin::getColor(int idx, int &r, int &g, int &b)
{
if ((idx<=0) || (idx>fColor.size())) {
r = -1;
g = -1;
b = -1;
} else {
fColor[idx].getRGB(r, g, b);
}
}
//--------------------------------------------------------------------------
/**
* @brief PmuppAdmin::setMaker. Set a marker
* @param marker marker code
* @param size marker size
*/
void PmuppAdmin::setMarker(int marker, double size)
{
PmuppMarker markerObj;
// make sure marker is in proper range
if ((marker<1) || (marker>49)) {
QMessageBox::warning(0, "WARNING", QString("Found Marker (%1) not in the expected range.\nWill ignore it.").arg(marker));
return;
}
markerObj.setMarker(marker);
markerObj.setMarkerSize(size);
fMarker.push_back(markerObj);
}
//--------------------------------------------------------------------------
/**
* @brief PmuppAdmin::setColor. Set a color
* @param r red value (0..255)
* @param g green value (0..255)
* @param b blue value (0..255)
* @param name color name
*/
void PmuppAdmin::setColor(int r, int g, int b, QString name)
{
if (((r<0) || (r>255)) ||
((g<0) || (g>255)) ||
((b<0) || (b>255))) {
QMessageBox::warning(0, "WARNING", QString("Found Color (%1,%2,%3) not in the expected range.\nWill ignore it.").arg(r).arg(g).arg(b));
return;
}
PmuppColor color;
color.setName(name);
color.setRGB(r,g,b);
fColor.push_back(color);
}
//--------------------------------------------------------------------------
/**
* <p>Merges the recent file ring buffer into mupp_startup.xml and saves it.
* If a local copy is present it will be saved there, otherwise the master file
* will be used.
*/
void PmuppAdmin::saveRecentFiles()
{
// check if mupp_startup.xml is present in the current directory, and if yes, use this file to
// save the recent file names otherwise use the "master" mupp_startup.xml
QString str("");
QString fln = QString("./mupp_startup.xml");
if (!QFile::exists(fln)) {
QProcessEnvironment env = QProcessEnvironment::systemEnvironment();
fln = QString("%1/.musrfit/mupp/mupp_startup.xml").arg(env.value("HOME"));
}
if (QFile::exists(fln)) { // administration file present
QVector<QString> data;
QFile file(fln);
if (!file.open(QIODevice::ReadOnly | QIODevice::Text)) {
std::cerr << std::endl << ">> PmuppAdmin::saveRecentFile: **ERROR** Cannot open " << fln.toLatin1().data() << " for reading." << std::endl;
return;
}
QTextStream fin(&file);
while (!fin.atEnd()) {
data.push_back(fin.readLine());
}
file.close();
// remove <path_file_name> from data
for (QVector<QString>::iterator it = data.begin(); it != data.end(); ++it) {
if (it->contains("<path_file_name>")) {
it = data.erase(it);
--it;
}
}
// add recent files
int i;
for (i=0; i<data.size(); i++) {
if (data[i].contains("<recent_files>"))
break;
}
if (i == data.size()) {
std::cerr << std::endl << ">> PmuppAdmin::saveRecentFile: **ERROR** " << fln.toLatin1().data() << " seems to be corrupt." << std::endl;
return;
}
i++;
for (int j=0; j<fRecentFile.size(); j++) {
str = " <path_file_name>" + fRecentFile[j] + "</path_file_name>";
data.insert(i++, str);
}
if (!file.open(QIODevice::WriteOnly | QIODevice::Text)) {
std::cerr << std::endl << ">> PmuppAdmin::saveRecentFile: **ERROR** Cannot open " << fln.toLatin1().data() << " for reading." << std::endl;
return;
}
fin.setDevice(&file);
for (int i=0; i<data.size(); i++) {
fin << data[i] << Qt::endl;
}
file.close();
} else {
QString msg("Failed to write mupp_startup.xml. Neither a local nor a global copy found.");
QMessageBox::warning(0, "WARNING", msg, QMessageBox::Ok, QMessageBox::NoButton);
}
}
//--------------------------------------------------------------------------
/**
* @brief PmuppAdmin::createMuppStartupFile. Create a default mupp_startup.xml
* file if not present.
*/
void PmuppAdmin::createMuppStartupFile()
{
// get $HOME
QProcessEnvironment procEnv = QProcessEnvironment::systemEnvironment();
QString pathName = procEnv.value("HOME", "");
pathName += "/.musrfit/mupp";
// check if the directory $HOME/.musrfit/mupp exists if not create it
QDir dir(pathName);
if (!dir.exists()) {
// directory $HOME/.musrfit/mupp does not exist hence create it
dir.mkpath(pathName);
}
// create default mupp_startup.xml file in $HOME/.musrfit/mupp
pathName += "/mupp_startup.xml";
// get the default mupp_startup.xml.in from the internal resources
QFile fres(":/mupp_startup.xml.in");
if (!fres.exists()) {
QString msg = QString("Neither couldn't find nor create mupp_startup.xml. Things are likely not to work.");
QMessageBox::critical(0, "ERROR", msg);
return;
}
if (!fres.open(QIODevice::ReadOnly | QIODevice::Text)) {
QString msg = QString("Couldn't open internal resource file mupp_startup.xml.in. Things are likely not to work.");
QMessageBox::critical(0, "ERROR", msg);
return;
}
// text stream for fres
QTextStream fin(&fres);
// mupp_startup.xml default file
QFile file(pathName);
if (!file.open(QIODevice::WriteOnly | QIODevice::Text))
return;
// text stream for file
QTextStream fout(&file);
QString line;
while (!fin.atEnd()) {
line = fin.readLine();
fout << line << Qt::endl;
}
file.close();
fres.close();
}
//--------------------------------------------------------------------------
// END
//--------------------------------------------------------------------------

View File

@ -0,0 +1,167 @@
/****************************************************************************
PmuppAdmin.h
Author: Andreas Suter
e-mail: andreas.suter@psi.ch
*****************************************************************************/
/***************************************************************************
* Copyright (C) 2010-2017 by Andreas Suter *
* andreas.suter@psi.ch *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program; if not, write to the *
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
#ifndef _PMUPPADMIN_H_
#define _PMUPPADMIN_H_
#include <QString>
#include <QVector>
#include <QMap>
#include <QPixmap>
#include <QXmlStreamReader>
#include "mupp.h"
class PmuppAdmin;
//---------------------------------------------------------------------------
/**
* @brief The PmuppColor class. Contains to colors read from the xml-startup
* which are used for the plotted data.
*/
class PmuppColor {
public:
PmuppColor();
virtual ~PmuppColor() {}
QString getName() { return fName; }
void getRGB(int &r, int &g, int &b) { r=fRed; g=fGreen; b=fBlue; }
void setName(const QString name) { fName = name; }
void setRGB(const int r, const int g, const int b);
private:
QString fName;
int fRed;
int fGreen;
int fBlue;
};
//---------------------------------------------------------------------------
/**
* @brief The PmuppMarker class. List of the markers used in the plotter. Read
* from the xml-startup.
*/
class PmuppMarker {
public:
PmuppMarker() { fMarker = 20; fMarkerSize = 1.0; }
PmuppMarker(int marker, double size) : fMarker(marker), fMarkerSize(size) {}
virtual ~PmuppMarker() {}
void getMarker(int &marker, double &size) { marker = fMarker; size = fMarkerSize; }
int getMarker() { return fMarker; }
double getMarkerSize() { return fMarkerSize; }
void setMarker(int marker) { fMarker = marker; }
void setMarkerSize(double size) { fMarkerSize = size; }
private:
int fMarker;
double fMarkerSize;
};
//---------------------------------------------------------------------------
/**
* PAdminXMLParser is an XML parser class used to handle the mupp startup
* XML-file called <tt>mupp_startup.xml</tt>. This startup file contains
* necessary informations about executable pathes, online help informations,
* default font sizes, etc.
*/
class PmuppAdminXMLParser
{
public:
PmuppAdminXMLParser(const QString &fln, PmuppAdmin*);
virtual ~PmuppAdminXMLParser() {}
virtual bool isValid() { return fValid; }
private:
enum EAdminKeyWords {eEmpty, eRecentFile, eDarkTheme, eMarker, eColor};
bool parse(QIODevice *device);
bool startDocument();
bool startElement();
bool endElement();
bool characters();
bool endDocument();
QXmlStreamReader fXml; ///< xml stream reader object
bool fValid; ///< flag showing if XML read has been successful
EAdminKeyWords fKeyWord; ///< key word tag to know how to handle the content
PmuppAdmin *fAdmin; ///< a pointer to the main administration class object
};
//---------------------------------------------------------------------------
/**
* The PMuppAdmin class is handling the informations contained in the XML startup file,
* <tt>mupp_startup.xml</tt>. This startup file contains
* necessary informations like marker style, marker color, etc. The XML parsing is done
* with the help of the PmuppAdminXMLParser class.
*/
class PmuppAdmin : public QObject
{
public:
PmuppAdmin();
virtual ~PmuppAdmin();
void addRecentFile(const QString str);
int getNumRecentFiles() { return fRecentFile.size(); }
QString getRecentFile(int idx);
int getNoOfMarkers() { return fMarker.size(); }
QVector<PmuppMarker> getMarkers() { return fMarker; }
PmuppMarker getMarker(int idx);
int getNoOfColors() { return fColor.size(); }
QVector<PmuppColor> getColors() { return fColor; }
void getColor(QString name, int &r, int &g, int &b);
void getColor(int idx, int &r, int &g, int &b);
bool isDarkTheme() { return fDarkTheme; }
void setTheme(bool theme) { fDarkTheme = theme; }
void setMarker(int marker, double size);
void setColor(int r, int g, int b, QString name="");
private:
friend class PmuppAdminXMLParser;
QVector<QString> fRecentFile; ///< keep vector of recent path-file names
bool fDarkTheme;
QVector<PmuppMarker> fMarker;
QVector<PmuppColor> fColor;
void saveRecentFiles(); ///< save recent file list
void createMuppStartupFile(); ///< create default mupp_startup.xml
};
#endif // _PMUPPADMIN_H_

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,270 @@
/***************************************************************************
PmuppGui.h
Author: Andreas Suter
e-mail: andreas.suter@psi.ch
***************************************************************************/
/***************************************************************************
* Copyright (C) 2007-2020 by Andreas Suter *
* andreas.suter@psi.ch *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program; if not, write to the *
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
#ifndef _PMUPPGUI_H_
#define _PMUPPGUI_H_
#include <QMainWindow>
#include <QVector>
#include <QString>
#include <QStringList>
#include <QWidget>
#include <QBoxLayout>
#include <QGridLayout>
#include <QLabel>
#include <QSplitter>
#include <QListWidget>
#include <QPushButton>
#include <QLineEdit>
#include <QPlainTextEdit>
#include <QEvent>
#include <QProcess>
#include <QDialog>
#include "PVarHandler.h"
#include "PVarDialog.h"
#include "PmuppAdmin.h"
#include "Pmupp.h"
#include "mupp.h"
//-----------------------------------------------------------------------------
/**
* @brief The PmuppXY class.
*/
class PmuppXY
{
public:
PmuppXY() { init(); }
void setCollectionTag(int tag) { fCollectionTag = tag; }
void setXlabel(QString str) { fXlabel = str; }
void addYlabel(QString str) { fYlabel.push_back(str); }
void setYlabel(int idx, QString str);
void removeYlabel(int idx);
void removeYlabel(QString str);
int getCollectionTag() { return fCollectionTag; }
QString getXlabel() { return fXlabel; }
int getXlabelIdx();
int getYlabelSize() { return fYlabel.size(); }
QString getYlabel(int idx);
int getYlabelIdx(int idx);
QVector<QString> getYlabels() { return fYlabel; }
private:
int fCollectionTag;
QString fXlabel;
QVector<QString> fYlabel;
void init();
};
//-----------------------------------------------------------------------------
/**
* @brief The PVarErrorDialog class. It is used to display error messages from
* the variable parsing.
*/
class PVarErrorDialog : public QDialog
{
Q_OBJECT
public:
PVarErrorDialog(QString errMsg);
private:
QPlainTextEdit *fErrMsg;
QPushButton *fOK;
};
//-----------------------------------------------------------------------------
// Layout Scheme of PmuppGui:
// |--------------------------------------------------------------------|
// | Main |
// | |----------------------------------------------------------------| |
// | | Top | |
// | | |----------------------------| |-----------------------------| | |
// | | | Grid Left (2 cols, 3 rows) | | Grid Right (2 cols, 6 rows) | | |
// | | | +++++++++ | | ++++++++++ | | |
// | | | | | | | |
// | | |----------------------------| |-----------------------------| | |
// | |----------------------------------------------------------------| |
// | |
// | |----------------------------------------------------------------| |
// | | History | |
// | |----------------------------------------------------------------| |
// | | Cmd | |
// | |----------------------------------------------------------------| |
// ----------------------------------------------------------------------
//
// Grid Left contains: fColLabel, fColParamSplitter,
// fRemoveCollection, fRefreshCollection
// Grid Right contains: f(X,Y)axisLabel, fView(X,Y), fAdd(X,Y), fRemove(X,Y),
// fAddDitto, fPlot
//-----------------------------------------------------------------------------
class PmuppGui : public QMainWindow
{
Q_OBJECT
public:
PmuppGui(QStringList fln);
virtual ~PmuppGui();
public slots:
void aboutToQuit();
void fileOpen();
void fileOpenRecent();
void fileExit();
void toolDumpCollections();
void toolDumpXY();
void addVar();
void normalize();
void helpCmds();
void helpAbout();
void helpAboutQt();
protected:
bool eventFilter(QObject *o, QEvent *e);
private:
enum EAxis {kXaxis, kYaxis};
PmuppAdmin *fAdmin;
bool fDarkTheme;
bool fDarkToolBarIcon;
bool fNormalize;
qint64 fDatime;
uint fMuppInstance;
PParamDataHandler *fParamDataHandler;
QVector<PmuppXY> fXY;
QVector<PVarHandler> fVarHandler;
QString fMacroPath;
QString fMacroName;
QWidget *fCentralWidget;
QMenu *fRecentFilesMenu; ///< recent file menu
QAction *fRecentFilesAction[MAX_RECENT_FILES]; ///< array of the recent file actions
QAction *fNormalizeAction;
QBoxLayout *fBoxLayout_Main; // top->bottom (0)
QBoxLayout *fBoxLayout_Top; // left->right (1)
QGridLayout *fGridLayout_Left; // 2 columns, 3 rows
QGridLayout *fGridLayout_Right; // 2 columns, 6 rows
QBoxLayout *fBoxLayout_Cmd; // left->right (1)
QLabel *fColLabel;
QSplitter *fColParamSplitter;
QListWidget *fColList;
QListWidget *fParamList;
QPushButton *fRemoveCollection;
QPushButton *fRefreshCollection;
QLabel *fXaxisLabel;
QLabel *fYaxisLabel;
QListWidget *fViewX;
QListWidget *fViewY;
QPushButton *fAddX;
QPushButton *fAddY;
QPushButton *fAddDitto;
QPushButton *fRemoveX;
QPushButton *fRemoveY;
QPushButton *fPlot;
QSplitter *fCmdSplitter;
QPlainTextEdit *fCmdLineHistory;
QLineEdit *fCmdLine;
QPushButton *fExitButton;
QVector<QString> fCmdHistory; ///< command history buffer
PVarDialog *fVarDlg; ///< variable dialog
QProcess *fMuppPlot; ///< mupp plotter
void setupFileActions();
void setupToolActions();
void setupHelpActions();
void getTheme();
void fillRecentFiles();
void readCmdHistory();
void writeCmdHistory();
bool isNewCollection(PmuppCollection &coll);
int getXlabelIndex(QString label);
void getMinMax(QVector<double> &data, double &min, double &max);
QString substituteDefaultLabels(QString label);
void selectCollection(QString cmd);
uint getFirstAvailableMuppInstance();
void updateCollectionList();
void updateXYList(int idx);
void updateXYListGui();
bool findValue(PmuppRun &run, EAxis tag);
bool allXYEqual();
bool indexAlreadyPresent(int idx);
void replaceIndex(PmuppXY &data, const int idx);
void startMuppPlot();
void parseErrMsgDlg();
QStringList getVarNames(QString parseStr);
QVector<double> getValues(QString collName, QString paramName, bool &ok);
QVector<double> getPosErr(QString collName, QString paramName, bool &ok);
QVector<double> getNegErr(QString collName, QString paramName, bool &ok);
private slots:
void addDitto();
void addX(QString param="");
void addY(QString param="");
void createMacro();
void handleCmds();
void plot();
void refresh();
void remove();
void removeX(QString param="");
void removeY(QString param="");
void handleNewData();
void updateParamList(int currentRow);
void editCollName(QListWidgetItem *item);
void dropOnViewX(QListWidgetItem *item);
void dropOnViewY(QListWidgetItem *item);
void refreshY();
void check(QString varStr, QVector<int> idx);
void add(QString varStr, QVector<int> idx);
};
#endif // _PMUPPGUI_H_

View File

@ -0,0 +1,980 @@
/***************************************************************************
PmuppScript.cpp
Author: Andreas Suter
e-mail: andreas.suter@psi.ch
***************************************************************************/
/***************************************************************************
* Copyright (C) 2007-2020 by Andreas Suter *
* andreas.suter@psi.ch *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program; if not, write to the *
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
#include <cmath>
#include <iostream>
#include <QProcessEnvironment>
#include <QString>
#include <QFile>
#include <QTextStream>
#include <QDateTime>
#include <QProcess>
#include <QtGlobal> // Q_ASSERT
#include "PmuppScript.h"
//--------------------------------------------------------------------------
/**
* @brief PmuppScript::PmuppScript. Ctor
* @param script source
*/
PmuppScript::PmuppScript(QStringList script) :
fScript(script)
{
fParamDataHandler = 0;
fLoadPath = QString("./");
fSavePath = QString("./");
fSelected = -2; // nothing selected
fNorm = false;
fAdmin = new PmuppAdmin();
}
//--------------------------------------------------------------------------
/**
* @brief PmuppScript::~PmuppScript. Dtor
*/
PmuppScript::~PmuppScript()
{
if (fParamDataHandler) {
delete fParamDataHandler;
fParamDataHandler = 0;
}
if (fAdmin) {
delete fAdmin;
fAdmin = 0;
}
}
//--------------------------------------------------------------------------
/**
* @brief PmuppScript::executeScript. Handles the script commands.
* @return 0 on success.
*/
int PmuppScript::executeScript()
{
fParamDataHandler = new PParamDataHandler();
if (fParamDataHandler == 0) {
std::cerr << std::endl << "**ERROR** couldn't invoke data handler ..." << std::endl << std::endl;
return -1;
}
QString cmd;
int status;
for (int i=0; i<fScript.size(); i++) {
cmd = fScript.at(i);
if (cmd.startsWith("loadPath")) {
setLoadPath(cmd);
} else if (cmd.startsWith("savePath")) {
setSavePath(cmd);
} else if (cmd.startsWith("load ")) {
status = loadCollection(cmd);
} else if (cmd.startsWith("selectAll")) {
status = selectAll();
} else if (cmd.startsWith("select ")) {
status = select(cmd);
} else if (cmd.startsWith("x")) {
status = addX(cmd);
} else if (cmd.startsWith("y")) {
status = addY(cmd);
} else if (cmd.startsWith("norm")) {
fNorm = true;
} else if (cmd.startsWith("plot")) {
status = plot(cmd);
} else if (cmd.startsWith("macro")) {
status = macro(cmd);
} else if (cmd.startsWith("var")) {
status = var_cmd(cmd);
} else if (cmd.startsWith("col")) {
// nothing to be done here, since var handles it internally
} else {
std::cerr << "**ERROR** found unkown script command '" << cmd.toLatin1().constData() << "'." << std::endl << std::endl;
status = -2;
}
// check for errors
if (status != 0) {
emit finished();
return status;
}
}
emit finished();
return 0;
}
//--------------------------------------------------------------------------
/**
* @brief PmuppScript::setLoadPath. Sets the load path (where to look for input
* data.
* @param cmd set load path command string.
*/
void PmuppScript::setLoadPath(const QString cmd)
{
QString str = cmd;
QStringList tok;
// remove command from string
str = str.remove("loadPath ");
// tokenize path string
tok = str.split("/", Qt::SkipEmptyParts);
// check if there is a bash variable which needs to be resolved
QProcessEnvironment procEnv = QProcessEnvironment::systemEnvironment();
QString path = QString("");
for (int i=0; i<tok.size(); i++) {
str = tok.at(i);
if (str.startsWith("$")) {
str = str.remove("$");
QString var = procEnv.value(str, "");
path += var + "/";
} else {
path += str + "/";
}
}
fLoadPath = path;
}
//--------------------------------------------------------------------------
/**
* @brief PmuppScript::setSavePath. Sets the save path (where to save the output
* files.
* @param cmd save path command string.
*/
void PmuppScript::setSavePath(const QString cmd)
{
QString str = cmd;
QStringList tok;
// remove command from string
str = str.remove("savePath ");
// tokenize path string
tok = str.split("/", Qt::SkipEmptyParts);
// check if there is a bash variable which needs to be resolved
QProcessEnvironment procEnv = QProcessEnvironment::systemEnvironment();
QString path = QString("");
for (int i=0; i<tok.size(); i++) {
str = tok.at(i);
if (str.startsWith("$")) {
str = str.remove("$");
QString var = procEnv.value(str, "");
path += var + "/";
} else {
path += str + "/";
}
}
fSavePath = path;
}
//--------------------------------------------------------------------------
/**
* @brief PmuppScript::loadCollection. Load collection command
* @param str load collection command string
* @return 0 on success.
*/
int PmuppScript::loadCollection(const QString str)
{
QString fln = str;
fln = fln.remove("load ");
fln = fln.trimmed();
fln = fln.prepend(fLoadPath);
QStringList flnList;
flnList << fln;
QString errorMsg("");
fParamDataHandler->ReadParamFile(flnList, errorMsg);
return 0;
}
//--------------------------------------------------------------------------
/**
* @brief PmuppScript::select. Select collection command.
* @param str selection command string
* @return 0 on success
*/
int PmuppScript::select(const QString str)
{
QString cmd = str;
QStringList tok = cmd.split(' ', Qt::SkipEmptyParts);
if (tok.size() != 2) {
std::cerr << std::endl << "**ERROR** wrong 'select' command syntax." << std::endl << std::endl;
return -1;
}
bool ok;
int ival = tok[1].toInt(&ok);
if (ok) { // collection index given
if (ival >= fParamDataHandler->GetNoOfCollections()) {
std::cerr << std::endl << "**ERROR** try to select a collection with index " << ival << ", which is >= # collections (" << fParamDataHandler->GetNoOfCollections() << ")." << std::endl << std::endl;
return -2;
}
fSelected = ival;
} else { // assume that a collection name is given
ival = fParamDataHandler->GetCollectionIndex(tok[1]);
if (ival == -1) {
std::cerr << std::endl << "**ERROR** couldn't find collection '" << tok[1].toLatin1().constData() << "'." << std::endl << std::endl;
return -3;
}
if (ival >= fParamDataHandler->GetNoOfCollections()) {
std::cerr << std::endl << "**ERROR** try to select a collection with index " << ival << ", which is >= # collections (" << fParamDataHandler->GetNoOfCollections() << ")." << std::endl << std::endl;
return -2;
}
fSelected = ival;
}
return 0;
}
//--------------------------------------------------------------------------
/**
* @brief PmuppScript::selectAll. Select all collections
* @return 0 on success
*/
int PmuppScript::selectAll()
{
int noColl = fParamDataHandler->GetNoOfCollections();
if ( noColl > 0) {
fSelected = -1; // all collections are selected
} else {
std::cerr << std::endl << "**ERROR** no collections present, hence it is not possible to select them." << std::endl << std::endl;
return -1;
}
return 0;
}
//--------------------------------------------------------------------------
/**
* @brief PmuppScript::addX. Add label to x-axis
* @param str label string
* @return 0 on success
*/
int PmuppScript::addX(const QString str)
{
QString cmd = str, label;
QStringList tok = cmd.split(' ', Qt::SkipEmptyParts);
if (tok.size() != 2) {
std::cerr << std::endl << "**ERROR** in addX: number of tokens missmatch." << std::endl << std::endl;
return -1;
}
label = tok[1].trimmed();
PmuppCollection *coll=0;
if (fSelected == -2) { // no selection -> error
std::cerr << std::endl << "**ERROR** in addX. addX called without previous 'select' command." << std::endl << std::endl;
return -2;
} else if (fSelected == -1) { // i.e. select ALL
// clean up plot info first
fPlotInfo.clear();
// make sure that label is found in ALL collections, or in variables
// first check collections
bool foundInColl(true), foundInVar(true);
QString collName("");
for (int i=0; i<fParamDataHandler->GetNoOfCollections(); i++) {
coll = fParamDataHandler->GetCollection(i);
if (!foundLabel(coll, label)) { // label not found
foundInColl = false;
collName = coll->GetName();
break;
}
}
// second check variables
if (!foundVariable(label)) { // label not found
foundInVar = false;
}
// make sure label(s) have been found
if (!foundInColl && !foundInVar) { // not all labels found, neither in collection nor variables.
std::cerr << std::endl << "**ERROR** couldn't find '" << label.toLatin1().constData() << "' in collection '" << collName.toLatin1().constData() << "'," << std::endl;
std::cerr << " nor is it a defined variable" << std::endl << std::endl;
return -4;
}
// resize fPlotInfo to the number of selections
fPlotInfo.resize(fParamDataHandler->GetNoOfCollections());
// feed plot info
for (int i=0; i<fPlotInfo.size(); i++) {
fPlotInfo[i].collIdx = i;
fPlotInfo[i].xLabel = label;
}
} else { // a specific selection
// check that label is found in the selected collection, or in variables
coll = fParamDataHandler->GetCollection(fSelected);
if (coll == 0) {
std::cerr << std::endl << "**ERROR** in addX: selected collection couldn't be found ..." << std::endl << std::endl;
return -3;
}
// first check collection
bool foundInColl(true), foundInVar(true);
QString collName("");
if (!foundLabel(coll, label)) { // label not found
foundInColl = false;
collName = coll->GetName();
}
// second check variables
if (!foundVariable(label)) { // label not found
foundInVar = false;
}
// make sure label(s) have been found
if (!foundInColl && !foundInVar) { // not all labels found, neither in collection nor variables.
std::cerr << std::endl << "**ERROR** couldn't find '" << label.toLatin1().constData() << "' in collection '" << collName.toLatin1().constData() << "'," << std::endl;
std::cerr << " nor is it a defined variable" << std::endl << std::endl;
return -4;
}
// feed plot entry
fPlotEntry.collIdx = fSelected;
fPlotEntry.xLabel = label;
}
return 0;
}
//--------------------------------------------------------------------------
/**
* @brief PmuppScript::addY. Add label to y-axis.
* @param str label string
* @return 0 on success
*/
int PmuppScript::addY(const QString str)
{
QString cmd = str;
QVector<QString> label;
QStringList tok = cmd.split(' ', Qt::SkipEmptyParts);
if (tok.size() < 2) {
std::cerr << std::endl << "**ERROR** in addY: number of tokens < 2." << std::endl << std::endl;
return -1;
}
// collect all potential labels
for (int i=1; i<tok.size(); i++)
label.push_back(tok[i].trimmed());
PmuppCollection *coll=0;
if (fSelected == -2) { // no selection -> error
std::cerr << std::endl << "**ERROR** in addY. addY called without previous 'select' command." << std::endl << std::endl;
return -2;
} else if (fSelected == -1) { // i.e. select ALL
// make sure that label(s) is/are found in ALL collections, or in variables
// first check collections
bool foundInColl(true), foundInVar(true);
int idx = -1;
QString collName("");
for (int i=0; i<fParamDataHandler->GetNoOfCollections(); i++) {
coll = fParamDataHandler->GetCollection(i);
for (int j=0; j<label.size(); j++) {
if (!foundLabel(coll, label[j])) { // label not found
foundInColl = false;
collName = coll->GetName();
idx = j;
break;
}
}
}
// second check variables
for (int i=0; i<label.size(); i++) {
if (!foundVariable(label[i])) { // label not found
foundInVar = false;
idx = i;
break;
}
}
// make sure label(s) have been found
if (!foundInColl && !foundInVar) { // not all labels found, neither in collection nor variables.
std::cerr << std::endl << "**ERROR** couldn't find '" << label[idx].toLatin1().constData() << "' in collection '" << collName.toLatin1().constData() << "'," << std::endl;
std::cerr << " nor is it a defined variable" << std::endl << std::endl;
return -4;
}
// feed plot info with y-label(s)
for (int i=0; i<fPlotInfo.size(); i++) {
fPlotInfo[i].yLabel = label;
}
} else { // a specific selection
// clear yLabel
fPlotEntry.yLabel.clear();
// check that label is found in the selected collection, or in the variables
coll = fParamDataHandler->GetCollection(fSelected);
if (coll == 0) {
std::cerr << std::endl << "**ERROR** in addY: selected collection couldn't be found ..." << std::endl << std::endl;
return -3;
}
// first check specific collection
bool foundInColl(true), foundInVar(true);
int idx = -1;
QString collName("");
for (int i=0; i<label.size(); i++) {
if (!foundLabel(coll, label[i])) { // label not found
foundInColl = false;
collName = coll->GetName();
idx = i;
break;
}
}
// second check variables
for (int i=0; i<label.size(); i++) {
if (!foundVariable(label[i])) { // label not found
foundInVar = false;
idx = i;
break;
}
}
// make sure label(s) have been found
if (!foundInColl && !foundInVar) { // not all labels found, neither in collection nor variables.
std::cerr << std::endl << "**ERROR** couldn't find '" << label[idx].toLatin1().constData() << "' in collection '" << collName.toLatin1().constData() << "'," << std::endl;
std::cerr << " nor is it a defined variable" << std::endl << std::endl;
return -4;
}
fPlotEntry.yLabel = label;
// add plot entry
fPlotInfo.push_back(fPlotEntry);
}
return 0;
}
//--------------------------------------------------------------------------
/**
* @brief PmuppScript::plot. Create root macro and feed it to root in the bash mode.
* @param str plot script command string
* @return 0 on success
*/
int PmuppScript::plot(const QString str)
{
QString cmd = str;
QStringList tok = cmd.split(' ', Qt::SkipEmptyParts);
if (tok.size() != 2) {
std::cerr << std::endl << "**ERROR** in plot: number of tokens != 2." << std::endl << std::endl;
return -1;
}
QString flnOut = fSavePath + tok[1];
QString macroOut = fSavePath + "__out.C";
if (macro(QString("macro " + macroOut), flnOut) != 0) {
std::cerr << std::endl << "**ERROR** temporary macro generation failed." << std::endl << std::endl;
return -1;
}
// call root via batch
QProcess *proc = new QProcess(this);
if (proc == nullptr) {
std::cerr << std::endl << "**ERROR** couldn't invoke root.exe in batch mode." << std::endl << std::endl;
return -2;
}
// make sure that the system environment variables are properly set
QString exec_cmd = "root.exe";
QStringList arg;
arg << "-b";
arg << macroOut;
arg << "-q";
QProcessEnvironment env = QProcessEnvironment::systemEnvironment();
env.insert("LD_LIBRARY_PATH", env.value("ROOTSYS") + "/lib:" + env.value("LD_LIBRARY_PATH"));
proc->setProcessEnvironment(env);
proc->setWorkingDirectory(fSavePath);
proc->start(exec_cmd, arg);
if (!proc->waitForStarted()) {
std::cerr << std::endl << "**ERROR** Could not execute the output command: " << exec_cmd.toLatin1().constData() << std::endl << std::endl;
QFile::remove(macroOut);
return -3;
}
proc->waitForFinished();
QFile::remove(macroOut);
return 0;
}
//--------------------------------------------------------------------------
/**
* @brief PmuppScript::macro. Create a root macro
* @param str macro string command string
* @param plotFln plot file name. Depending on the extension (*.png, *.pdf, ...)
* the given a file will be created.
* @return 0 on success
*/
int PmuppScript::macro(const QString str, const QString plotFln)
{
QVector<PmuppMarker> marker = fAdmin->getMarkers();
QVector<PmuppColor> color = fAdmin->getColors();
QString cmd = str;
QStringList tok = cmd.split(' ', Qt::SkipEmptyParts);
if (tok.size() != 2) {
std::cerr << std::endl << "**ERROR** macro command with wrong number of arguments (" << tok.size() << ")." << std::endl << std::endl;
return -1;
}
QString macroName = tok[1].trimmed();
QString fln = fSavePath + macroName;
QFile file(fln);
if (!file.open(QIODevice::WriteOnly | QIODevice::Text)) {
std::cerr << std::endl << "**ERROR** Couldn't open macro file for writting." << std::endl << std::endl;
return -2;
}
QTextStream fout(&file);
// write header
fout << "// --------------------------" << Qt::endl;
fout << "// " << fln.toLatin1().constData() << Qt::endl;
fout << "// " << QDateTime::currentDateTime().toString("yy/MM/dd - HH:mm:ss") << Qt::endl;
fout << "// --------------------------" << Qt::endl;
fout << "{" << Qt::endl;
fout << " gROOT->Reset();" << Qt::endl;
fout << Qt::endl;
fout << " gStyle->SetOptTitle(0);" << Qt::endl;
fout << " gStyle->SetOptDate(0);" << Qt::endl;
fout << " gStyle->SetPadColor(TColor::GetColor(255,255,255)); // pad bkg to white" << Qt::endl;
fout << " gStyle->SetCanvasColor(TColor::GetColor(255,255,255)); // canvas bkg to white" << Qt::endl;
fout << Qt::endl;
fout << " Int_t nn=0, i=0;" << Qt::endl;
fout << " Double_t null[512];" << Qt::endl;
fout << " Double_t xx[512];" << Qt::endl;
fout << " Double_t yy[512];" << Qt::endl;
fout << " Double_t yyPosErr[512];" << Qt::endl;
fout << " Double_t yyNegErr[512];" << Qt::endl;
fout << Qt::endl;
// write data
QVector<double> xx, yy, yyPosErr, yyNegErr;
QString collName;
int count=0;
double x_min=0.0, x_max=0.0, x_min_new=0.0, x_max_new=0.0, y_min=0.0, y_max=0.0, y_min_new=0.0, y_max_new=0.0;
double dval, y_min_norm=1.0e10;
for (int i=0; i<fPlotInfo.size(); i++) {
// get collection name
collName = fParamDataHandler->GetCollectionName(i);
xx = fParamDataHandler->GetValues(collName, fPlotInfo[i].xLabel);
if (xx.size() == 0) { // it is a variable
int idx = getVarIndex(fPlotInfo[i].xLabel);
if (idx == -1) {
std::cerr << std::endl;
std::cerr << "**ERROR** Couldn't get x-label '" << fPlotInfo[i].xLabel.toLatin1().data() << "'." << std::endl;
std::cerr << " This should never happens." << std::endl;
return -3;
}
QVector<double> qvec(fVarHandler[idx].getValues().begin(), fVarHandler[idx].getValues().end());
xx = qvec;
}
// get x-axis min/max
minMax(xx, x_min, x_max);
if (count==0) {
x_min_new = x_min;
x_max_new = x_max;
} else {
if (x_min < x_min_new)
x_min_new = x_min;
if (y_max > x_max_new)
x_max_new = x_max;
}
for (int j=0; j<fPlotInfo[i].yLabel.size(); j++) {
yy = fParamDataHandler->GetValues(collName, fPlotInfo[i].yLabel[j]);
yyPosErr = fParamDataHandler->GetPosErr(collName, fPlotInfo[i].yLabel[j]);
yyNegErr = fParamDataHandler->GetNegErr(collName, fPlotInfo[i].yLabel[j]);
if (yy.size() == 0) { // it's a variable
int idx = getVarIndex(fPlotInfo[i].yLabel[j]);
if (idx == -1) {
std::cerr << std::endl;
std::cerr << "**ERROR** Couldn't get y-label '" << fPlotInfo[i].yLabel[j].toLatin1().data() << "'." << std::endl;
std::cerr << " This should never happens." << std::endl;
return -3;
}
QVector<double> qvecV(fVarHandler[idx].getValues().begin(), fVarHandler[idx].getValues().end());
yy = qvecV;
QVector<double> qvecE(fVarHandler[idx].getErrors().begin(), fVarHandler[idx].getErrors().end());
yyPosErr = qvecE;
yyNegErr = qvecE;
}
// get y-axis min/max
minMax(yy, y_min, y_max);
if (count==0) {
y_min_new = y_min;
y_max_new = y_max;
} else {
if (y_min < y_min_new)
y_min_new = y_min;
if (y_max > y_max_new)
y_max_new = y_max;
}
fout << " // " << ++count << ". data set" << Qt::endl;
fout << " nn = " << xx.size() << ";" << Qt::endl;
fout << " // null-values" << Qt::endl;
for (int k=0; k<xx.size(); k++) {
fout << " null[" << k << "]=0.0;" << Qt::endl;
}
fout << " // x-values" << Qt::endl;
for (int k=0; k<xx.size(); k++) {
fout << " xx[" << k << "]=" << xx[k] << ";" << Qt::endl;
}
fout << " // y-values" << Qt::endl;
for (int k=0; k<yy.size(); k++) {
dval = yy[k];
if (fNorm) {
dval /= y_max;
if (dval < y_min_norm)
y_min_norm = dval;
}
fout << " yy[" << k << "]=" << dval << ";" << Qt::endl;
}
fout << " // yyNegErr-values" << Qt::endl;
for (int k=0; k<yyNegErr.size(); k++) {
dval = fabs(yyNegErr[k]);
if (fNorm)
dval /= fabs(y_max);
fout << " yyNegErr[" << k << "]=" << dval << ";" << Qt::endl;
}
fout << " // yyPosErr-values" << Qt::endl;
for (int k=0; k<yyPosErr.size(); k++) {
dval = fabs(yyPosErr[k]);
if (fNorm)
dval /= fabs(y_max);
fout << " yyPosErr[" << k << "]=" << dval << ";" << Qt::endl;
}
fout << Qt::endl;
fout << " TGraphAsymmErrors *g_" << i << "_" << j << " = new TGraphAsymmErrors(nn, xx, yy, null, null, yyNegErr, yyPosErr);" << Qt::endl;
fout << Qt::endl;
}
}
// x,y-min/max range
double diff;
if (x_min_new > 0.0)
x_min = 0.0;
else
x_min = x_min_new;
diff = x_max-x_min;
x_max = x_max_new + 0.05*diff;
diff = y_max_new - y_min_new;
y_min = y_min_new - 0.05 * diff;
y_max = y_max_new + 0.05 * diff;
if (fNorm) {
diff = 1.0 - y_min_norm;
y_min = y_min_norm - 0.05 * diff;
y_max = 1.0 + 0.05 * diff;
}
// plotting
fout << " //**********" << Qt::endl;
fout << " // plotting " << Qt::endl;
fout << " //**********" << Qt::endl;
fout << " TCanvas *c1 = new TCanvas(\"c1\", \"" << macroName.toLatin1().constData() << "\", 10, 10, 600, 700);" << Qt::endl;
fout << Qt::endl;
count = 0;
int rr, gg, bb;
for (int i=0; i<fPlotInfo.size(); i++) {
for (int j=0; j<fPlotInfo[i].yLabel.size(); j++) {
if (count == 0) {
if (count < marker.size()) {
fout << " g_" << i << "_" << j << "->SetMarkerStyle(" << marker[count].getMarker() << ");" << Qt::endl;
fout << " g_" << i << "_" << j << "->SetMarkerSize(" << marker[count].getMarkerSize() << ");" << Qt::endl;
color[count].getRGB(rr, gg, bb);
fout << " g_" << i << "_" << j << "->SetMarkerColor(TColor::GetColor(" << rr << "," << gg << "," << bb << "));" << Qt::endl;
fout << " g_" << i << "_" << j << "->SetLineColor(TColor::GetColor(" << rr << "," << gg << "," << bb << "));" << Qt::endl;
} else {
fout << " g_" << i << "_" << j << "->SetMarkerStyle(20);" << Qt::endl;
fout << " g_" << i << "_" << j << "->SetMarkerSize(1.3);" << Qt::endl;
fout << " g_" << i << "_" << j << "->SetMarkerColor(TColor::GetColor(0,0,0));" << Qt::endl;
fout << " g_" << i << "_" << j << "->SetLineColor(TColor::GetColor(0,0,0));" << Qt::endl;
}
fout << " g_" << i << "_" << j << "->SetFillColor(kWhite);" << Qt::endl;
fout << " g_" << i << "_" << j << "->GetXaxis()->SetTitle(\"" << getNicerLabel(fPlotInfo[0].xLabel).toLatin1().data() << "\");" << Qt::endl;
fout << " g_" << i << "_" << j << "->GetXaxis()->SetTitleSize(0.05);" << Qt::endl;
fout << " g_" << i << "_" << j << "->GetXaxis()->SetDecimals(kTRUE);" << Qt::endl;
fout << " g_" << i << "_" << j << "->GetXaxis()->SetLimits(" << x_min << "," << x_max << ");" << Qt::endl;
fout << " g_" << i << "_" << j << "->GetYaxis()->SetTitle(\"" << getNicerLabel(fPlotInfo[0].yLabel[0]).toLatin1().data() << "\");" << Qt::endl;
fout << " g_" << i << "_" << j << "->GetYaxis()->SetTitleSize(0.05);" << Qt::endl;
fout << " g_" << i << "_" << j << "->GetYaxis()->SetTitleOffset(1.30);" << Qt::endl;
fout << " g_" << i << "_" << j << "->GetYaxis()->SetRangeUser(" << y_min << "," << y_max << ");" << Qt::endl;
fout << " g_" << i << "_" << j << "->Draw(\"AP\");" << Qt::endl;
} else {
if (count < marker.size()) {
fout << " g_" << i << "_" << j << "->SetMarkerStyle(" << marker[count].getMarker() << ");" << Qt::endl;
fout << " g_" << i << "_" << j << "->SetMarkerSize(" << marker[count].getMarkerSize() << ");" << Qt::endl;
color[count].getRGB(rr, gg, bb);
fout << " g_" << i << "_" << j << "->SetMarkerColor(TColor::GetColor(" << rr << "," << gg << "," << bb << "));" << Qt::endl;
fout << " g_" << i << "_" << j << "->SetLineColor(TColor::GetColor(" << rr << "," << gg << "," << bb << "));" << Qt::endl;
} else {
fout << " g_" << i << "_" << j << "->SetMarkerStyle(20);" << Qt::endl;
fout << " g_" << i << "_" << j << "->SetMarkerSize(1.3);" << Qt::endl;
fout << " g_" << i << "_" << j << "->SetMarkerColor(TColor::GetColor(0,0,0));" << Qt::endl;
fout << " g_" << i << "_" << j << "->SetLineColor(TColor::GetColor(0,0,0));" << Qt::endl;
}
fout << " g_" << i << "_" << j << "->SetFillColor(kWhite);" << Qt::endl;
fout << " g_" << i << "_" << j << "->Draw(\"Psame\");" << Qt::endl;
}
count++;
}
}
fout << " c1->SetMargin(0.15, 0.05, 0.12, 0.05);" << Qt::endl;
fout << " c1->Update();" << Qt::endl;
if (!plotFln.isEmpty()) {
fout << Qt::endl;
fout << " c1->SaveAs(\"" << plotFln.toLatin1().constData() << "\");" << Qt::endl;
}
fout << "}" << Qt::endl;
return 0;
}
//--------------------------------------------------------------------------
/**
* @brief PmuppScript::var_cmd. Variable definition command
* @param str variable definition command string
* @return 0 on success
*/
int PmuppScript::var_cmd(const QString str)
{
QStringList tok;
int idx=0;
// get linked collection index for further use
tok = str.split(' ', Qt::SkipEmptyParts);
if (tok[1].endsWith("Err")) // error variable no need to do something
return 0;
idx = getCollectionIndex(tok[1]);
if (idx == -1) // var not linked to collection, ignore it
return 0;
// check if the related error variable is present
QString varErr = QString("%1%2").arg(tok[1]).arg("Err");
QString varErrCmd("");
for (int i=0; i<fScript.size(); i++) {
if (fScript.at(i).contains(varErr, Qt::CaseSensitive)) {
varErrCmd = fScript.at(i);
break;
}
}
std::string parse_str = str.toLatin1().data();
if (!varErrCmd.isEmpty()) {
parse_str += "\n";
parse_str += varErrCmd.toLatin1().data();
}
PVarHandler varHandler(fParamDataHandler->GetCollection(idx), parse_str, tok[1].toLatin1().data());
if (!varHandler.isValid()) {
// deal with errors
QString mupp_err = QString("%1/.musrfit/mupp/mupp_err.log").arg(QString(qgetenv("HOME")));
// dump error messages if present
QFile fout(mupp_err);
if (fout.open(QIODevice::ReadOnly | QIODevice::Text)) {
QString msg;
while (!fout.atEnd()) {
msg = fout.readLine();
std::cerr << msg.toLatin1().data();
}
// delete potentially present mupp_err.log file
QFile::remove(mupp_err);
}
return 1;
}
fVarHandler.push_back(varHandler);
return 0;
}
//--------------------------------------------------------------------------
/**
* @brief PmuppScript::foundLabel find label in collection coll.
* @param coll collection object
* @return true if found
*/
bool PmuppScript::foundLabel(PmuppCollection *coll, const QString label)
{
bool result = false;
for (int i=0; i<coll->GetRun(0).GetNoOfParam(); i++) {
if (!coll->GetRun(0).GetParam(i).GetName().compare(label)) {
result = true;
break;
}
}
return result;
}
//--------------------------------------------------------------------------
/**
* @brief PmuppScript::foundVariable. Check if a variable is found in the
* variable handler.
* @param var variable name
* @return true if found
*/
bool PmuppScript::foundVariable(const QString var)
{
bool result = false;
for (int i=0; i<fVarHandler.size(); i++) {
if (!fVarHandler[i].getVarName().compare(var)) {
result = true;
break;
}
}
return result;
}
//--------------------------------------------------------------------------
/**
* @brief PmuppScript::getVarIndex. Get index of the variable object given by
* its name.
* @param var variable name searched for
* @return idx of found, -1 otherwise
*/
int PmuppScript::getVarIndex(const QString var)
{
int idx = -1;
for (int i=0; i<fVarHandler.size(); i++) {
if (!fVarHandler[i].getVarName().compare(var)) {
idx = i;
break;
}
}
return idx;
}
//--------------------------------------------------------------------------
/**
* @brief PmuppScript::minMax get minimum and maximum of the data set.
* @param dvec data set vector
* @param min resulting minimum
* @param max resulting maximum
*/
void PmuppScript::minMax(QVector<double> dvec, double &min, double &max)
{
min = 99.0e6;
max = -99.0e6;
for (int i=0; i<dvec.size(); i++) {
if (dvec[i] < min)
min = dvec[i];
if (dvec[i] > max)
max = dvec[i];
}
}
//--------------------------------------------------------------------------
/**
* @brief PmuppScript::getNicerLabel. Prettify the labels.
* @param label to be prettified
* @return prettified label
*/
QString PmuppScript::getNicerLabel(const QString label)
{
QString nice = label;
if (label == "dataE") {
nice = "E (keV)";
} else if (label == "dataT") {
nice = "T (K)";
} else if (label == "dataB") {
nice = "B (G)";
} else if (!label.compare("sigma", Qt::CaseInsensitive)) {
if (fNorm)
nice = "#sigma/max(#sigma)";
else
nice = "#sigma (1/#mus)";
} else if (!label.compare("lambda", Qt::CaseInsensitive)) {
if (fNorm)
nice = "#lambda/max(#lambda)";
else
nice = "#lambda (1/#mus)";
} else if (!label.compare("rate", Qt::CaseInsensitive)) {
if (fNorm)
nice = "Rate/max(Rate)";
else
nice = "Rate (1/#mus)";
} else if (!label.compare("alpha_LR", Qt::CaseInsensitive)) {
if (fNorm)
nice = "#alpha_{LR}/max(#alpha_{LR})";
else
nice = "#alpha_{LR}";
} else if (!label.compare("alpha_TB", Qt::CaseInsensitive)) {
if (fNorm)
nice = "#alpha_{TB}/max(#alpha_{TB})";
else
nice = "#alpha_{TB}";
} else {
if (fNorm) {
nice = label + "/ max(" + label + ")";
}
}
return nice;
}
//--------------------------------------------------------------------------
/**
* @brief PmuppScript::getCollectionIndex. Get the index of a collection.
* @param var_name name of the collection
* @return idx on success, -1 otherwise
*/
int PmuppScript::getCollectionIndex(const QString var_name)
{
int idx = -1;
QString cmd;
QStringList tok;
bool ok;
for (int i=0; i<fScript.size(); i++) {
cmd = fScript.at(i);
if (cmd.startsWith("col")) {
tok.clear();
tok = cmd.split(' ', Qt::SkipEmptyParts);
if (tok[3] == var_name) {
idx = tok[1].toInt(&ok);
if (!ok) {
Q_ASSERT(0);
}
break;
}
}
}
return idx;
}

View File

@ -0,0 +1,106 @@
/***************************************************************************
PmuppScript.h
Author: Andreas Suter
e-mail: andreas.suter@psi.ch
***************************************************************************/
/***************************************************************************
* Copyright (C) 2007-2020 by Andreas Suter *
* andreas.suter@psi.ch *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program; if not, write to the *
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
#ifndef _PMUPPSCRIPT_H_
#define _PMUPPSCRIPT_H_
#include <QString>
#include <QStringList>
#include "PmuppAdmin.h"
#include "Pmupp.h"
#include "PVarHandler.h"
//----------------------------------------------------------------------------
typedef struct {
int collIdx; ///< collection index
QString xLabel; ///< x-axis label
QVector<QString> yLabel; ///< y-axis label(s)
} PmuppPlotEntry;
//----------------------------------------------------------------------------
/**
* @brief The PmuppScript class. mupp script class which is used as a scripting
* interface for mupp.
*/
class PmuppScript : public QObject
{
Q_OBJECT
public:
PmuppScript(QStringList script);
~PmuppScript();
void setLoadPath(const QString cmd);
QString getLoadPath() { return fLoadPath; }
void setSavePath(const QString cmd);
QString getSavePath() { return fSavePath; }
int loadCollection(const QString str);
int select(const QString str);
int selectAll();
int addX(const QString str);
int addY(const QString str);
int plot(const QString str);
int macro(const QString str, const QString plotFln="");
int var_cmd(const QString str);
public slots:
int executeScript();
signals:
void finished();
private:
PmuppAdmin *fAdmin; ///< admin object
QStringList fScript; ///< script source
PParamDataHandler *fParamDataHandler; ///< parameter data handler
int fSelected; ///< -2=nothing selected, -1=all selected, >=0 is the index if the selected collection
PmuppPlotEntry fPlotEntry; ///< plot entry object
QVector<PmuppPlotEntry> fPlotInfo; ///< vector of all plot entry objects
bool fNorm; ///< normalization flag, true -> normalize y-data before plotting.
QString fLoadPath; ///< load path specifying where to look for data.
QString fSavePath; ///< save path specifying where to save data.
QVector<PVarHandler> fVarHandler; ///< variable handler vector
bool foundLabel(PmuppCollection *coll, const QString label);
bool foundVariable(const QString var);
int getVarIndex(const QString var);
void minMax(QVector<double> dvec, double &min, double &max);
QString getNicerLabel(const QString label);
int getCollectionIndex(const QString var_name);
};
#endif // _PMUPPSCRIPT_H_

View File

@ -0,0 +1,30 @@
# configure_mupp_version_file.cmake.in:
set(SRC_DIR "@CMAKE_CURRENT_SOURCE_DIR@")
set(BIN_DIR "@CMAKE_CURRENT_BINARY_DIR@")
# Set MUPP variables
set(CMAKE_INSTALL_PREFIX "@CMAKE_INSTALL_PREFIX@")
set(MUPP_VERSION "@mupp_VERSION@")
# Get the current working branch
execute_process(
COMMAND git rev-parse --abbrev-ref HEAD
WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}
OUTPUT_VARIABLE GIT_BRANCH
OUTPUT_STRIP_TRAILING_WHITESPACE
)
# Get the latest abbreviated commit hash of the working branch
execute_process(
COMMAND git log -1 --pretty="%h, %ci"
WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}
OUTPUT_VARIABLE GIT_COMMIT_HASH
OUTPUT_STRIP_TRAILING_WHITESPACE
)
configure_file(
${SRC_DIR}/cmake/mupp_version.h.in
${BIN_DIR}/mupp_version.h
@ONLY
)
# EOF

View File

@ -0,0 +1,11 @@
#ifndef VERSION_H
#define VERSION_H
#define MUPP_PREFIX "@CMAKE_INSTALL_PREFIX@"
#define MUPP_VERSION "@MUPP_VERSION@"
#define GIT_BRANCH "@GIT_BRANCH@"
#define GIT_COMMIT_HASH @GIT_COMMIT_HASH@
#endif

View File

@ -0,0 +1,96 @@
YBCO-40nm, T=120.01 K, E=3.72 keV, B=~1500(G)/259.52(A), Tr/Sa=15.02/10.54 kV, SR=-10.00
###############################################################
FITPARAMETER
# Nr. Name Value Step Pos_Error Boundaries
1 Asy 0.15779 -0.00080 0.00081
2 Sigma 0.0681 -0.0061 0.0057 0 none
3 Ph -150.01 -0.59 0.60
4 Field 1513.489 -0.031 0.032
# L
5 RelPh_L 0 0 none
6 N0_L 262.50 -0.30 0.30
7 N_bkg_L 4.930 -0.039 0.039
# T
8 RelPh_T -90.95 -0.72 0.72
9 N0_T 268.28 -0.30 0.30
10 N_bkg_T 5.042 -0.039 0.039
# R
11 RelPh_R 180.00 -0.73 0.73
12 alpha_LR 0.9991 -0.0016 0.0016
13 N_bkg_R 5.228 -0.039 0.039
# B
14 RelPh_B 90.52 -0.73 0.73
15 alpha_TB 0.9397 -0.0015 0.0015
16 N_bkg_B 4.688 -0.038 0.038
###############################################################
THEORY
asymmetry 1
simpleGss 2 (rate)
TFieldCos fun1 fun2 (phase frequency)
###############################################################
FUNCTIONS
fun1 = par3 + map1
fun2 = gamma_mu * par4
fun3 = par6 * par12
fun4 = par9 * par15
###############################################################
GLOBAL
fittype 0 (single histogram fit)
fit 0.05 10
data 2500 66500 2500 66500
packing 10
###############################################################
RUN 2017/lem17_his_2485 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 5 0 0 0 0 0 0 0 0 0
forward 1 5
norm 6
backgr.fit 7
#-----------------------------------------------
RUN 2017/lem17_his_2485 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 8 0 0 0 0 0 0 0 0 0
forward 2 6
norm 9
backgr.fit 10
#-----------------------------------------------
RUN 2017/lem17_his_2485 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 11 0 0 0 0 0 0 0 0 0
forward 3 7
norm fun3
backgr.fit 13
#-----------------------------------------------
RUN 2017/lem17_his_2485 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 14 0 0 0 0 0 0 0 0 0
forward 4 8
norm fun4
backgr.fit 16
###############################################################
COMMANDS
MAX_LIKELIHOOD
#PRINT_LEVEL 2
MINIMIZE
MINOS
SAVE
###############################################################
PLOT 0 (single histo plot)
lifetimecorrection
runs 1 2 3 4
range 0 10 -0.25 0.25
view_packing 25
###############################################################
FOURIER
units Gauss # units either 'Gauss', 'Tesla', 'MHz', or 'Mc/s'
fourier_power 13
apodization STRONG # NONE, WEAK, MEDIUM, STRONG
plot POWER # REAL, IMAG, REAL_AND_IMAG, POWER, PHASE, PHASE_OPT_REAL
range 0 5000
###############################################################
STATISTIC --- 2017-08-03 15:51:58
maxLH = 20436.1, NDF = 20361, maxLH/NDF = 1.003689

View File

@ -0,0 +1,96 @@
YBCO-40nm, T=110.01 K, E=3.72 keV, B=~1500(G)/259.51(A), Tr/Sa=15.02/10.54 kV, SR=-10.00
###############################################################
FITPARAMETER
# Nr. Name Value Step Pos_Error Boundaries
1 Asy 0.15809 -0.00080 0.00081
2 Sigma 0.0649 -0.0064 0.0059 0 none
3 Ph -149.17 -0.59 0.58
4 Field 1513.565 -0.031 0.031
# L
5 RelPh_L 0 0 none
6 N0_L 262.96 -0.30 0.30
7 N_bkg_L 4.780 -0.038 0.038
# T
8 RelPh_T -90.23 -0.71 0.72
9 N0_T 268.63 -0.30 0.30
10 N_bkg_T 4.938 -0.039 0.039
# R
11 RelPh_R 178.56 -0.71 0.72
12 alpha_LR 0.9990 -0.0016 0.0016
13 N_bkg_R 5.152 -0.039 0.039
# B
14 RelPh_B 88.76 -0.73 0.74
15 alpha_TB 0.9377 -0.0015 0.0015
16 N_bkg_B 4.705 -0.038 0.038
###############################################################
THEORY
asymmetry 1
simpleGss 2 (rate)
TFieldCos fun1 fun2 (phase frequency)
###############################################################
FUNCTIONS
fun1 = par3 + map1
fun2 = gamma_mu * par4
fun3 = par6 * par12
fun4 = par9 * par15
###############################################################
GLOBAL
fittype 0 (single histogram fit)
fit 0.05 10
data 2500 66500 2500 66500
packing 10
###############################################################
RUN 2017/lem17_his_2486 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 5 0 0 0 0 0 0 0 0 0
forward 1 5
norm 6
backgr.fit 7
#-----------------------------------------------
RUN 2017/lem17_his_2486 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 8 0 0 0 0 0 0 0 0 0
forward 2 6
norm 9
backgr.fit 10
#-----------------------------------------------
RUN 2017/lem17_his_2486 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 11 0 0 0 0 0 0 0 0 0
forward 3 7
norm fun3
backgr.fit 13
#-----------------------------------------------
RUN 2017/lem17_his_2486 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 14 0 0 0 0 0 0 0 0 0
forward 4 8
norm fun4
backgr.fit 16
###############################################################
COMMANDS
MAX_LIKELIHOOD
#PRINT_LEVEL 2
MINIMIZE
MINOS
SAVE
###############################################################
PLOT 0 (single histo plot)
lifetimecorrection
runs 1 2 3 4
range 0 10 -0.25 0.25
view_packing 25
###############################################################
FOURIER
units Gauss # units either 'Gauss', 'Tesla', 'MHz', or 'Mc/s'
fourier_power 13
apodization STRONG # NONE, WEAK, MEDIUM, STRONG
plot POWER # REAL, IMAG, REAL_AND_IMAG, POWER, PHASE, PHASE_OPT_REAL
range 0 5000
###############################################################
STATISTIC --- 2017-08-03 16:19:31
maxLH = 20767.0, NDF = 20361, maxLH/NDF = 1.019939

View File

@ -0,0 +1,96 @@
YBCO-40nm, T=100.00 K, E=3.72 keV, B=~1500(G)/259.52(A), Tr/Sa=15.02/10.54 kV, SR=-10.00
###############################################################
FITPARAMETER
# Nr. Name Value Step Pos_Error Boundaries
1 Asy 0.15934 -0.00082 0.00082
2 Sigma 0.0922 -0.0048 0.0047 0 none
3 Ph -150.01 -0.59 0.59
4 Field 1513.756 -0.033 0.033
# L
5 RelPh_L 0 0 none
6 N0_L 263.43 -0.30 0.30
7 N_bkg_L 4.848 -0.039 0.039
# T
8 RelPh_T -88.93 -0.72 0.72
9 N0_T 268.40 -0.30 0.30
10 N_bkg_T 4.936 -0.039 0.039
# R
11 RelPh_R 180.65 -0.73 0.73
12 alpha_LR 0.9991 -0.0016 0.0016
13 N_bkg_R 5.253 -0.039 0.039
# B
14 RelPh_B 89.79 -0.73 0.73
15 alpha_TB 0.9424 -0.0015 0.0015
16 N_bkg_B 4.794 -0.038 0.038
###############################################################
THEORY
asymmetry 1
simpleGss 2 (rate)
TFieldCos fun1 fun2 (phase frequency)
###############################################################
FUNCTIONS
fun1 = par3 + map1
fun2 = gamma_mu * par4
fun3 = par6 * par12
fun4 = par9 * par15
###############################################################
GLOBAL
fittype 0 (single histogram fit)
fit 0.05 10
data 2500 66500 2500 66500
packing 10
###############################################################
RUN 2017/lem17_his_2487 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 5 0 0 0 0 0 0 0 0 0
forward 1 5
norm 6
backgr.fit 7
#-----------------------------------------------
RUN 2017/lem17_his_2487 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 8 0 0 0 0 0 0 0 0 0
forward 2 6
norm 9
backgr.fit 10
#-----------------------------------------------
RUN 2017/lem17_his_2487 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 11 0 0 0 0 0 0 0 0 0
forward 3 7
norm fun3
backgr.fit 13
#-----------------------------------------------
RUN 2017/lem17_his_2487 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 14 0 0 0 0 0 0 0 0 0
forward 4 8
norm fun4
backgr.fit 16
###############################################################
COMMANDS
MAX_LIKELIHOOD
#PRINT_LEVEL 2
MINIMIZE
MINOS
SAVE
###############################################################
PLOT 0 (single histo plot)
lifetimecorrection
runs 1 2 3 4
range 0 10 -0.25 0.25
view_packing 25
###############################################################
FOURIER
units Gauss # units either 'Gauss', 'Tesla', 'MHz', or 'Mc/s'
fourier_power 13
apodization STRONG # NONE, WEAK, MEDIUM, STRONG
plot POWER # REAL, IMAG, REAL_AND_IMAG, POWER, PHASE, PHASE_OPT_REAL
range 0 5000
###############################################################
STATISTIC --- 2017-08-03 16:55:59
maxLH = 20276.6, NDF = 20361, maxLH/NDF = 0.995855

View File

@ -0,0 +1,96 @@
YBCO-40nm, T=90.00 K, E=3.72 keV, B=~1500(G)/259.52(A), Tr/Sa=15.02/10.54 kV, SR=-10.00
###############################################################
FITPARAMETER
# Nr. Name Value Step Pos_Error Boundaries
1 Asy 0.15729 -0.00081 0.00081
2 Sigma 0.0682 -0.0062 0.0058 0 none
3 Ph -151.06 -0.59 0.58
4 Field 1513.939 -0.031 0.032
# L
5 RelPh_L 0 0 none
6 N0_L 263.19 -0.30 0.30
7 N_bkg_L 4.791 -0.038 0.039
# T
8 RelPh_T -88.06 -0.71 0.73
9 N0_T 268.08 -0.30 0.30
10 N_bkg_T 5.070 -0.039 0.039
# R
11 RelPh_R 180.74 -0.72 0.73
12 alpha_LR 0.9960 -0.0016 0.0016
13 N_bkg_R 5.257 -0.039 0.040
# B
14 RelPh_B 91.29 -0.72 0.73
15 alpha_TB 0.9416 -0.0015 0.0015
16 N_bkg_B 4.703 -0.038 0.038
###############################################################
THEORY
asymmetry 1
simpleGss 2 (rate)
TFieldCos fun1 fun2 (phase frequency)
###############################################################
FUNCTIONS
fun1 = par3 + map1
fun2 = gamma_mu * par4
fun3 = par6 * par12
fun4 = par9 * par15
###############################################################
GLOBAL
fittype 0 (single histogram fit)
fit 0.05 10
data 2500 66500 2500 66500
packing 10
###############################################################
RUN 2017/lem17_his_2488 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 5 0 0 0 0 0 0 0 0 0
forward 1 5
norm 6
backgr.fit 7
#-----------------------------------------------
RUN 2017/lem17_his_2488 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 8 0 0 0 0 0 0 0 0 0
forward 2 6
norm 9
backgr.fit 10
#-----------------------------------------------
RUN 2017/lem17_his_2488 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 11 0 0 0 0 0 0 0 0 0
forward 3 7
norm fun3
backgr.fit 13
#-----------------------------------------------
RUN 2017/lem17_his_2488 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 14 0 0 0 0 0 0 0 0 0
forward 4 8
norm fun4
backgr.fit 16
###############################################################
COMMANDS
MAX_LIKELIHOOD
#PRINT_LEVEL 2
MINIMIZE
MINOS
SAVE
###############################################################
PLOT 0 (single histo plot)
lifetimecorrection
runs 1 2 3 4
range 0 10 -0.25 0.25
view_packing 25
###############################################################
FOURIER
units Gauss # units either 'Gauss', 'Tesla', 'MHz', or 'Mc/s'
fourier_power 13
apodization STRONG # NONE, WEAK, MEDIUM, STRONG
plot POWER # REAL, IMAG, REAL_AND_IMAG, POWER, PHASE, PHASE_OPT_REAL
range 0 5000
###############################################################
STATISTIC --- 2017-08-03 17:35:16
maxLH = 20817.9, NDF = 20361, maxLH/NDF = 1.022442

View File

@ -0,0 +1,96 @@
YBCO-40nm, T=80.00 K, E=3.72 keV, B=~1500(G)/259.51(A), Tr/Sa=15.02/10.54 kV, SR=-10.00
###############################################################
FITPARAMETER
# Nr. Name Value Step Pos_Error Boundaries
1 Asy 0.15485 -0.00095 0.00095
2 Sigma 0.2684 -0.0043 0.0043 0 none
3 Ph -148.61 -0.68 0.70
4 Field 1513.209 -0.057 0.057
# L
5 RelPh_L 0 0 none
6 N0_L 261.84 -0.30 0.30
7 N_bkg_L 4.866 -0.039 0.039
# T
8 RelPh_T -87.62 -0.85 0.82
9 N0_T 267.69 -0.30 0.30
10 N_bkg_T 5.009 -0.039 0.039
# R
11 RelPh_R 182.56 -0.86 0.83
12 alpha_LR 1.0033 -0.0016 0.0016
13 N_bkg_R 5.215 -0.039 0.039
# B
14 RelPh_B 92.29 -0.87 0.84
15 alpha_TB 0.9398 -0.0015 0.0015
16 N_bkg_B 4.713 -0.038 0.038
###############################################################
THEORY
asymmetry 1
simpleGss 2 (rate)
TFieldCos fun1 fun2 (phase frequency)
###############################################################
FUNCTIONS
fun1 = par3 + map1
fun2 = gamma_mu * par4
fun3 = par6 * par12
fun4 = par9 * par15
###############################################################
GLOBAL
fittype 0 (single histogram fit)
fit 0.05 10
data 2500 66500 2500 66500
packing 10
###############################################################
RUN 2017/lem17_his_2489 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 5 0 0 0 0 0 0 0 0 0
forward 1 5
norm 6
backgr.fit 7
#-----------------------------------------------
RUN 2017/lem17_his_2489 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 8 0 0 0 0 0 0 0 0 0
forward 2 6
norm 9
backgr.fit 10
#-----------------------------------------------
RUN 2017/lem17_his_2489 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 11 0 0 0 0 0 0 0 0 0
forward 3 7
norm fun3
backgr.fit 13
#-----------------------------------------------
RUN 2017/lem17_his_2489 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 14 0 0 0 0 0 0 0 0 0
forward 4 8
norm fun4
backgr.fit 16
###############################################################
COMMANDS
MAX_LIKELIHOOD
#PRINT_LEVEL 2
MINIMIZE
MINOS
SAVE
###############################################################
PLOT 0 (single histo plot)
lifetimecorrection
runs 1 2 3 4
range 0 10 -0.25 0.25
view_packing 25
###############################################################
FOURIER
units Gauss # units either 'Gauss', 'Tesla', 'MHz', or 'Mc/s'
fourier_power 13
apodization STRONG # NONE, WEAK, MEDIUM, STRONG
plot POWER # REAL, IMAG, REAL_AND_IMAG, POWER, PHASE, PHASE_OPT_REAL
range 0 5000
###############################################################
STATISTIC --- 2017-08-03 17:51:30
maxLH = 20788.2, NDF = 20361, maxLH/NDF = 1.020982

View File

@ -0,0 +1,96 @@
YBCO-40nm, T=70.00 K, E=3.72 keV, B=~1500(G)/259.52(A), Tr/Sa=15.02/10.54 kV, SR=-10.00
###############################################################
FITPARAMETER
# Nr. Name Value Step Pos_Error Boundaries
1 Asy 0.1479 -0.0012 0.0012
2 Sigma 0.5707 -0.0084 0.0086 0 none
3 Ph -143.97 -0.91 0.90
4 Field 1510.98 -0.12 0.13
# L
5 RelPh_L 0 0 none
6 N0_L 262.34 -0.30 0.30
7 N_bkg_L 4.771 -0.038 0.039
# T
8 RelPh_T -90.6 -1.1 1.1
9 N0_T 268.29 -0.30 0.30
10 N_bkg_T 4.998 -0.039 0.039
# R
11 RelPh_R 180.3 -1.1 1.1
12 alpha_LR 1.0020 -0.0016 0.0016
13 N_bkg_R 5.240 -0.039 0.039
# B
14 RelPh_B 90.6 -1.1 1.1
15 alpha_TB 0.9407 -0.0015 0.0015
16 N_bkg_B 4.649 -0.038 0.038
###############################################################
THEORY
asymmetry 1
simpleGss 2 (rate)
TFieldCos fun1 fun2 (phase frequency)
###############################################################
FUNCTIONS
fun1 = par3 + map1
fun2 = gamma_mu * par4
fun3 = par6 * par12
fun4 = par9 * par15
###############################################################
GLOBAL
fittype 0 (single histogram fit)
fit 0.05 10
data 2500 66500 2500 66500
packing 10
###############################################################
RUN 2017/lem17_his_2490 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 5 0 0 0 0 0 0 0 0 0
forward 1 5
norm 6
backgr.fit 7
#-----------------------------------------------
RUN 2017/lem17_his_2490 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 8 0 0 0 0 0 0 0 0 0
forward 2 6
norm 9
backgr.fit 10
#-----------------------------------------------
RUN 2017/lem17_his_2490 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 11 0 0 0 0 0 0 0 0 0
forward 3 7
norm fun3
backgr.fit 13
#-----------------------------------------------
RUN 2017/lem17_his_2490 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 14 0 0 0 0 0 0 0 0 0
forward 4 8
norm fun4
backgr.fit 16
###############################################################
COMMANDS
MAX_LIKELIHOOD
#PRINT_LEVEL 2
MINIMIZE
MINOS
SAVE
###############################################################
PLOT 0 (single histo plot)
lifetimecorrection
runs 1 2 3 4
range 0 10 -0.25 0.25
view_packing 25
###############################################################
FOURIER
units Gauss # units either 'Gauss', 'Tesla', 'MHz', or 'Mc/s'
fourier_power 13
apodization STRONG # NONE, WEAK, MEDIUM, STRONG
plot POWER # REAL, IMAG, REAL_AND_IMAG, POWER, PHASE, PHASE_OPT_REAL
range 0 5000
###############################################################
STATISTIC --- 2017-08-03 18:21:39
maxLH = 20459.9, NDF = 20361, maxLH/NDF = 1.004857

View File

@ -0,0 +1,96 @@
YBCO-40nm, T=60.00 K, E=3.72 keV, B=~1500(G)/259.51(A), Tr/Sa=15.02/10.54 kV, SR=-10.00
###############################################################
FITPARAMETER
# Nr. Name Value Step Pos_Error Boundaries
1 Asy 0.1470 -0.0014 0.0014
2 Sigma 0.747 -0.011 0.011 0 none
3 Ph -140.57 -1.00 1.00
4 Field 1509.20 -0.17 0.17
# L
5 RelPh_L 0 0 none
6 N0_L 261.28 -0.30 0.30
7 N_bkg_L 4.777 -0.038 0.039
# T
8 RelPh_T -92.4 -1.2 1.2
9 N0_T 268.75 -0.30 0.30
10 N_bkg_T 4.861 -0.039 0.039
# R
11 RelPh_R 177.8 -1.2 1.2
12 alpha_LR 1.0073 -0.0016 0.0016
13 N_bkg_R 5.148 -0.039 0.039
# B
14 RelPh_B 86.7 -1.2 1.2
15 alpha_TB 0.9345 -0.0015 0.0015
16 N_bkg_B 4.798 -0.038 0.038
###############################################################
THEORY
asymmetry 1
simpleGss 2 (rate)
TFieldCos fun1 fun2 (phase frequency)
###############################################################
FUNCTIONS
fun1 = par3 + map1
fun2 = gamma_mu * par4
fun3 = par6 * par12
fun4 = par9 * par15
###############################################################
GLOBAL
fittype 0 (single histogram fit)
fit 0.05 10
data 2500 66500 2500 66500
packing 10
###############################################################
RUN 2017/lem17_his_2491 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 5 0 0 0 0 0 0 0 0 0
forward 1 5
norm 6
backgr.fit 7
#-----------------------------------------------
RUN 2017/lem17_his_2491 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 8 0 0 0 0 0 0 0 0 0
forward 2 6
norm 9
backgr.fit 10
#-----------------------------------------------
RUN 2017/lem17_his_2491 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 11 0 0 0 0 0 0 0 0 0
forward 3 7
norm fun3
backgr.fit 13
#-----------------------------------------------
RUN 2017/lem17_his_2491 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 14 0 0 0 0 0 0 0 0 0
forward 4 8
norm fun4
backgr.fit 16
###############################################################
COMMANDS
MAX_LIKELIHOOD
#PRINT_LEVEL 2
MINIMIZE
MINOS
SAVE
###############################################################
PLOT 0 (single histo plot)
lifetimecorrection
runs 1 2 3 4
range 0 10 -0.25 0.25
view_packing 25
###############################################################
FOURIER
units Gauss # units either 'Gauss', 'Tesla', 'MHz', or 'Mc/s'
fourier_power 13
apodization STRONG # NONE, WEAK, MEDIUM, STRONG
plot POWER # REAL, IMAG, REAL_AND_IMAG, POWER, PHASE, PHASE_OPT_REAL
range 0 5000
###############################################################
STATISTIC --- 2017-08-03 18:52:37
maxLH = 20785.1, NDF = 20361, maxLH/NDF = 1.020830

View File

@ -0,0 +1,96 @@
YBCO-40nm, T=49.99 K, E=3.72 keV, B=~1500(G)/259.52(A), Tr/Sa=15.02/10.54 kV, SR=-10.00
###############################################################
FITPARAMETER
# Nr. Name Value Step Pos_Error Boundaries
1 Asy 0.1422 -0.0014 0.0014
2 Sigma 0.861 -0.013 0.013 0 none
3 Ph -141.6 -1.1 1.1
4 Field 1507.25 -0.21 0.22
# L
5 RelPh_L 0 0 none
6 N0_L 263.18 -0.30 0.30
7 N_bkg_L 4.744 -0.039 0.038
# T
8 RelPh_T -88.5 -1.3 1.3
9 N0_T 269.06 -0.30 0.30
10 N_bkg_T 5.062 -0.040 0.039
# R
11 RelPh_R 181.5 -1.3 1.3
12 alpha_LR 1.0004 -0.0016 0.0016
13 N_bkg_R 5.298 -0.040 0.039
# B
14 RelPh_B 91.0 -1.3 1.3
15 alpha_TB 0.9408 -0.0015 0.0015
16 N_bkg_B 4.734 -0.038 0.038
###############################################################
THEORY
asymmetry 1
simpleGss 2 (rate)
TFieldCos fun1 fun2 (phase frequency)
###############################################################
FUNCTIONS
fun1 = par3 + map1
fun2 = gamma_mu * par4
fun3 = par6 * par12
fun4 = par9 * par15
###############################################################
GLOBAL
fittype 0 (single histogram fit)
fit 0.05 10
data 2500 66500 2500 66500
packing 10
###############################################################
RUN 2017/lem17_his_2492 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 5 0 0 0 0 0 0 0 0 0
forward 1 5
norm 6
backgr.fit 7
#-----------------------------------------------
RUN 2017/lem17_his_2492 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 8 0 0 0 0 0 0 0 0 0
forward 2 6
norm 9
backgr.fit 10
#-----------------------------------------------
RUN 2017/lem17_his_2492 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 11 0 0 0 0 0 0 0 0 0
forward 3 7
norm fun3
backgr.fit 13
#-----------------------------------------------
RUN 2017/lem17_his_2492 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 14 0 0 0 0 0 0 0 0 0
forward 4 8
norm fun4
backgr.fit 16
###############################################################
COMMANDS
MAX_LIKELIHOOD
#PRINT_LEVEL 2
MINIMIZE
MINOS
SAVE
###############################################################
PLOT 0 (single histo plot)
lifetimecorrection
runs 1 2 3 4
range 0 10 -0.25 0.25
view_packing 25
###############################################################
FOURIER
units Gauss # units either 'Gauss', 'Tesla', 'MHz', or 'Mc/s'
fourier_power 13
apodization STRONG # NONE, WEAK, MEDIUM, STRONG
plot POWER # REAL, IMAG, REAL_AND_IMAG, POWER, PHASE, PHASE_OPT_REAL
range 0 5000
###############################################################
STATISTIC --- 2017-08-03 19:20:19
maxLH = 20799.5, NDF = 20361, maxLH/NDF = 1.021534

View File

@ -0,0 +1,96 @@
YBCO-40nm, T=40.00 K, E=3.72 keV, B=~1500(G)/259.52(A), Tr/Sa=15.02/10.54 kV, SR=-10.00
###############################################################
FITPARAMETER
# Nr. Name Value Step Pos_Error Boundaries
1 Asy 0.1381 -0.0015 0.0015
2 Sigma 0.970 -0.016 0.016 0 none
3 Ph -140.2 -1.2 1.2
4 Field 1506.77 -0.26 0.26
# L
5 RelPh_L 0 0 none
6 N0_L 262.27 -0.30 0.30
7 N_bkg_L 4.712 -0.038 0.038
# T
8 RelPh_T -90.9 -1.4 1.4
9 N0_T 269.85 -0.30 0.30
10 N_bkg_T 4.981 -0.039 0.039
# R
11 RelPh_R 181.2 -1.4 1.4
12 alpha_LR 1.0097 -0.0016 0.0016
13 N_bkg_R 5.230 -0.040 0.039
# B
14 RelPh_B 89.4 -1.4 1.4
15 alpha_TB 0.9379 -0.0015 0.0015
16 N_bkg_B 4.738 -0.038 0.038
###############################################################
THEORY
asymmetry 1
simpleGss 2 (rate)
TFieldCos fun1 fun2 (phase frequency)
###############################################################
FUNCTIONS
fun1 = par3 + map1
fun2 = gamma_mu * par4
fun3 = par6 * par12
fun4 = par9 * par15
###############################################################
GLOBAL
fittype 0 (single histogram fit)
fit 0.05 10
data 2500 66500 2500 66500
packing 10
###############################################################
RUN 2017/lem17_his_2493 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 5 0 0 0 0 0 0 0 0 0
forward 1 5
norm 6
backgr.fit 7
#-----------------------------------------------
RUN 2017/lem17_his_2493 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 8 0 0 0 0 0 0 0 0 0
forward 2 6
norm 9
backgr.fit 10
#-----------------------------------------------
RUN 2017/lem17_his_2493 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 11 0 0 0 0 0 0 0 0 0
forward 3 7
norm fun3
backgr.fit 13
#-----------------------------------------------
RUN 2017/lem17_his_2493 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 14 0 0 0 0 0 0 0 0 0
forward 4 8
norm fun4
backgr.fit 16
###############################################################
COMMANDS
MAX_LIKELIHOOD
#PRINT_LEVEL 2
MINIMIZE
MINOS
SAVE
###############################################################
PLOT 0 (single histo plot)
lifetimecorrection
runs 1 2 3 4
range 0 10 -0.25 0.25
view_packing 25
###############################################################
FOURIER
units Gauss # units either 'Gauss', 'Tesla', 'MHz', or 'Mc/s'
fourier_power 13
apodization STRONG # NONE, WEAK, MEDIUM, STRONG
plot POWER # REAL, IMAG, REAL_AND_IMAG, POWER, PHASE, PHASE_OPT_REAL
range 0 5000
###############################################################
STATISTIC --- 2017-08-03 20:07:55
maxLH = 20044.5, NDF = 20361, maxLH/NDF = 0.984454

View File

@ -0,0 +1,96 @@
YBCO-40nm, T=30.00 K, E=3.72 keV, B=~1500(G)/259.51(A), Tr/Sa=15.02/10.54 kV, SR=-10.00
###############################################################
FITPARAMETER
# Nr. Name Value Step Pos_Error Boundaries
1 Asy 0.1442 -0.0016 0.0016
2 Sigma 1.094 -0.018 0.018 0 none
3 Ph -137.3 -1.2 1.2
4 Field 1505.51 -0.29 0.29
# L
5 RelPh_L 0 0 none
6 N0_L 259.62 -0.30 0.30
7 N_bkg_L 4.850 -0.039 0.038
# T
8 RelPh_T -93.2 -1.4 1.4
9 N0_T 268.18 -0.30 0.30
10 N_bkg_T 5.057 -0.039 0.039
# R
11 RelPh_R 178.0 -1.4 1.4
12 alpha_LR 1.0129 -0.0016 0.0016
13 N_bkg_R 5.224 -0.039 0.039
# B
14 RelPh_B 89.1 -1.4 1.4
15 alpha_TB 0.9400 -0.0015 0.0015
16 N_bkg_B 4.568 -0.038 0.038
###############################################################
THEORY
asymmetry 1
simpleGss 2 (rate)
TFieldCos fun1 fun2 (phase frequency)
###############################################################
FUNCTIONS
fun1 = par3 + map1
fun2 = gamma_mu * par4
fun3 = par6 * par12
fun4 = par9 * par15
###############################################################
GLOBAL
fittype 0 (single histogram fit)
fit 0.05 10
data 2500 66500 2500 66500
packing 10
###############################################################
RUN 2017/lem17_his_2494 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 5 0 0 0 0 0 0 0 0 0
forward 1 5
norm 6
backgr.fit 7
#-----------------------------------------------
RUN 2017/lem17_his_2494 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 8 0 0 0 0 0 0 0 0 0
forward 2 6
norm 9
backgr.fit 10
#-----------------------------------------------
RUN 2017/lem17_his_2494 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 11 0 0 0 0 0 0 0 0 0
forward 3 7
norm fun3
backgr.fit 13
#-----------------------------------------------
RUN 2017/lem17_his_2494 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 14 0 0 0 0 0 0 0 0 0
forward 4 8
norm fun4
backgr.fit 16
###############################################################
COMMANDS
MAX_LIKELIHOOD
#PRINT_LEVEL 2
MINIMIZE
MINOS
SAVE
###############################################################
PLOT 0 (single histo plot)
lifetimecorrection
runs 1 2 3 4
range 0 10 -0.25 0.25
view_packing 25
###############################################################
FOURIER
units Gauss # units either 'Gauss', 'Tesla', 'MHz', or 'Mc/s'
fourier_power 13
apodization STRONG # NONE, WEAK, MEDIUM, STRONG
plot POWER # REAL, IMAG, REAL_AND_IMAG, POWER, PHASE, PHASE_OPT_REAL
range 0 5000
###############################################################
STATISTIC --- 2017-08-03 20:51:41
maxLH = 20448.4, NDF = 20361, maxLH/NDF = 1.004295

View File

@ -0,0 +1,96 @@
YBCO-40nm, T=20.00 K, E=3.72 keV, B=~1500(G)/259.52(A), Tr/Sa=15.02/10.54 kV, SR=-10.00
###############################################################
FITPARAMETER
# Nr. Name Value Step Pos_Error Boundaries
1 Asy 0.1393 -0.0016 0.0017
2 Sigma 1.138 -0.020 0.020 0 none
3 Ph -141.9 -1.3 1.3
4 Field 1505.85 -0.32 0.32
# L
5 RelPh_L 0 0 none
6 N0_L 261.04 -0.30 0.30
7 N_bkg_L 4.715 -0.038 0.038
# T
8 RelPh_T -87.0 -1.5 1.5
9 N0_T 269.62 -0.30 0.30
10 N_bkg_T 5.026 -0.039 0.039
# R
11 RelPh_R 180.2 -1.5 1.5
12 alpha_LR 1.0091 -0.0016 0.0016
13 N_bkg_R 5.218 -0.039 0.039
# B
14 RelPh_B 91.8 -1.5 1.5
15 alpha_TB 0.9369 -0.0015 0.0015
16 N_bkg_B 4.643 -0.038 0.038
###############################################################
THEORY
asymmetry 1
simpleGss 2 (rate)
TFieldCos fun1 fun2 (phase frequency)
###############################################################
FUNCTIONS
fun1 = par3 + map1
fun2 = gamma_mu * par4
fun3 = par6 * par12
fun4 = par9 * par15
###############################################################
GLOBAL
fittype 0 (single histogram fit)
fit 0.05 10
data 2500 66500 2500 66500
packing 10
###############################################################
RUN 2017/lem17_his_2495 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 5 0 0 0 0 0 0 0 0 0
forward 1 5
norm 6
backgr.fit 7
#-----------------------------------------------
RUN 2017/lem17_his_2495 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 8 0 0 0 0 0 0 0 0 0
forward 2 6
norm 9
backgr.fit 10
#-----------------------------------------------
RUN 2017/lem17_his_2495 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 11 0 0 0 0 0 0 0 0 0
forward 3 7
norm fun3
backgr.fit 13
#-----------------------------------------------
RUN 2017/lem17_his_2495 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 14 0 0 0 0 0 0 0 0 0
forward 4 8
norm fun4
backgr.fit 16
###############################################################
COMMANDS
MAX_LIKELIHOOD
#PRINT_LEVEL 2
MINIMIZE
MINOS
SAVE
###############################################################
PLOT 0 (single histo plot)
lifetimecorrection
runs 1 2 3 4
range 0 10 -0.25 0.25
view_packing 25
###############################################################
FOURIER
units Gauss # units either 'Gauss', 'Tesla', 'MHz', or 'Mc/s'
fourier_power 13
apodization STRONG # NONE, WEAK, MEDIUM, STRONG
plot POWER # REAL, IMAG, REAL_AND_IMAG, POWER, PHASE, PHASE_OPT_REAL
range 0 5000
###############################################################
STATISTIC --- 2017-08-03 20:51:31
maxLH = 20908.9, NDF = 20361, maxLH/NDF = 1.026911

View File

@ -0,0 +1,96 @@
YBCO-40nm, T=10.01 K, E=3.72 keV, B=~1500(G)/259.53(A), Tr/Sa=15.02/10.54 kV, SR=-10.00
###############################################################
FITPARAMETER
# Nr. Name Value Step Pos_Error Boundaries
1 Asy 0.1431 -0.0017 0.0017
2 Sigma 1.227 -0.021 0.021 0 none
3 Ph -140.1 -1.3 1.3
4 Field 1504.58 -0.34 0.34
# L
5 RelPh_L 0 0 none
6 N0_L 261.09 -0.30 0.30
7 N_bkg_L 4.683 -0.038 0.038
# T
8 RelPh_T -90.1 -1.5 1.5
9 N0_T 268.81 -0.30 0.30
10 N_bkg_T 5.029 -0.039 0.039
# R
11 RelPh_R 178.6 -1.5 1.5
12 alpha_LR 1.0115 -0.0016 0.0016
13 N_bkg_R 5.133 -0.039 0.039
# B
14 RelPh_B 89.2 -1.5 1.5
15 alpha_TB 0.9387 -0.0015 0.0015
16 N_bkg_B 4.799 -0.038 0.038
###############################################################
THEORY
asymmetry 1
simpleGss 2 (rate)
TFieldCos fun1 fun2 (phase frequency)
###############################################################
FUNCTIONS
fun1 = par3 + map1
fun2 = gamma_mu * par4
fun3 = par6 * par12
fun4 = par9 * par15
###############################################################
GLOBAL
fittype 0 (single histogram fit)
fit 0.05 10
data 2500 66500 2500 66500
packing 10
###############################################################
RUN 2017/lem17_his_2496 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 5 0 0 0 0 0 0 0 0 0
forward 1 5
norm 6
backgr.fit 7
#-----------------------------------------------
RUN 2017/lem17_his_2496 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 8 0 0 0 0 0 0 0 0 0
forward 2 6
norm 9
backgr.fit 10
#-----------------------------------------------
RUN 2017/lem17_his_2496 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 11 0 0 0 0 0 0 0 0 0
forward 3 7
norm fun3
backgr.fit 13
#-----------------------------------------------
RUN 2017/lem17_his_2496 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 14 0 0 0 0 0 0 0 0 0
forward 4 8
norm fun4
backgr.fit 16
###############################################################
COMMANDS
MAX_LIKELIHOOD
#PRINT_LEVEL 2
MINIMIZE
MINOS
SAVE
###############################################################
PLOT 0 (single histo plot)
lifetimecorrection
runs 1 2 3 4
range 0 10 -0.25 0.25
view_packing 25
###############################################################
FOURIER
units Gauss # units either 'Gauss', 'Tesla', 'MHz', or 'Mc/s'
fourier_power 13
apodization STRONG # NONE, WEAK, MEDIUM, STRONG
plot POWER # REAL, IMAG, REAL_AND_IMAG, POWER, PHASE, PHASE_OPT_REAL
range 0 5000
###############################################################
STATISTIC --- 2017-08-03 21:18:46
maxLH = 20464.0, NDF = 20361, maxLH/NDF = 1.005059

View File

@ -0,0 +1,96 @@
YBCO-40nm, T=4.99 K, E=3.72 keV, B=~1500(G)/259.51(A), Tr/Sa=15.02/10.54 kV, SR=-10.00
###############################################################
FITPARAMETER
# Nr. Name Value Step Pos_Error Boundaries
1 Asy 0.1344 -0.0015 0.0015
2 Sigma 1.195 -0.019 0.019 0 none
3 Ph -135.1 -1.2 1.2
4 Field 1503.89 -0.32 0.32
# L
5 RelPh_L 0 0 none
6 N0_L 313.46 -0.32 0.33
7 N_bkg_L 5.724 -0.042 0.042
# T
8 RelPh_T -90.8 -1.4 1.4
9 N0_T 322.27 -0.33 0.33
10 N_bkg_T 6.028 -0.043 0.043
# R
11 RelPh_R 175.3 -1.5 1.5
12 alpha_LR 1.0103 -0.0015 0.0015
13 N_bkg_R 6.222 -0.043 0.043
# B
14 RelPh_B 86.5 -1.5 1.5
15 alpha_TB 0.9401 -0.0014 0.0014
16 N_bkg_B 5.563 -0.042 0.041
###############################################################
THEORY
asymmetry 1
simpleGss 2 (rate)
TFieldCos fun1 fun2 (phase frequency)
###############################################################
FUNCTIONS
fun1 = par3 + map1
fun2 = gamma_mu * par4
fun3 = par6 * par12
fun4 = par9 * par15
###############################################################
GLOBAL
fittype 0 (single histogram fit)
fit 0.05 10
data 2500 66500 2500 66500
packing 10
###############################################################
RUN 2017/lem17_his_2497 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 5 0 0 0 0 0 0 0 0 0
forward 1 5
norm 6
backgr.fit 7
#-----------------------------------------------
RUN 2017/lem17_his_2497 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 8 0 0 0 0 0 0 0 0 0
forward 2 6
norm 9
backgr.fit 10
#-----------------------------------------------
RUN 2017/lem17_his_2497 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 11 0 0 0 0 0 0 0 0 0
forward 3 7
norm fun3
backgr.fit 13
#-----------------------------------------------
RUN 2017/lem17_his_2497 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 14 0 0 0 0 0 0 0 0 0
forward 4 8
norm fun4
backgr.fit 16
###############################################################
COMMANDS
MAX_LIKELIHOOD
#PRINT_LEVEL 2
MINIMIZE
MINOS
SAVE
###############################################################
PLOT 0 (single histo plot)
lifetimecorrection
runs 1 2 3 4
range 0 10 -0.25 0.25
view_packing 25
###############################################################
FOURIER
units Gauss # units either 'Gauss', 'Tesla', 'MHz', or 'Mc/s'
fourier_power 13
apodization STRONG # NONE, WEAK, MEDIUM, STRONG
plot POWER # REAL, IMAG, REAL_AND_IMAG, POWER, PHASE, PHASE_OPT_REAL
range 0 5000
###############################################################
STATISTIC --- 2017-08-03 21:52:51
maxLH = 20911.8, NDF = 20361, maxLH/NDF = 1.027052

View File

@ -0,0 +1,96 @@
YBCO-40nm, T=120.00 K, E=3.72 keV, B=~100(G)/17.30(A), Tr/Sa=15.02/10.54 kV, SR=-10.00
###############################################################
FITPARAMETER
# Nr. Name Value Step Pos_Error Boundaries
1 Asy 0.15430 -0.00077 0.00077
2 Sigma 0.1070 -0.0043 0.0042 0 none
3 Ph 21.06 -0.56 0.56
4 Field 101.611 -0.032 0.032
# L
5 RelPh_L 0 0 none
6 N0_L 304.71 -0.32 0.33
7 N_bkg_L 5.850 -0.042 0.042
# T
8 RelPh_T -88.67 -0.69 0.69
9 N0_T 322.01 -0.33 0.33
10 N_bkg_T 6.275 -0.043 0.043
# R
11 RelPh_R 182.67 -0.68 0.68
12 alpha_LR 1.0480 -0.0016 0.0016
13 N_bkg_R 6.506 -0.043 0.044
# B
14 RelPh_B 91.87 -0.71 0.71
15 alpha_TB 0.9186 -0.0014 0.0014
16 N_bkg_B 5.789 -0.042 0.042
###############################################################
THEORY
asymmetry 1
simpleGss 2 (rate)
TFieldCos fun1 fun2 (phase frequency)
###############################################################
FUNCTIONS
fun1 = par3 + map1
fun2 = gamma_mu * par4
fun3 = par6 * par12
fun4 = par9 * par15
###############################################################
GLOBAL
fittype 0 (single histogram fit)
fit 0.05 10
data 2500 66500 2500 66500
packing 10
###############################################################
RUN 2017/lem17_his_2498 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 5 0 0 0 0 0 0 0 0 0
forward 1 5
norm 6
backgr.fit 7
#-----------------------------------------------
RUN 2017/lem17_his_2498 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 8 0 0 0 0 0 0 0 0 0
forward 2 6
norm 9
backgr.fit 10
#-----------------------------------------------
RUN 2017/lem17_his_2498 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 11 0 0 0 0 0 0 0 0 0
forward 3 7
norm fun3
backgr.fit 13
#-----------------------------------------------
RUN 2017/lem17_his_2498 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 14 0 0 0 0 0 0 0 0 0
forward 4 8
norm fun4
backgr.fit 16
###############################################################
COMMANDS
MAX_LIKELIHOOD
#PRINT_LEVEL 2
MINIMIZE
MINOS
SAVE
###############################################################
PLOT 0 (single histo plot)
lifetimecorrection
runs 1 2 3 4
range 0 10 -0.25 0.25
view_packing 250
###############################################################
FOURIER
units Gauss # units either 'Gauss', 'Tesla', 'MHz', or 'Mc/s'
fourier_power 13
apodization STRONG # NONE, WEAK, MEDIUM, STRONG
plot POWER # REAL, IMAG, REAL_AND_IMAG, POWER, PHASE, PHASE_OPT_REAL
range 0 5000
###############################################################
STATISTIC --- 2017-08-04 06:16:24
maxLH = 20371.9, NDF = 20361, maxLH/NDF = 1.000533

View File

@ -0,0 +1,96 @@
YBCO-40nm, T=110.00 K, E=3.72 keV, B=~100(G)/17.30(A), Tr/Sa=15.02/10.54 kV, SR=-10.00
###############################################################
FITPARAMETER
# Nr. Name Value Step Pos_Error Boundaries
1 Asy 0.15162 -0.00076 0.00077
2 Sigma 0.1038 -0.0044 0.0043 0 none
3 Ph 21.96 -0.56 0.56
4 Field 101.648 -0.032 0.033
# L
5 RelPh_L 0 0 none
6 N0_L 306.71 -0.33 0.32
7 N_bkg_L 5.651 -0.042 0.042
# T
8 RelPh_T -88.95 -0.71 0.70
9 N0_T 322.89 -0.33 0.33
10 N_bkg_T 6.064 -0.043 0.043
# R
11 RelPh_R 180.98 -0.70 0.69
12 alpha_LR 1.0395 -0.0015 0.0015
13 N_bkg_R 6.410 -0.043 0.043
# B
14 RelPh_B 89.25 -0.72 0.71
15 alpha_TB 0.9199 -0.0014 0.0014
16 N_bkg_B 5.683 -0.041 0.042
###############################################################
THEORY
asymmetry 1
simpleGss 2 (rate)
TFieldCos fun1 fun2 (phase frequency)
###############################################################
FUNCTIONS
fun1 = par3 + map1
fun2 = gamma_mu * par4
fun3 = par6 * par12
fun4 = par9 * par15
###############################################################
GLOBAL
fittype 0 (single histogram fit)
fit 0.05 10
data 2500 66500 2500 66500
packing 10
###############################################################
RUN 2017/lem17_his_2499 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 5 0 0 0 0 0 0 0 0 0
forward 1 5
norm 6
backgr.fit 7
#-----------------------------------------------
RUN 2017/lem17_his_2499 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 8 0 0 0 0 0 0 0 0 0
forward 2 6
norm 9
backgr.fit 10
#-----------------------------------------------
RUN 2017/lem17_his_2499 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 11 0 0 0 0 0 0 0 0 0
forward 3 7
norm fun3
backgr.fit 13
#-----------------------------------------------
RUN 2017/lem17_his_2499 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 14 0 0 0 0 0 0 0 0 0
forward 4 8
norm fun4
backgr.fit 16
###############################################################
COMMANDS
MAX_LIKELIHOOD
#PRINT_LEVEL 2
MINIMIZE
MINOS
SAVE
###############################################################
PLOT 0 (single histo plot)
lifetimecorrection
runs 1 2 3 4
range 0 10 -0.25 0.25
view_packing 250
###############################################################
FOURIER
units Gauss # units either 'Gauss', 'Tesla', 'MHz', or 'Mc/s'
fourier_power 13
apodization STRONG # NONE, WEAK, MEDIUM, STRONG
plot POWER # REAL, IMAG, REAL_AND_IMAG, POWER, PHASE, PHASE_OPT_REAL
range 0 5000
###############################################################
STATISTIC --- 2017-08-04 06:17:37
maxLH = 20571.2, NDF = 20361, maxLH/NDF = 1.010323

View File

@ -0,0 +1,96 @@
YBCO-40nm, T=100.00 K, E=3.72 keV, B=~100(G)/17.30(A), Tr/Sa=15.02/10.54 kV, SR=-10.00
###############################################################
FITPARAMETER
# Nr. Name Value Step Pos_Error Boundaries
1 Asy 0.15397 -0.00077 0.00077
2 Sigma 0.1179 -0.0041 0.0040 0 none
3 Ph 22.69 -0.56 0.57
4 Field 101.788 -0.033 0.033
# L
5 RelPh_L 0 0 none
6 N0_L 305.99 -0.32 0.33
7 N_bkg_L 5.667 -0.042 0.042
# T
8 RelPh_T -89.73 -0.70 0.69
9 N0_T 322.59 -0.33 0.33
10 N_bkg_T 6.099 -0.043 0.043
# R
11 RelPh_R 180.18 -0.70 0.69
12 alpha_LR 1.0455 -0.0016 0.0015
13 N_bkg_R 6.407 -0.043 0.043
# B
14 RelPh_B 88.65 -0.71 0.70
15 alpha_TB 0.9225 -0.0014 0.0014
16 N_bkg_B 5.755 -0.042 0.042
###############################################################
THEORY
asymmetry 1
simpleGss 2 (rate)
TFieldCos fun1 fun2 (phase frequency)
###############################################################
FUNCTIONS
fun1 = par3 + map1
fun2 = gamma_mu * par4
fun3 = par6 * par12
fun4 = par9 * par15
###############################################################
GLOBAL
fittype 0 (single histogram fit)
fit 0.05 10
data 2500 66500 2500 66500
packing 10
###############################################################
RUN 2017/lem17_his_2500 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 5 0 0 0 0 0 0 0 0 0
forward 1 5
norm 6
backgr.fit 7
#-----------------------------------------------
RUN 2017/lem17_his_2500 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 8 0 0 0 0 0 0 0 0 0
forward 2 6
norm 9
backgr.fit 10
#-----------------------------------------------
RUN 2017/lem17_his_2500 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 11 0 0 0 0 0 0 0 0 0
forward 3 7
norm fun3
backgr.fit 13
#-----------------------------------------------
RUN 2017/lem17_his_2500 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 14 0 0 0 0 0 0 0 0 0
forward 4 8
norm fun4
backgr.fit 16
###############################################################
COMMANDS
MAX_LIKELIHOOD
#PRINT_LEVEL 2
MINIMIZE
MINOS
SAVE
###############################################################
PLOT 0 (single histo plot)
lifetimecorrection
runs 1 2 3 4
range 0 10 -0.25 0.25
view_packing 250
###############################################################
FOURIER
units Gauss # units either 'Gauss', 'Tesla', 'MHz', or 'Mc/s'
fourier_power 13
apodization STRONG # NONE, WEAK, MEDIUM, STRONG
plot POWER # REAL, IMAG, REAL_AND_IMAG, POWER, PHASE, PHASE_OPT_REAL
range 0 5000
###############################################################
STATISTIC --- 2017-08-04 06:17:39
maxLH = 20798.7, NDF = 20361, maxLH/NDF = 1.021497

View File

@ -0,0 +1,96 @@
YBCO-40nm, T=90.00 K, E=3.72 keV, B=~100(G)/17.30(A), Tr/Sa=15.02/10.54 kV, SR=-10.00
###############################################################
FITPARAMETER
# Nr. Name Value Step Pos_Error Boundaries
1 Asy 0.15292 -0.00076 0.00078
2 Sigma 0.1139 -0.0041 0.0041 0 none
3 Ph 22.77 -0.56 0.56
4 Field 101.934 -0.032 0.033
# L
5 RelPh_L 0 0 none
6 N0_L 305.80 -0.32 0.33
7 N_bkg_L 5.615 -0.042 0.041
# T
8 RelPh_T -89.44 -0.70 0.70
9 N0_T 323.19 -0.33 0.33
10 N_bkg_T 5.877 -0.043 0.043
# R
11 RelPh_R 179.80 -0.69 0.69
12 alpha_LR 1.0427 -0.0016 0.0015
13 N_bkg_R 6.380 -0.043 0.043
# B
14 RelPh_B 90.59 -0.72 0.72
15 alpha_TB 0.9193 -0.0014 0.0014
16 N_bkg_B 5.684 -0.041 0.042
###############################################################
THEORY
asymmetry 1
simpleGss 2 (rate)
TFieldCos fun1 fun2 (phase frequency)
###############################################################
FUNCTIONS
fun1 = par3 + map1
fun2 = gamma_mu * par4
fun3 = par6 * par12
fun4 = par9 * par15
###############################################################
GLOBAL
fittype 0 (single histogram fit)
fit 0.05 10
data 2500 66500 2500 66500
packing 10
###############################################################
RUN 2017/lem17_his_2501 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 5 0 0 0 0 0 0 0 0 0
forward 1 5
norm 6
backgr.fit 7
#-----------------------------------------------
RUN 2017/lem17_his_2501 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 8 0 0 0 0 0 0 0 0 0
forward 2 6
norm 9
backgr.fit 10
#-----------------------------------------------
RUN 2017/lem17_his_2501 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 11 0 0 0 0 0 0 0 0 0
forward 3 7
norm fun3
backgr.fit 13
#-----------------------------------------------
RUN 2017/lem17_his_2501 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 14 0 0 0 0 0 0 0 0 0
forward 4 8
norm fun4
backgr.fit 16
###############################################################
COMMANDS
MAX_LIKELIHOOD
#PRINT_LEVEL 2
MINIMIZE
MINOS
SAVE
###############################################################
PLOT 0 (single histo plot)
lifetimecorrection
runs 1 2 3 4
range 0 10 -0.25 0.25
view_packing 250
###############################################################
FOURIER
units Gauss # units either 'Gauss', 'Tesla', 'MHz', or 'Mc/s'
fourier_power 13
apodization STRONG # NONE, WEAK, MEDIUM, STRONG
plot POWER # REAL, IMAG, REAL_AND_IMAG, POWER, PHASE, PHASE_OPT_REAL
range 0 5000
###############################################################
STATISTIC --- 2017-08-04 06:17:42
maxLH = 20651.7, NDF = 20361, maxLH/NDF = 1.014275

View File

@ -0,0 +1,96 @@
YBCO-40nm, T=80.00 K, E=3.72 keV, B=~100(G)/17.30(A), Tr/Sa=15.02/10.54 kV, SR=-10.00
###############################################################
FITPARAMETER
# Nr. Name Value Step Pos_Error Boundaries
1 Asy 0.15503 -0.00080 0.00080
2 Sigma 0.1701 -0.0037 0.0037 0 none
3 Ph 23.32 -0.58 0.58
4 Field 101.761 -0.038 0.038
# L
5 RelPh_L 0 0 none
6 N0_L 307.50 -0.32 0.33
7 N_bkg_L 5.583 -0.042 0.042
# T
8 RelPh_T -89.57 -0.72 0.72
9 N0_T 322.69 -0.33 0.33
10 N_bkg_T 6.069 -0.043 0.043
# R
11 RelPh_R 180.36 -0.71 0.70
12 alpha_LR 1.0438 -0.0016 0.0015
13 N_bkg_R 6.327 -0.043 0.043
# B
14 RelPh_B 90.42 -0.73 0.73
15 alpha_TB 0.9273 -0.0014 0.0014
16 N_bkg_B 5.494 -0.041 0.041
###############################################################
THEORY
asymmetry 1
simpleGss 2 (rate)
TFieldCos fun1 fun2 (phase frequency)
###############################################################
FUNCTIONS
fun1 = par3 + map1
fun2 = gamma_mu * par4
fun3 = par6 * par12
fun4 = par9 * par15
###############################################################
GLOBAL
fittype 0 (single histogram fit)
fit 0.05 10
data 2500 66500 2500 66500
packing 10
###############################################################
RUN 2017/lem17_his_2502 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 5 0 0 0 0 0 0 0 0 0
forward 1 5
norm 6
backgr.fit 7
#-----------------------------------------------
RUN 2017/lem17_his_2502 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 8 0 0 0 0 0 0 0 0 0
forward 2 6
norm 9
backgr.fit 10
#-----------------------------------------------
RUN 2017/lem17_his_2502 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 11 0 0 0 0 0 0 0 0 0
forward 3 7
norm fun3
backgr.fit 13
#-----------------------------------------------
RUN 2017/lem17_his_2502 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 14 0 0 0 0 0 0 0 0 0
forward 4 8
norm fun4
backgr.fit 16
###############################################################
COMMANDS
MAX_LIKELIHOOD
#PRINT_LEVEL 2
MINIMIZE
MINOS
SAVE
###############################################################
PLOT 0 (single histo plot)
lifetimecorrection
runs 1 2 3 4
range 0 10 -0.25 0.25
view_packing 250
###############################################################
FOURIER
units Gauss # units either 'Gauss', 'Tesla', 'MHz', or 'Mc/s'
fourier_power 13
apodization STRONG # NONE, WEAK, MEDIUM, STRONG
plot POWER # REAL, IMAG, REAL_AND_IMAG, POWER, PHASE, PHASE_OPT_REAL
range 0 5000
###############################################################
STATISTIC --- 2017-08-04 06:17:45
maxLH = 20164.1, NDF = 20361, maxLH/NDF = 0.990327

View File

@ -0,0 +1,96 @@
YBCO-40nm, T=70.01 K, E=3.72 keV, B=~100(G)/17.30(A), Tr/Sa=15.02/10.54 kV, SR=-10.00
###############################################################
FITPARAMETER
# Nr. Name Value Step Pos_Error Boundaries
1 Asy 0.14723 -0.00085 0.00085
2 Sigma 0.2154 -0.0041 0.0041 0 none
3 Ph 24.96 -0.63 0.63
4 Field 100.813 -0.046 0.046
# L
5 RelPh_L 0 0 none
6 N0_L 305.91 -0.32 0.33
7 N_bkg_L 5.739 -0.042 0.042
# T
8 RelPh_T -88.52 -0.78 0.78
9 N0_T 322.43 -0.33 0.33
10 N_bkg_T 6.083 -0.043 0.043
# R
11 RelPh_R 181.37 -0.77 0.78
12 alpha_LR 1.0466 -0.0016 0.0015
13 N_bkg_R 6.381 -0.043 0.044
# B
14 RelPh_B 90.77 -0.80 0.80
15 alpha_TB 0.9244 -0.0014 0.0014
16 N_bkg_B 5.651 -0.041 0.041
###############################################################
THEORY
asymmetry 1
simpleGss 2 (rate)
TFieldCos fun1 fun2 (phase frequency)
###############################################################
FUNCTIONS
fun1 = par3 + map1
fun2 = gamma_mu * par4
fun3 = par6 * par12
fun4 = par9 * par15
###############################################################
GLOBAL
fittype 0 (single histogram fit)
fit 0.05 10
data 2500 66500 2500 66500
packing 10
###############################################################
RUN 2017/lem17_his_2503 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 5 0 0 0 0 0 0 0 0 0
forward 1 5
norm 6
backgr.fit 7
#-----------------------------------------------
RUN 2017/lem17_his_2503 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 8 0 0 0 0 0 0 0 0 0
forward 2 6
norm 9
backgr.fit 10
#-----------------------------------------------
RUN 2017/lem17_his_2503 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 11 0 0 0 0 0 0 0 0 0
forward 3 7
norm fun3
backgr.fit 13
#-----------------------------------------------
RUN 2017/lem17_his_2503 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 14 0 0 0 0 0 0 0 0 0
forward 4 8
norm fun4
backgr.fit 16
###############################################################
COMMANDS
MAX_LIKELIHOOD
#PRINT_LEVEL 2
MINIMIZE
MINOS
SAVE
###############################################################
PLOT 0 (single histo plot)
lifetimecorrection
runs 1 2 3 4
range 0 10 -0.25 0.25
view_packing 250
###############################################################
FOURIER
units Gauss # units either 'Gauss', 'Tesla', 'MHz', or 'Mc/s'
fourier_power 13
apodization STRONG # NONE, WEAK, MEDIUM, STRONG
plot POWER # REAL, IMAG, REAL_AND_IMAG, POWER, PHASE, PHASE_OPT_REAL
range 0 5000
###############################################################
STATISTIC --- 2017-08-04 06:17:47
maxLH = 20557.8, NDF = 20361, maxLH/NDF = 1.009667

View File

@ -0,0 +1,96 @@
YBCO-40nm, T=60.00 K, E=3.72 keV, B=~100(G)/17.30(A), Tr/Sa=15.02/10.54 kV, SR=-10.00
###############################################################
FITPARAMETER
# Nr. Name Value Step Pos_Error Boundaries
1 Asy 0.14658 -0.00089 0.00089
2 Sigma 0.2583 -0.0044 0.0044 0 none
3 Ph 27.31 -0.65 0.65
4 Field 100.082 -0.052 0.053
# L
5 RelPh_L 0 0 none
6 N0_L 307.17 -0.32 0.33
7 N_bkg_L 5.644 -0.042 0.042
# T
8 RelPh_T -90.36 -0.81 0.81
9 N0_T 322.70 -0.33 0.33
10 N_bkg_T 6.046 -0.043 0.043
# R
11 RelPh_R 179.44 -0.80 0.80
12 alpha_LR 1.0422 -0.0015 0.0015
13 N_bkg_R 6.290 -0.043 0.043
# B
14 RelPh_B 89.98 -0.83 0.83
15 alpha_TB 0.9204 -0.0014 0.0014
16 N_bkg_B 5.629 -0.041 0.042
###############################################################
THEORY
asymmetry 1
simpleGss 2 (rate)
TFieldCos fun1 fun2 (phase frequency)
###############################################################
FUNCTIONS
fun1 = par3 + map1
fun2 = gamma_mu * par4
fun3 = par6 * par12
fun4 = par9 * par15
###############################################################
GLOBAL
fittype 0 (single histogram fit)
fit 0.05 10
data 2500 66500 2500 66500
packing 10
###############################################################
RUN 2017/lem17_his_2504 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 5 0 0 0 0 0 0 0 0 0
forward 1 5
norm 6
backgr.fit 7
#-----------------------------------------------
RUN 2017/lem17_his_2504 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 8 0 0 0 0 0 0 0 0 0
forward 2 6
norm 9
backgr.fit 10
#-----------------------------------------------
RUN 2017/lem17_his_2504 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 11 0 0 0 0 0 0 0 0 0
forward 3 7
norm fun3
backgr.fit 13
#-----------------------------------------------
RUN 2017/lem17_his_2504 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 14 0 0 0 0 0 0 0 0 0
forward 4 8
norm fun4
backgr.fit 16
###############################################################
COMMANDS
MAX_LIKELIHOOD
#PRINT_LEVEL 2
MINIMIZE
MINOS
SAVE
###############################################################
PLOT 0 (single histo plot)
lifetimecorrection
runs 1 2 3 4
range 0 10 -0.25 0.25
view_packing 250
###############################################################
FOURIER
units Gauss # units either 'Gauss', 'Tesla', 'MHz', or 'Mc/s'
fourier_power 13
apodization STRONG # NONE, WEAK, MEDIUM, STRONG
plot POWER # REAL, IMAG, REAL_AND_IMAG, POWER, PHASE, PHASE_OPT_REAL
range 0 5000
###############################################################
STATISTIC --- 2017-08-04 06:17:51
maxLH = 20312.5, NDF = 20361, maxLH/NDF = 0.997620

View File

@ -0,0 +1,96 @@
YBCO-40nm, T=50.00 K, E=3.72 keV, B=~100(G)/17.30(A), Tr/Sa=15.02/10.54 kV, SR=-10.00
###############################################################
FITPARAMETER
# Nr. Name Value Step Pos_Error Boundaries
1 Asy 0.14694 -0.00091 0.00092
2 Sigma 0.3015 -0.0046 0.0047 0 none
3 Ph 26.54 -0.67 0.67
4 Field 99.560 -0.060 0.060
# L
5 RelPh_L 0 0 none
6 N0_L 308.21 -0.33 0.33
7 N_bkg_L 5.725 -0.042 0.042
# T
8 RelPh_T -88.06 -0.84 0.84
9 N0_T 322.68 -0.33 0.33
10 N_bkg_T 5.998 -0.043 0.043
# R
11 RelPh_R 182.28 -0.83 0.83
12 alpha_LR 1.0340 -0.0015 0.0015
13 N_bkg_R 6.414 -0.043 0.043
# B
14 RelPh_B 93.05 -0.85 0.85
15 alpha_TB 0.9233 -0.0014 0.0014
16 N_bkg_B 5.554 -0.041 0.041
###############################################################
THEORY
asymmetry 1
simpleGss 2 (rate)
TFieldCos fun1 fun2 (phase frequency)
###############################################################
FUNCTIONS
fun1 = par3 + map1
fun2 = gamma_mu * par4
fun3 = par6 * par12
fun4 = par9 * par15
###############################################################
GLOBAL
fittype 0 (single histogram fit)
fit 0.05 10
data 2500 66500 2500 66500
packing 10
###############################################################
RUN 2017/lem17_his_2505 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 5 0 0 0 0 0 0 0 0 0
forward 1 5
norm 6
backgr.fit 7
#-----------------------------------------------
RUN 2017/lem17_his_2505 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 8 0 0 0 0 0 0 0 0 0
forward 2 6
norm 9
backgr.fit 10
#-----------------------------------------------
RUN 2017/lem17_his_2505 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 11 0 0 0 0 0 0 0 0 0
forward 3 7
norm fun3
backgr.fit 13
#-----------------------------------------------
RUN 2017/lem17_his_2505 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 14 0 0 0 0 0 0 0 0 0
forward 4 8
norm fun4
backgr.fit 16
###############################################################
COMMANDS
MAX_LIKELIHOOD
#PRINT_LEVEL 2
MINIMIZE
MINOS
SAVE
###############################################################
PLOT 0 (single histo plot)
lifetimecorrection
runs 1 2 3 4
range 0 10 -0.25 0.25
view_packing 250
###############################################################
FOURIER
units Gauss # units either 'Gauss', 'Tesla', 'MHz', or 'Mc/s'
fourier_power 13
apodization STRONG # NONE, WEAK, MEDIUM, STRONG
plot POWER # REAL, IMAG, REAL_AND_IMAG, POWER, PHASE, PHASE_OPT_REAL
range 0 5000
###############################################################
STATISTIC --- 2017-08-04 06:17:53
maxLH = 20520.8, NDF = 20361, maxLH/NDF = 1.007850

View File

@ -0,0 +1,96 @@
YBCO-40nm, T=39.99 K, E=3.72 keV, B=~100(G)/17.30(A), Tr/Sa=15.02/10.54 kV, SR=-10.00
###############################################################
FITPARAMETER
# Nr. Name Value Step Pos_Error Boundaries
1 Asy 0.14448 -0.00093 0.00093
2 Sigma 0.3229 -0.0049 0.0049 0 none
3 Ph 27.69 -0.71 0.71
4 Field 99.218 -0.065 0.065
# L
5 RelPh_L 0 0 none
6 N0_L 308.64 -0.32 0.33
7 N_bkg_L 5.629 -0.042 0.042
# T
8 RelPh_T -89.25 -0.87 0.87
9 N0_T 323.32 -0.33 0.33
10 N_bkg_T 5.986 -0.043 0.043
# R
11 RelPh_R 179.57 -0.85 0.85
12 alpha_LR 1.0321 -0.0015 0.0015
13 N_bkg_R 6.356 -0.043 0.043
# B
14 RelPh_B 92.12 -0.88 0.88
15 alpha_TB 0.9198 -0.0014 0.0014
16 N_bkg_B 5.560 -0.041 0.041
###############################################################
THEORY
asymmetry 1
simpleGss 2 (rate)
TFieldCos fun1 fun2 (phase frequency)
###############################################################
FUNCTIONS
fun1 = par3 + map1
fun2 = gamma_mu * par4
fun3 = par6 * par12
fun4 = par9 * par15
###############################################################
GLOBAL
fittype 0 (single histogram fit)
fit 0.05 10
data 2500 66500 2500 66500
packing 10
###############################################################
RUN 2017/lem17_his_2506 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 5 0 0 0 0 0 0 0 0 0
forward 1 5
norm 6
backgr.fit 7
#-----------------------------------------------
RUN 2017/lem17_his_2506 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 8 0 0 0 0 0 0 0 0 0
forward 2 6
norm 9
backgr.fit 10
#-----------------------------------------------
RUN 2017/lem17_his_2506 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 11 0 0 0 0 0 0 0 0 0
forward 3 7
norm fun3
backgr.fit 13
#-----------------------------------------------
RUN 2017/lem17_his_2506 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 14 0 0 0 0 0 0 0 0 0
forward 4 8
norm fun4
backgr.fit 16
###############################################################
COMMANDS
MAX_LIKELIHOOD
#PRINT_LEVEL 2
MINIMIZE
MINOS
SAVE
###############################################################
PLOT 0 (single histo plot)
lifetimecorrection
runs 1 2 3 4
range 0 10 -0.25 0.25
view_packing 250
###############################################################
FOURIER
units Gauss # units either 'Gauss', 'Tesla', 'MHz', or 'Mc/s'
fourier_power 13
apodization STRONG # NONE, WEAK, MEDIUM, STRONG
plot POWER # REAL, IMAG, REAL_AND_IMAG, POWER, PHASE, PHASE_OPT_REAL
range 0 5000
###############################################################
STATISTIC --- 2017-08-04 06:17:56
maxLH = 20387.1, NDF = 20361, maxLH/NDF = 1.001283

View File

@ -0,0 +1,96 @@
YBCO-40nm, T=30.00 K, E=3.72 keV, B=~100(G)/17.30(A), Tr/Sa=15.02/10.54 kV, SR=-10.00
###############################################################
FITPARAMETER
# Nr. Name Value Step Pos_Error Boundaries
1 Asy 0.14302 -0.00096 0.00096
2 Sigma 0.3559 -0.0053 0.0054 0 none
3 Ph 26.24 -0.73 0.73
4 Field 99.133 -0.071 0.071
# L
5 RelPh_L 0 0 none
6 N0_L 308.94 -0.33 0.33
7 N_bkg_L 5.538 -0.042 0.042
# T
8 RelPh_T -89.10 -0.89 0.89
9 N0_T 325.00 -0.33 0.33
10 N_bkg_T 5.966 -0.043 0.043
# R
11 RelPh_R 180.61 -0.88 0.88
12 alpha_LR 1.0277 -0.0015 0.0015
13 N_bkg_R 6.368 -0.043 0.043
# B
14 RelPh_B 91.54 -0.92 0.92
15 alpha_TB 0.9171 -0.0014 0.0014
16 N_bkg_B 5.501 -0.041 0.041
###############################################################
THEORY
asymmetry 1
simpleGss 2 (rate)
TFieldCos fun1 fun2 (phase frequency)
###############################################################
FUNCTIONS
fun1 = par3 + map1
fun2 = gamma_mu * par4
fun3 = par6 * par12
fun4 = par9 * par15
###############################################################
GLOBAL
fittype 0 (single histogram fit)
fit 0.05 10
data 2500 66500 2500 66500
packing 10
###############################################################
RUN 2017/lem17_his_2507 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 5 0 0 0 0 0 0 0 0 0
forward 1 5
norm 6
backgr.fit 7
#-----------------------------------------------
RUN 2017/lem17_his_2507 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 8 0 0 0 0 0 0 0 0 0
forward 2 6
norm 9
backgr.fit 10
#-----------------------------------------------
RUN 2017/lem17_his_2507 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 11 0 0 0 0 0 0 0 0 0
forward 3 7
norm fun3
backgr.fit 13
#-----------------------------------------------
RUN 2017/lem17_his_2507 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 14 0 0 0 0 0 0 0 0 0
forward 4 8
norm fun4
backgr.fit 16
###############################################################
COMMANDS
MAX_LIKELIHOOD
#PRINT_LEVEL 2
MINIMIZE
MINOS
SAVE
###############################################################
PLOT 0 (single histo plot)
lifetimecorrection
runs 1 2 3 4
range 0 10 -0.25 0.25
view_packing 250
###############################################################
FOURIER
units Gauss # units either 'Gauss', 'Tesla', 'MHz', or 'Mc/s'
fourier_power 13
apodization STRONG # NONE, WEAK, MEDIUM, STRONG
plot POWER # REAL, IMAG, REAL_AND_IMAG, POWER, PHASE, PHASE_OPT_REAL
range 0 5000
###############################################################
STATISTIC --- 2017-08-04 06:17:58
maxLH = 20754.5, NDF = 20361, maxLH/NDF = 1.019328

View File

@ -0,0 +1,96 @@
YBCO-40nm, T=19.98 K, E=3.72 keV, B=~100(G)/17.30(A), Tr/Sa=15.02/10.54 kV, SR=-10.00
###############################################################
FITPARAMETER
# Nr. Name Value Step Pos_Error Boundaries
1 Asy 0.14124 -0.00097 0.00098
2 Sigma 0.3703 -0.0055 0.0056 0 none
3 Ph 27.39 -0.74 0.74
4 Field 98.751 -0.075 0.075
# L
5 RelPh_L 0 0 none
6 N0_L 309.63 -0.32 0.33
7 N_bkg_L 5.579 -0.042 0.042
# T
8 RelPh_T -89.02 -0.92 0.92
9 N0_T 324.61 -0.33 0.33
10 N_bkg_T 6.045 -0.043 0.043
# R
11 RelPh_R 180.44 -0.90 0.89
12 alpha_LR 1.0280 -0.0015 0.0015
13 N_bkg_R 6.317 -0.043 0.043
# B
14 RelPh_B 91.04 -0.94 0.94
15 alpha_TB 0.9176 -0.0014 0.0014
16 N_bkg_B 5.626 -0.041 0.042
###############################################################
THEORY
asymmetry 1
simpleGss 2 (rate)
TFieldCos fun1 fun2 (phase frequency)
###############################################################
FUNCTIONS
fun1 = par3 + map1
fun2 = gamma_mu * par4
fun3 = par6 * par12
fun4 = par9 * par15
###############################################################
GLOBAL
fittype 0 (single histogram fit)
fit 0.05 10
data 2500 66500 2500 66500
packing 10
###############################################################
RUN 2017/lem17_his_2508 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 5 0 0 0 0 0 0 0 0 0
forward 1 5
norm 6
backgr.fit 7
#-----------------------------------------------
RUN 2017/lem17_his_2508 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 8 0 0 0 0 0 0 0 0 0
forward 2 6
norm 9
backgr.fit 10
#-----------------------------------------------
RUN 2017/lem17_his_2508 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 11 0 0 0 0 0 0 0 0 0
forward 3 7
norm fun3
backgr.fit 13
#-----------------------------------------------
RUN 2017/lem17_his_2508 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 14 0 0 0 0 0 0 0 0 0
forward 4 8
norm fun4
backgr.fit 16
###############################################################
COMMANDS
MAX_LIKELIHOOD
#PRINT_LEVEL 2
MINIMIZE
MINOS
SAVE
###############################################################
PLOT 0 (single histo plot)
lifetimecorrection
runs 1 2 3 4
range 0 10 -0.25 0.25
view_packing 250
###############################################################
FOURIER
units Gauss # units either 'Gauss', 'Tesla', 'MHz', or 'Mc/s'
fourier_power 13
apodization STRONG # NONE, WEAK, MEDIUM, STRONG
plot POWER # REAL, IMAG, REAL_AND_IMAG, POWER, PHASE, PHASE_OPT_REAL
range 0 5000
###############################################################
STATISTIC --- 2017-08-04 06:18:01
maxLH = 20451.1, NDF = 20361, maxLH/NDF = 1.004423

View File

@ -0,0 +1,96 @@
YBCO-40nm, T=10.01 K, E=3.72 keV, B=~100(G)/17.30(A), Tr/Sa=15.02/10.54 kV, SR=-10.00
###############################################################
FITPARAMETER
# Nr. Name Value Step Pos_Error Boundaries
1 Asy 0.13867 -0.00098 0.00099
2 Sigma 0.3824 -0.0058 0.0058 0 none
3 Ph 29.09 -0.77 0.77
4 Field 98.629 -0.079 0.079
# L
5 RelPh_L 0 0 none
6 N0_L 309.62 -0.32 0.33
7 N_bkg_L 5.543 -0.042 0.042
# T
8 RelPh_T -91.92 -0.95 0.94
9 N0_T 323.32 -0.33 0.33
10 N_bkg_T 6.028 -0.043 0.043
# R
11 RelPh_R 180.01 -0.93 0.93
12 alpha_LR 1.0266 -0.0015 0.0015
13 N_bkg_R 6.234 -0.043 0.043
# B
14 RelPh_B 90.07 -0.96 0.96
15 alpha_TB 0.9183 -0.0014 0.0014
16 N_bkg_B 5.573 -0.041 0.041
###############################################################
THEORY
asymmetry 1
simpleGss 2 (rate)
TFieldCos fun1 fun2 (phase frequency)
###############################################################
FUNCTIONS
fun1 = par3 + map1
fun2 = gamma_mu * par4
fun3 = par6 * par12
fun4 = par9 * par15
###############################################################
GLOBAL
fittype 0 (single histogram fit)
fit 0.05 10
data 2500 66500 2500 66500
packing 10
###############################################################
RUN 2017/lem17_his_2509 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 5 0 0 0 0 0 0 0 0 0
forward 1 5
norm 6
backgr.fit 7
#-----------------------------------------------
RUN 2017/lem17_his_2509 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 8 0 0 0 0 0 0 0 0 0
forward 2 6
norm 9
backgr.fit 10
#-----------------------------------------------
RUN 2017/lem17_his_2509 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 11 0 0 0 0 0 0 0 0 0
forward 3 7
norm fun3
backgr.fit 13
#-----------------------------------------------
RUN 2017/lem17_his_2509 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 14 0 0 0 0 0 0 0 0 0
forward 4 8
norm fun4
backgr.fit 16
###############################################################
COMMANDS
MAX_LIKELIHOOD
#PRINT_LEVEL 2
MINIMIZE
MINOS
SAVE
###############################################################
PLOT 0 (single histo plot)
lifetimecorrection
runs 1 2 3 4
range 0 10 -0.25 0.25
view_packing 250
###############################################################
FOURIER
units Gauss # units either 'Gauss', 'Tesla', 'MHz', or 'Mc/s'
fourier_power 13
apodization STRONG # NONE, WEAK, MEDIUM, STRONG
plot POWER # REAL, IMAG, REAL_AND_IMAG, POWER, PHASE, PHASE_OPT_REAL
range 0 5000
###############################################################
STATISTIC --- 2017-08-04 06:18:03
maxLH = 20426.7, NDF = 20361, maxLH/NDF = 1.003225

View File

@ -0,0 +1,96 @@
YBCO-40nm, T=5.01 K, E=3.72 keV, B=~100(G)/17.30(A), Tr/Sa=15.02/10.54 kV, SR=-10.00
###############################################################
FITPARAMETER
# Nr. Name Value Step Pos_Error Boundaries
1 Asy 0.13438 -0.00098 0.00098
2 Sigma 0.3809 -0.0059 0.0060 0 none
3 Ph 27.97 -0.79 0.79
4 Field 98.570 -0.081 0.082
# L
5 RelPh_L 0 0 none
6 N0_L 309.88 -0.33 0.33
7 N_bkg_L 5.664 -0.042 0.042
# T
8 RelPh_T -88.74 -0.96 0.97
9 N0_T 325.36 -0.33 0.33
10 N_bkg_T 5.981 -0.043 0.043
# R
11 RelPh_R 180.84 -0.96 0.96
12 alpha_LR 1.0271 -0.0015 0.0015
13 N_bkg_R 6.324 -0.043 0.043
# B
14 RelPh_B 92.48 -0.99 0.98
15 alpha_TB 0.9141 -0.0014 0.0014
16 N_bkg_B 5.608 -0.042 0.041
###############################################################
THEORY
asymmetry 1
simpleGss 2 (rate)
TFieldCos fun1 fun2 (phase frequency)
###############################################################
FUNCTIONS
fun1 = par3 + map1
fun2 = gamma_mu * par4
fun3 = par6 * par12
fun4 = par9 * par15
###############################################################
GLOBAL
fittype 0 (single histogram fit)
fit 0.05 10
data 2500 66500 2500 66500
packing 10
###############################################################
RUN 2017/lem17_his_2510 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 5 0 0 0 0 0 0 0 0 0
forward 1 5
norm 6
backgr.fit 7
#-----------------------------------------------
RUN 2017/lem17_his_2510 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 8 0 0 0 0 0 0 0 0 0
forward 2 6
norm 9
backgr.fit 10
#-----------------------------------------------
RUN 2017/lem17_his_2510 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 11 0 0 0 0 0 0 0 0 0
forward 3 7
norm fun3
backgr.fit 13
#-----------------------------------------------
RUN 2017/lem17_his_2510 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 14 0 0 0 0 0 0 0 0 0
forward 4 8
norm fun4
backgr.fit 16
###############################################################
COMMANDS
MAX_LIKELIHOOD
#PRINT_LEVEL 2
MINIMIZE
MINOS
SAVE
###############################################################
PLOT 0 (single histo plot)
lifetimecorrection
runs 1 2 3 4
range 0 10 -0.25 0.25
view_packing 250
###############################################################
FOURIER
units Gauss # units either 'Gauss', 'Tesla', 'MHz', or 'Mc/s'
fourier_power 13
apodization STRONG # NONE, WEAK, MEDIUM, STRONG
plot POWER # REAL, IMAG, REAL_AND_IMAG, POWER, PHASE, PHASE_OPT_REAL
range 0 5000
###############################################################
STATISTIC --- 2017-08-04 06:18:06
maxLH = 20906.7, NDF = 20361, maxLH/NDF = 1.026802

View File

@ -0,0 +1,95 @@
YBCO-40nm, T=119.99 K, E=3.72 keV, B=~50(G)/8.65(A), Tr/Sa=15.02/10.54 kV, SR=-10.00
###############################################################
FITPARAMETER
# Nr. Name Value Step Pos_Error Boundaries
1 Asy 0.15228 -0.00061 0.00061
2 Sigma 0.1395 -0.0029 0.0029 0 none
3 Ph 11.17 -0.45 0.45
4 Field 52.675 -0.027 0.028
# L
5 RelPh_L 0 0 none
6 N0_L 517.08 -0.43 0.43
7 N_bkg_L 9.123 -0.054 0.054
# T
8 RelPh_T -90.84 -0.56 0.56
9 N0_T 537.04 -0.42 0.43
10 N_bkg_T 9.880 -0.055 0.055
# R
11 RelPh_R 180.62 -0.55 0.55
12 alpha_LR 1.0260 -0.0012 0.0012
13 N_bkg_R 10.404 -0.056 0.056
# B
14 RelPh_B 88.79 -0.56 0.56
15 alpha_TB 0.9256 -0.0011 0.0011
16 N_bkg_B 9.143 -0.053 0.053
###############################################################
THEORY
asymmetry 1
simpleGss 2 (rate)
TFieldCos fun1 fun2 (phase frequency)
###############################################################
FUNCTIONS
fun1 = par3 + map1
fun2 = gamma_mu * par4
fun3 = par6 * par12
fun4 = par9 * par15
###############################################################
GLOBAL
fittype 0 (single histogram fit)
fit 0.05 10
data 2500 66500 2500 66500
packing 10
###############################################################
RUN 2017/lem17_his_2511 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 5 0 0 0 0 0 0 0 0 0
forward 1 5
norm 6
backgr.fit 7
#-----------------------------------------------
RUN 2017/lem17_his_2511 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 8 0 0 0 0 0 0 0 0 0
forward 2 6
norm 9
backgr.fit 10
#-----------------------------------------------
RUN 2017/lem17_his_2511 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 11 0 0 0 0 0 0 0 0 0
forward 3 7
norm fun3
backgr.fit 13
#-----------------------------------------------
RUN 2017/lem17_his_2511 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 14 0 0 0 0 0 0 0 0 0
forward 4 8
norm fun4
backgr.fit 16
###############################################################
COMMANDS
MAX_LIKELIHOOD
#PRINT_LEVEL 2
MINIMIZE
MINOS
SAVE
###############################################################
PLOT 0 (single histo plot)
lifetimecorrection
runs 1 2 3 4
range 0 10 -0.25 0.25
view_packing 500
###############################################################
FOURIER
units Gauss # units either 'Gauss', 'Tesla', 'MHz', or 'Mc/s'
fourier_power 13
apodization STRONG # NONE, WEAK, MEDIUM, STRONG
plot POWER # REAL, IMAG, REAL_AND_IMAG, POWER, PHASE, PHASE_OPT_REAL
###############################################################
STATISTIC --- 2017-08-04 07:47:54
maxLH = 20065.8, NDF = 20361, maxLH/NDF = 0.985501

View File

@ -0,0 +1,95 @@
YBCO-40nm, T=4.99 K, E=3.72 keV, B=~50(G)/8.65(A), Tr/Sa=15.02/10.54 kV, SR=-10.00
###############################################################
FITPARAMETER
# Nr. Name Value Step Pos_Error Boundaries
1 Asy 0.13719 -0.00075 0.00075
2 Sigma 0.3385 -0.0042 0.0042 0 none
3 Ph 15.78 -0.58 0.58
4 Field 50.621 -0.055 0.056
# L
5 RelPh_L 0 0 none
6 N0_L 516.65 -0.43 0.43
7 N_bkg_L 9.436 -0.054 0.054
# T
8 RelPh_T -89.74 -0.72 0.72
9 N0_T 538.32 -0.43 0.43
10 N_bkg_T 10.072 -0.056 0.055
# R
11 RelPh_R 180.80 -0.70 0.70
12 alpha_LR 1.0196 -0.0012 0.0012
13 N_bkg_R 10.468 -0.056 0.056
# B
14 RelPh_B 90.57 -0.73 0.73
15 alpha_TB 0.9212 -0.0011 0.0011
16 N_bkg_B 9.115 -0.053 0.053
###############################################################
THEORY
asymmetry 1
simpleGss 2 (rate)
TFieldCos fun1 fun2 (phase frequency)
###############################################################
FUNCTIONS
fun1 = par3 + map1
fun2 = gamma_mu * par4
fun3 = par6 * par12
fun4 = par9 * par15
###############################################################
GLOBAL
fittype 0 (single histogram fit)
fit 0.05 10
data 2500 66500 2500 66500
packing 10
###############################################################
RUN 2017/lem17_his_2512 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 5 0 0 0 0 0 0 0 0 0
forward 1 5
norm 6
backgr.fit 7
#-----------------------------------------------
RUN 2017/lem17_his_2512 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 8 0 0 0 0 0 0 0 0 0
forward 2 6
norm 9
backgr.fit 10
#-----------------------------------------------
RUN 2017/lem17_his_2512 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 11 0 0 0 0 0 0 0 0 0
forward 3 7
norm fun3
backgr.fit 13
#-----------------------------------------------
RUN 2017/lem17_his_2512 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 14 0 0 0 0 0 0 0 0 0
forward 4 8
norm fun4
backgr.fit 16
###############################################################
COMMANDS
MAX_LIKELIHOOD
#PRINT_LEVEL 2
MINIMIZE
MINOS
SAVE
###############################################################
PLOT 0 (single histo plot)
lifetimecorrection
runs 1 2 3 4
range 0 10 -0.25 0.25
view_packing 500
###############################################################
FOURIER
units Gauss # units either 'Gauss', 'Tesla', 'MHz', or 'Mc/s'
fourier_power 13
apodization STRONG # NONE, WEAK, MEDIUM, STRONG
plot POWER # REAL, IMAG, REAL_AND_IMAG, POWER, PHASE, PHASE_OPT_REAL
###############################################################
STATISTIC --- 2017-08-04 08:51:06
maxLH = 20444.1, NDF = 20361, maxLH/NDF = 1.004079

View File

@ -0,0 +1,95 @@
YBCO-40nm, T=120.01 K, E=3.79 keV, B=~800(G)/138.41(A), Tr/Sa=12.02/7.29 kV, SR=-10.00
###############################################################
FITPARAMETER
# Nr. Name Value Step Pos_Error Boundaries
1 Asy 0.07612 -0.00096 0.00097
2 Sigma 0.429 -0.010 0.010 0 none
3 Ph 196.3 -1.5 1.5
4 Field 805.59 -0.17 0.17
# L
5 RelPh_L 0 0 none
6 N0_L 323.67 -0.33 0.33
7 N_bkg_L 5.434 -0.042 0.042
# T
8 RelPh_T -81.1 -1.8 1.8
9 N0_T 294.12 -0.32 0.31
10 N_bkg_T 5.244 -0.041 0.041
# R
11 RelPh_R 188.3 -1.7 1.7
12 alpha_LR 1.0106 -0.0015 0.0015
13 N_bkg_R 6.206 -0.043 0.043
# B
14 RelPh_B 95.1 -1.7 1.8
15 alpha_TB 1.1764 -0.0017 0.0017
16 N_bkg_B 5.910 -0.044 0.044
###############################################################
THEORY
asymmetry 1
simpleGss 2 (rate)
TFieldCos fun1 fun2 (phase frequency)
###############################################################
FUNCTIONS
fun1 = par3 + map1
fun2 = gamma_mu * par4
fun3 = par6 * par12
fun4 = par9 * par15
###############################################################
GLOBAL
fittype 0 (single histogram fit)
fit 0.05 10
data 2500 66500 2500 66500
packing 10
###############################################################
RUN 2017/lem17_his_2516 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 5 0 0 0 0 0 0 0 0 0
forward 41 45
norm 6
backgr.fit 7
#-----------------------------------------------
RUN 2017/lem17_his_2516 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 8 0 0 0 0 0 0 0 0 0
forward 42 46
norm 9
backgr.fit 10
#-----------------------------------------------
RUN 2017/lem17_his_2516 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 11 0 0 0 0 0 0 0 0 0
forward 43 47
norm fun3
backgr.fit 13
#-----------------------------------------------
RUN 2017/lem17_his_2516 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 14 0 0 0 0 0 0 0 0 0
forward 44 48
norm fun4
backgr.fit 16
###############################################################
COMMANDS
MAX_LIKELIHOOD
#PRINT_LEVEL 2
MINIMIZE
MINOS
SAVE
###############################################################
PLOT 0 (single histo plot)
lifetimecorrection
runs 1 2 3 4
range 0 10 -0.25 0.25
view_packing 50
###############################################################
FOURIER
units Gauss # units either 'Gauss', 'Tesla', 'MHz', or 'Mc/s'
fourier_power 13
apodization STRONG # NONE, WEAK, MEDIUM, STRONG
plot POWER # REAL, IMAG, REAL_AND_IMAG, POWER, PHASE, PHASE_OPT_REAL
###############################################################
STATISTIC --- 2017-08-04 12:38:19
maxLH = 20356.2, NDF = 20365, maxLH/NDF = 0.999568

View File

@ -0,0 +1,95 @@
YBCO-40nm, T=120.00 K, E=3.79 keV, B=~800(G)/138.41(A), Tr/Sa=12.02/7.29 kV, SR=-10.00
###############################################################
FITPARAMETER
# Nr. Name Value Step Pos_Error Boundaries
1 Asy 0.0744 -0.0023 0.0024
2 Sigma 0.357 -0.023 0.024 0 none
3 Ph 189.3 -3.6 3.6
4 Field 805.92 -0.36 0.35
# L
5 RelPh_L 0 0 none
6 N0_L 50.34 -0.13 0.13
7 N_bkg_L 0.872 -0.017 0.017
# T
8 RelPh_T -81.8 -4.4 4.4
9 N0_T 44.87 -0.12 0.12
10 N_bkg_T 0.809 -0.016 0.016
# R
11 RelPh_R 195.0 -4.3 4.3
12 alpha_LR 0.9807 -0.0036 0.0036
13 N_bkg_R 0.923 -0.017 0.017
# B
14 RelPh_B 102.8 -4.3 4.3
15 alpha_TB 1.1769 -0.0044 0.0044
16 N_bkg_B 0.946 -0.017 0.017
###############################################################
THEORY
asymmetry 1
simpleGss 2 (rate)
TFieldCos fun1 fun2 (phase frequency)
###############################################################
FUNCTIONS
fun1 = par3 + map1
fun2 = gamma_mu * par4
fun3 = par6 * par12
fun4 = par9 * par15
###############################################################
GLOBAL
fittype 0 (single histogram fit)
fit 0.05 10
data 2500 66500 2500 66500
packing 10
###############################################################
RUN 2017/lem17_his_2517 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 5 0 0 0 0 0 0 0 0 0
forward 41 45
norm 6
backgr.fit 7
#-----------------------------------------------
RUN 2017/lem17_his_2517 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 8 0 0 0 0 0 0 0 0 0
forward 42 46
norm 9
backgr.fit 10
#-----------------------------------------------
RUN 2017/lem17_his_2517 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 11 0 0 0 0 0 0 0 0 0
forward 43 47
norm fun3
backgr.fit 13
#-----------------------------------------------
RUN 2017/lem17_his_2517 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 14 0 0 0 0 0 0 0 0 0
forward 44 48
norm fun4
backgr.fit 16
###############################################################
COMMANDS
MAX_LIKELIHOOD
#PRINT_LEVEL 2
MINIMIZE
MINOS
SAVE
###############################################################
PLOT 0 (single histo plot)
lifetimecorrection
runs 1 2 3 4
range 0 10 -0.25 0.25
view_packing 50
###############################################################
FOURIER
units Gauss # units either 'Gauss', 'Tesla', 'MHz', or 'Mc/s'
fourier_power 13
apodization STRONG # NONE, WEAK, MEDIUM, STRONG
plot POWER # REAL, IMAG, REAL_AND_IMAG, POWER, PHASE, PHASE_OPT_REAL
###############################################################
STATISTIC --- 2017-08-04 12:51:58
maxLH = 20794.6, NDF = 20365, maxLH/NDF = 1.021097

View File

@ -0,0 +1,95 @@
YBCO-40nm, T=120.00 K, E=3.79 keV, B=~800(G)/138.41(A), Tr/Sa=12.02/7.29 kV, SR=-10.00
###############################################################
FITPARAMETER
# Nr. Name Value Step Pos_Error Boundaries
1 Asy 0.0813 -0.0024 0.0024
2 Sigma 0.413 -0.022 0.023 0 none
3 Ph 198.9 -3.4 3.4
4 Field 805.18 -0.38 0.38
# L
5 RelPh_L 0 0 none
6 N0_L 50.32 -0.13 0.13
7 N_bkg_L 0.861 -0.017 0.017
# T
8 RelPh_T -87.2 -4.1 4.2
9 N0_T 45.75 -0.12 0.12
10 N_bkg_T 0.826 -0.016 0.016
# R
11 RelPh_R 184.1 -4.0 4.0
12 alpha_LR 0.9898 -0.0036 0.0037
13 N_bkg_R 0.952 -0.017 0.017
# B
14 RelPh_B 94.5 -4.1 4.1
15 alpha_TB 1.1472 -0.0043 0.0043
16 N_bkg_B 0.910 -0.017 0.017
###############################################################
THEORY
asymmetry 1
simpleGss 2 (rate)
TFieldCos fun1 fun2 (phase frequency)
###############################################################
FUNCTIONS
fun1 = par3 + map1
fun2 = gamma_mu * par4
fun3 = par6 * par12
fun4 = par9 * par15
###############################################################
GLOBAL
fittype 0 (single histogram fit)
fit 0.05 10
data 2500 66500 2500 66500
packing 10
###############################################################
RUN 2017/lem17_his_2518 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 5 0 0 0 0 0 0 0 0 0
forward 41 45
norm 6
backgr.fit 7
#-----------------------------------------------
RUN 2017/lem17_his_2518 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 8 0 0 0 0 0 0 0 0 0
forward 42 46
norm 9
backgr.fit 10
#-----------------------------------------------
RUN 2017/lem17_his_2518 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 11 0 0 0 0 0 0 0 0 0
forward 43 47
norm fun3
backgr.fit 13
#-----------------------------------------------
RUN 2017/lem17_his_2518 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 14 0 0 0 0 0 0 0 0 0
forward 44 48
norm fun4
backgr.fit 16
###############################################################
COMMANDS
MAX_LIKELIHOOD
#PRINT_LEVEL 2
MINIMIZE
MINOS
SAVE
###############################################################
PLOT 0 (single histo plot)
lifetimecorrection
runs 1 2 3 4
range 0 10 -0.25 0.25
view_packing 50
###############################################################
FOURIER
units Gauss # units either 'Gauss', 'Tesla', 'MHz', or 'Mc/s'
fourier_power 13
apodization STRONG # NONE, WEAK, MEDIUM, STRONG
plot POWER # REAL, IMAG, REAL_AND_IMAG, POWER, PHASE, PHASE_OPT_REAL
###############################################################
STATISTIC --- 2017-08-04 13:07:03
maxLH = 20946.8, NDF = 20365, maxLH/NDF = 1.028570

View File

@ -0,0 +1,96 @@
YBCO-40nm, T=119.99 K, E=24.26 keV, B=~1500(G)/259.51(A), Tr/Sa=15.02/-9.99 kV, SR=-10.00
###############################################################
FITPARAMETER
# Nr. Name Value Step Pos_Error Boundaries
1 Asy 0.16934 -0.00091 0.00092
2 Sigma 0.0504 -0.0087 0.0076 0 none
3 Ph -151.89 -0.62 0.62
4 Field 1513.140 -0.032 0.032
# L
5 RelPh_L 0 0 none
6 N0_L 199.87 -0.26 0.26
7 N_bkg_L 3.485 -0.033 0.033
# T
8 RelPh_T -91.07 -0.75 0.76
9 N0_T 203.23 -0.26 0.26
10 N_bkg_T 3.652 -0.034 0.034
# R
11 RelPh_R 180.84 -0.77 0.77
12 alpha_LR 1.0068 -0.0019 0.0018
13 N_bkg_R 3.970 -0.034 0.034
# B
14 RelPh_B 88.76 -0.77 0.78
15 alpha_TB 0.9521 -0.0017 0.0018
16 N_bkg_B 3.508 -0.033 0.033
###############################################################
THEORY
asymmetry 1
simpleGss 2 (rate)
TFieldCos fun1 fun2 (phase frequency)
###############################################################
FUNCTIONS
fun1 = par3 + map1
fun2 = gamma_mu * par4
fun3 = par6 * par12
fun4 = par9 * par15
###############################################################
GLOBAL
fittype 0 (single histogram fit)
fit 0.05 10
data 2500 66500 2500 66500
packing 10
###############################################################
RUN 2017/lem17_his_2519 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 5 0 0 0 0 0 0 0 0 0
forward 1 5
norm 6
backgr.fit 7
#-----------------------------------------------
RUN 2017/lem17_his_2519 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 8 0 0 0 0 0 0 0 0 0
forward 2 6
norm 9
backgr.fit 10
#-----------------------------------------------
RUN 2017/lem17_his_2519 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 11 0 0 0 0 0 0 0 0 0
forward 3 7
norm fun3
backgr.fit 13
#-----------------------------------------------
RUN 2017/lem17_his_2519 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 14 0 0 0 0 0 0 0 0 0
forward 4 8
norm fun4
backgr.fit 16
###############################################################
COMMANDS
MAX_LIKELIHOOD
#PRINT_LEVEL 2
MINIMIZE
MINOS
SAVE
###############################################################
PLOT 0 (single histo plot)
lifetimecorrection
runs 1 2 3 4
range 0 10 -0.25 0.25
view_packing 25
###############################################################
FOURIER
units Gauss # units either 'Gauss', 'Tesla', 'MHz', or 'Mc/s'
fourier_power 13
apodization STRONG # NONE, WEAK, MEDIUM, STRONG
plot POWER # REAL, IMAG, REAL_AND_IMAG, POWER, PHASE, PHASE_OPT_REAL
range 0 5000
###############################################################
STATISTIC --- 2017-08-04 14:12:14
maxLH = 20465.5, NDF = 20361, maxLH/NDF = 1.005132

View File

@ -0,0 +1,96 @@
YBCO-40nm, T=120.00 K, E=21.76 keV, B=~1500(G)/259.52(A), Tr/Sa=15.02/-7.50 kV, SR=-10.00
###############################################################
FITPARAMETER
# Nr. Name Value Step Pos_Error Boundaries
1 Asy 0.16434 -0.00091 0.00092
2 Sigma 0.026 -0.026 0.013 0 none
3 Ph -153.67 -0.64 0.63
4 Field 1513.255 -0.033 0.033
# L
5 RelPh_L 0 0 none
6 N0_L 200.43 -0.26 0.26
7 N_bkg_L 3.509 -0.033 0.033
# T
8 RelPh_T -89.10 -0.77 0.78
9 N0_T 203.53 -0.27 0.26
10 N_bkg_T 3.735 -0.034 0.034
# R
11 RelPh_R 180.88 -0.78 0.79
12 alpha_LR 1.0056 -0.0019 0.0018
13 N_bkg_R 3.886 -0.034 0.034
# B
14 RelPh_B 90.92 -0.78 0.79
15 alpha_TB 0.9541 -0.0017 0.0018
16 N_bkg_B 3.605 -0.033 0.033
###############################################################
THEORY
asymmetry 1
simpleGss 2 (rate)
TFieldCos fun1 fun2 (phase frequency)
###############################################################
FUNCTIONS
fun1 = par3 + map1
fun2 = gamma_mu * par4
fun3 = par6 * par12
fun4 = par9 * par15
###############################################################
GLOBAL
fittype 0 (single histogram fit)
fit 0.05 10
data 2500 66500 2500 66500
packing 10
###############################################################
RUN 2017/lem17_his_2520 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 5 0 0 0 0 0 0 0 0 0
forward 1 5
norm 6
backgr.fit 7
#-----------------------------------------------
RUN 2017/lem17_his_2520 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 8 0 0 0 0 0 0 0 0 0
forward 2 6
norm 9
backgr.fit 10
#-----------------------------------------------
RUN 2017/lem17_his_2520 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 11 0 0 0 0 0 0 0 0 0
forward 3 7
norm fun3
backgr.fit 13
#-----------------------------------------------
RUN 2017/lem17_his_2520 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 14 0 0 0 0 0 0 0 0 0
forward 4 8
norm fun4
backgr.fit 16
###############################################################
COMMANDS
MAX_LIKELIHOOD
#PRINT_LEVEL 2
MINIMIZE
MINOS
SAVE
###############################################################
PLOT 0 (single histo plot)
lifetimecorrection
runs 1 2 3 4
range 0 10 -0.25 0.25
view_packing 25
###############################################################
FOURIER
units Gauss # units either 'Gauss', 'Tesla', 'MHz', or 'Mc/s'
fourier_power 13
apodization STRONG # NONE, WEAK, MEDIUM, STRONG
plot POWER # REAL, IMAG, REAL_AND_IMAG, POWER, PHASE, PHASE_OPT_REAL
range 0 5000
###############################################################
STATISTIC --- 2017-08-04 14:12:22
maxLH = 20707.2, NDF = 20361, maxLH/NDF = 1.017003

View File

@ -0,0 +1,96 @@
YBCO-40nm, T=120.01 K, E=19.26 keV, B=~1500(G)/259.52(A), Tr/Sa=15.02/-5.00 kV, SR=-10.00
###############################################################
FITPARAMETER
# Nr. Name Value Step Pos_Error Boundaries
1 Asy 0.16711 -0.00080 0.00081
2 Sigma 0.0619 -0.0063 0.0058 0 none
3 Ph -152.11 -0.54 0.55
4 Field 1513.153 -0.029 0.029
# L
5 RelPh_L 0 0 none
6 N0_L 263.35 -0.29 0.30
7 N_bkg_L 4.647 -0.039 0.038
# T
8 RelPh_T -90.62 -0.68 0.66
9 N0_T 267.77 -0.31 0.30
10 N_bkg_T 4.863 -0.038 0.039
# R
11 RelPh_R 181.79 -0.68 0.66
12 alpha_LR 1.0067 -0.0016 0.0016
13 N_bkg_R 5.119 -0.039 0.039
# B
14 RelPh_B 91.18 -0.70 0.68
15 alpha_TB 0.9525 -0.0015 0.0016
16 N_bkg_B 4.671 -0.038 0.038
###############################################################
THEORY
asymmetry 1
simpleGss 2 (rate)
TFieldCos fun1 fun2 (phase frequency)
###############################################################
FUNCTIONS
fun1 = par3 + map1
fun2 = gamma_mu * par4
fun3 = par6 * par12
fun4 = par9 * par15
###############################################################
GLOBAL
fittype 0 (single histogram fit)
fit 0.05 10
data 2500 66500 2500 66500
packing 10
###############################################################
RUN 2017/lem17_his_2521 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 5 0 0 0 0 0 0 0 0 0
forward 1 5
norm 6
backgr.fit 7
#-----------------------------------------------
RUN 2017/lem17_his_2521 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 8 0 0 0 0 0 0 0 0 0
forward 2 6
norm 9
backgr.fit 10
#-----------------------------------------------
RUN 2017/lem17_his_2521 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 11 0 0 0 0 0 0 0 0 0
forward 3 7
norm fun3
backgr.fit 13
#-----------------------------------------------
RUN 2017/lem17_his_2521 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 14 0 0 0 0 0 0 0 0 0
forward 4 8
norm fun4
backgr.fit 16
###############################################################
COMMANDS
MAX_LIKELIHOOD
#PRINT_LEVEL 2
MINIMIZE
MINOS
SAVE
###############################################################
PLOT 0 (single histo plot)
lifetimecorrection
runs 1 2 3 4
range 0 10 -0.25 0.25
view_packing 25
###############################################################
FOURIER
units Gauss # units either 'Gauss', 'Tesla', 'MHz', or 'Mc/s'
fourier_power 13
apodization STRONG # NONE, WEAK, MEDIUM, STRONG
plot POWER # REAL, IMAG, REAL_AND_IMAG, POWER, PHASE, PHASE_OPT_REAL
range 0 5000
###############################################################
STATISTIC --- 2017-08-04 14:44:54
maxLH = 20572.5, NDF = 20361, maxLH/NDF = 1.010389

View File

@ -0,0 +1,96 @@
YBCO-40nm, T=120.00 K, E=16.76 keV, B=~1500(G)/259.52(A), Tr/Sa=15.02/-2.50 kV, SR=-10.00
###############################################################
FITPARAMETER
# Nr. Name Value Step Pos_Error Boundaries
1 Asy 0.16787 -0.00080 0.00080
2 Sigma 0.0558 -0.0069 0.0063 0 none
3 Ph -151.23 -0.54 0.54
4 Field 1513.118 -0.029 0.029
# L
5 RelPh_L 0 0 none
6 N0_L 263.47 -0.30 0.30
7 N_bkg_L 4.654 -0.038 0.038
# T
8 RelPh_T -91.14 -0.66 0.67
9 N0_T 268.17 -0.30 0.30
10 N_bkg_T 4.819 -0.039 0.039
# R
11 RelPh_R 181.17 -0.67 0.68
12 alpha_LR 1.0052 -0.0016 0.0016
13 N_bkg_R 5.111 -0.039 0.039
# B
14 RelPh_B 90.72 -0.67 0.68
15 alpha_TB 0.9499 -0.0015 0.0015
16 N_bkg_B 4.647 -0.038 0.038
###############################################################
THEORY
asymmetry 1
simpleGss 2 (rate)
TFieldCos fun1 fun2 (phase frequency)
###############################################################
FUNCTIONS
fun1 = par3 + map1
fun2 = gamma_mu * par4
fun3 = par6 * par12
fun4 = par9 * par15
###############################################################
GLOBAL
fittype 0 (single histogram fit)
fit 0.05 10
data 2500 66500 2500 66500
packing 10
###############################################################
RUN 2017/lem17_his_2522 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 5 0 0 0 0 0 0 0 0 0
forward 1 5
norm 6
backgr.fit 7
#-----------------------------------------------
RUN 2017/lem17_his_2522 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 8 0 0 0 0 0 0 0 0 0
forward 2 6
norm 9
backgr.fit 10
#-----------------------------------------------
RUN 2017/lem17_his_2522 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 11 0 0 0 0 0 0 0 0 0
forward 3 7
norm fun3
backgr.fit 13
#-----------------------------------------------
RUN 2017/lem17_his_2522 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 14 0 0 0 0 0 0 0 0 0
forward 4 8
norm fun4
backgr.fit 16
###############################################################
COMMANDS
MAX_LIKELIHOOD
#PRINT_LEVEL 2
MINIMIZE
MINOS
SAVE
###############################################################
PLOT 0 (single histo plot)
lifetimecorrection
runs 1 2 3 4
range 0 10 -0.25 0.25
view_packing 25
###############################################################
FOURIER
units Gauss # units either 'Gauss', 'Tesla', 'MHz', or 'Mc/s'
fourier_power 13
apodization STRONG # NONE, WEAK, MEDIUM, STRONG
plot POWER # REAL, IMAG, REAL_AND_IMAG, POWER, PHASE, PHASE_OPT_REAL
range 0 5000
###############################################################
STATISTIC --- 2017-08-04 15:33:57
maxLH = 20241.8, NDF = 20361, maxLH/NDF = 0.994146

View File

@ -0,0 +1,96 @@
YBCO-40nm, T=120.00 K, E=14.26 keV, B=~1500(G)/259.52(A), Tr/Sa=15.02/0.00 kV, SR=-10.00
###############################################################
FITPARAMETER
# Nr. Name Value Step Pos_Error Boundaries
1 Asy 0.16521 -0.00080 0.00080
2 Sigma 0.0583 -0.0067 0.0061 0 none
3 Ph -151.61 -0.56 0.55
4 Field 1513.082 -0.029 0.029
# L
5 RelPh_L 0 0 none
6 N0_L 263.39 -0.30 0.30
7 N_bkg_L 4.560 -0.038 0.038
# T
8 RelPh_T -89.15 -0.68 0.68
9 N0_T 267.35 -0.30 0.30
10 N_bkg_T 4.938 -0.039 0.039
# R
11 RelPh_R 180.19 -0.68 0.69
12 alpha_LR 1.0052 -0.0016 0.0016
13 N_bkg_R 5.079 -0.039 0.039
# B
14 RelPh_B 89.84 -0.69 0.69
15 alpha_TB 0.9533 -0.0015 0.0015
16 N_bkg_B 4.604 -0.038 0.038
###############################################################
THEORY
asymmetry 1
simpleGss 2 (rate)
TFieldCos fun1 fun2 (phase frequency)
###############################################################
FUNCTIONS
fun1 = par3 + map1
fun2 = gamma_mu * par4
fun3 = par6 * par12
fun4 = par9 * par15
###############################################################
GLOBAL
fittype 0 (single histogram fit)
fit 0.05 10
data 2500 66500 2500 66500
packing 10
###############################################################
RUN 2017/lem17_his_2523 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 5 0 0 0 0 0 0 0 0 0
forward 1 5
norm 6
backgr.fit 7
#-----------------------------------------------
RUN 2017/lem17_his_2523 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 8 0 0 0 0 0 0 0 0 0
forward 2 6
norm 9
backgr.fit 10
#-----------------------------------------------
RUN 2017/lem17_his_2523 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 11 0 0 0 0 0 0 0 0 0
forward 3 7
norm fun3
backgr.fit 13
#-----------------------------------------------
RUN 2017/lem17_his_2523 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 14 0 0 0 0 0 0 0 0 0
forward 4 8
norm fun4
backgr.fit 16
###############################################################
COMMANDS
MAX_LIKELIHOOD
#PRINT_LEVEL 2
MINIMIZE
MINOS
SAVE
###############################################################
PLOT 0 (single histo plot)
lifetimecorrection
runs 1 2 3 4
range 0 10 -0.25 0.25
view_packing 25
###############################################################
FOURIER
units Gauss # units either 'Gauss', 'Tesla', 'MHz', or 'Mc/s'
fourier_power 13
apodization STRONG # NONE, WEAK, MEDIUM, STRONG
plot POWER # REAL, IMAG, REAL_AND_IMAG, POWER, PHASE, PHASE_OPT_REAL
range 0 5000
###############################################################
STATISTIC --- 2017-08-04 15:34:11
maxLH = 20791.3, NDF = 20361, maxLH/NDF = 1.021131

View File

@ -0,0 +1,96 @@
YBCO-40nm, T=120.00 K, E=11.77 keV, B=~1500(G)/259.52(A), Tr/Sa=15.02/2.50 kV, SR=-10.00
###############################################################
FITPARAMETER
# Nr. Name Value Step Pos_Error Boundaries
1 Asy 0.16487 -0.00080 0.00080
2 Sigma 0.0676 -0.0058 0.0054 0 none
3 Ph -151.23 -0.55 0.57
4 Field 1513.098 -0.030 0.030
# L
5 RelPh_L 0 0 none
6 N0_L 263.64 -0.30 0.30
7 N_bkg_L 4.523 -0.038 0.038
# T
8 RelPh_T -90.51 -0.69 0.67
9 N0_T 267.28 -0.30 0.30
10 N_bkg_T 4.806 -0.038 0.039
# R
11 RelPh_R 180.31 -0.70 0.68
12 alpha_LR 0.9997 -0.0016 0.0016
13 N_bkg_R 5.061 -0.039 0.039
# B
14 RelPh_B 90.13 -0.71 0.69
15 alpha_TB 0.9485 -0.0015 0.0015
16 N_bkg_B 4.654 -0.038 0.038
###############################################################
THEORY
asymmetry 1
simpleGss 2 (rate)
TFieldCos fun1 fun2 (phase frequency)
###############################################################
FUNCTIONS
fun1 = par3 + map1
fun2 = gamma_mu * par4
fun3 = par6 * par12
fun4 = par9 * par15
###############################################################
GLOBAL
fittype 0 (single histogram fit)
fit 0.05 10
data 2500 66500 2500 66500
packing 10
###############################################################
RUN 2017/lem17_his_2524 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 5 0 0 0 0 0 0 0 0 0
forward 1 5
norm 6
backgr.fit 7
#-----------------------------------------------
RUN 2017/lem17_his_2524 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 8 0 0 0 0 0 0 0 0 0
forward 2 6
norm 9
backgr.fit 10
#-----------------------------------------------
RUN 2017/lem17_his_2524 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 11 0 0 0 0 0 0 0 0 0
forward 3 7
norm fun3
backgr.fit 13
#-----------------------------------------------
RUN 2017/lem17_his_2524 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 14 0 0 0 0 0 0 0 0 0
forward 4 8
norm fun4
backgr.fit 16
###############################################################
COMMANDS
MAX_LIKELIHOOD
#PRINT_LEVEL 2
MINIMIZE
MINOS
SAVE
###############################################################
PLOT 0 (single histo plot)
lifetimecorrection
runs 1 2 3 4
range 0 10 -0.25 0.25
view_packing 25
###############################################################
FOURIER
units Gauss # units either 'Gauss', 'Tesla', 'MHz', or 'Mc/s'
fourier_power 13
apodization STRONG # NONE, WEAK, MEDIUM, STRONG
plot POWER # REAL, IMAG, REAL_AND_IMAG, POWER, PHASE, PHASE_OPT_REAL
range 0 5000
###############################################################
STATISTIC --- 2017-08-04 16:00:09
maxLH = 20278.6, NDF = 20361, maxLH/NDF = 0.995951

View File

@ -0,0 +1,96 @@
YBCO-40nm, T=120.01 K, E=9.26 keV, B=~1500(G)/259.52(A), Tr/Sa=15.02/5.00 kV, SR=-10.00
###############################################################
FITPARAMETER
# Nr. Name Value Step Pos_Error Boundaries
1 Asy 0.16393 -0.00081 0.00080
2 Sigma 0.0771 -0.0053 0.0050 0 none
3 Ph -152.46 -0.57 0.56
4 Field 1513.117 -0.031 0.031
# L
5 RelPh_L 0 0 none
6 N0_L 263.73 -0.30 0.30
7 N_bkg_L 4.689 -0.039 0.038
# T
8 RelPh_T -89.47 -0.69 0.69
9 N0_T 269.40 -0.30 0.30
10 N_bkg_T 4.741 -0.039 0.039
# R
11 RelPh_R 181.18 -0.69 0.69
12 alpha_LR 1.0054 -0.0016 0.0016
13 N_bkg_R 4.991 -0.039 0.039
# B
14 RelPh_B 91.51 -0.71 0.71
15 alpha_TB 0.9437 -0.0015 0.0015
16 N_bkg_B 4.576 -0.038 0.038
###############################################################
THEORY
asymmetry 1
simpleGss 2 (rate)
TFieldCos fun1 fun2 (phase frequency)
###############################################################
FUNCTIONS
fun1 = par3 + map1
fun2 = gamma_mu * par4
fun3 = par6 * par12
fun4 = par9 * par15
###############################################################
GLOBAL
fittype 0 (single histogram fit)
fit 0.05 10
data 2500 66500 2500 66500
packing 10
###############################################################
RUN 2017/lem17_his_2525 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 5 0 0 0 0 0 0 0 0 0
forward 1 5
norm 6
backgr.fit 7
#-----------------------------------------------
RUN 2017/lem17_his_2525 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 8 0 0 0 0 0 0 0 0 0
forward 2 6
norm 9
backgr.fit 10
#-----------------------------------------------
RUN 2017/lem17_his_2525 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 11 0 0 0 0 0 0 0 0 0
forward 3 7
norm fun3
backgr.fit 13
#-----------------------------------------------
RUN 2017/lem17_his_2525 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 14 0 0 0 0 0 0 0 0 0
forward 4 8
norm fun4
backgr.fit 16
###############################################################
COMMANDS
MAX_LIKELIHOOD
#PRINT_LEVEL 2
MINIMIZE
MINOS
SAVE
###############################################################
PLOT 0 (single histo plot)
lifetimecorrection
runs 1 2 3 4
range 0 10 -0.25 0.25
view_packing 25
###############################################################
FOURIER
units Gauss # units either 'Gauss', 'Tesla', 'MHz', or 'Mc/s'
fourier_power 13
apodization STRONG # NONE, WEAK, MEDIUM, STRONG
plot POWER # REAL, IMAG, REAL_AND_IMAG, POWER, PHASE, PHASE_OPT_REAL
range 0 5000
###############################################################
STATISTIC --- 2017-08-04 16:11:03
maxLH = 20462.3, NDF = 20361, maxLH/NDF = 1.004973

View File

@ -0,0 +1,96 @@
YBCO-40nm, T=120.00 K, E=6.77 keV, B=~1500(G)/259.53(A), Tr/Sa=15.02/7.50 kV, SR=-10.00
###############################################################
FITPARAMETER
# Nr. Name Value Step Pos_Error Boundaries
1 Asy 0.15957 -0.00081 0.00081
2 Sigma 0.0741 -0.0057 0.0053 0 none
3 Ph -151.80 -0.58 0.58
4 Field 1513.059 -0.031 0.031
# L
5 RelPh_L 0 0 none
6 N0_L 263.18 -0.30 0.30
7 N_bkg_L 4.709 -0.038 0.039
# T
8 RelPh_T -90.14 -0.71 0.71
9 N0_T 269.04 -0.30 0.30
10 N_bkg_T 4.836 -0.039 0.039
# R
11 RelPh_R 180.64 -0.71 0.71
12 alpha_LR 1.0099 -0.0016 0.0016
13 N_bkg_R 5.117 -0.039 0.039
# B
14 RelPh_B 90.77 -0.72 0.73
15 alpha_TB 0.9449 -0.0015 0.0015
16 N_bkg_B 4.699 -0.038 0.038
###############################################################
THEORY
asymmetry 1
simpleGss 2 (rate)
TFieldCos fun1 fun2 (phase frequency)
###############################################################
FUNCTIONS
fun1 = par3 + map1
fun2 = gamma_mu * par4
fun3 = par6 * par12
fun4 = par9 * par15
###############################################################
GLOBAL
fittype 0 (single histogram fit)
fit 0.05 10
data 2500 66500 2500 66500
packing 10
###############################################################
RUN 2017/lem17_his_2526 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 5 0 0 0 0 0 0 0 0 0
forward 1 5
norm 6
backgr.fit 7
#-----------------------------------------------
RUN 2017/lem17_his_2526 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 8 0 0 0 0 0 0 0 0 0
forward 2 6
norm 9
backgr.fit 10
#-----------------------------------------------
RUN 2017/lem17_his_2526 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 11 0 0 0 0 0 0 0 0 0
forward 3 7
norm fun3
backgr.fit 13
#-----------------------------------------------
RUN 2017/lem17_his_2526 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 14 0 0 0 0 0 0 0 0 0
forward 4 8
norm fun4
backgr.fit 16
###############################################################
COMMANDS
MAX_LIKELIHOOD
#PRINT_LEVEL 2
MINIMIZE
MINOS
SAVE
###############################################################
PLOT 0 (single histo plot)
lifetimecorrection
runs 1 2 3 4
range 0 10 -0.25 0.25
view_packing 25
###############################################################
FOURIER
units Gauss # units either 'Gauss', 'Tesla', 'MHz', or 'Mc/s'
fourier_power 13
apodization STRONG # NONE, WEAK, MEDIUM, STRONG
plot POWER # REAL, IMAG, REAL_AND_IMAG, POWER, PHASE, PHASE_OPT_REAL
range 0 5000
###############################################################
STATISTIC --- 2017-08-04 16:30:13
maxLH = 20674.9, NDF = 20361, maxLH/NDF = 1.015416

View File

@ -0,0 +1,96 @@
YBCO-40nm, T=120.00 K, E=4.27 keV, B=~1500(G)/259.52(A), Tr/Sa=15.02/9.99 kV, SR=-10.00
###############################################################
FITPARAMETER
# Nr. Name Value Step Pos_Error Boundaries
1 Asy 0.15359 -0.00081 0.00081
2 Sigma 0.0709 -0.0062 0.0058 0 none
3 Ph -149.66 -0.60 0.59
4 Field 1513.069 -0.032 0.032
# L
5 RelPh_L 0 0 none
6 N0_L 263.72 -0.30 0.30
7 N_bkg_L 4.660 -0.038 0.038
# T
8 RelPh_T -92.13 -0.73 0.74
9 N0_T 269.60 -0.30 0.30
10 N_bkg_T 4.893 -0.039 0.039
# R
11 RelPh_R 180.65 -0.74 0.75
12 alpha_LR 1.0030 -0.0016 0.0016
13 N_bkg_R 5.050 -0.039 0.039
# B
14 RelPh_B 88.51 -0.75 0.76
15 alpha_TB 0.9391 -0.0015 0.0015
16 N_bkg_B 4.642 -0.038 0.038
###############################################################
THEORY
asymmetry 1
simpleGss 2 (rate)
TFieldCos fun1 fun2 (phase frequency)
###############################################################
FUNCTIONS
fun1 = par3 + map1
fun2 = gamma_mu * par4
fun3 = par6 * par12
fun4 = par9 * par15
###############################################################
GLOBAL
fittype 0 (single histogram fit)
fit 0.05 10
data 2500 66500 2500 66500
packing 10
###############################################################
RUN 2017/lem17_his_2527 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 5 0 0 0 0 0 0 0 0 0
forward 1 5
norm 6
backgr.fit 7
#-----------------------------------------------
RUN 2017/lem17_his_2527 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 8 0 0 0 0 0 0 0 0 0
forward 2 6
norm 9
backgr.fit 10
#-----------------------------------------------
RUN 2017/lem17_his_2527 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 11 0 0 0 0 0 0 0 0 0
forward 3 7
norm fun3
backgr.fit 13
#-----------------------------------------------
RUN 2017/lem17_his_2527 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 14 0 0 0 0 0 0 0 0 0
forward 4 8
norm fun4
backgr.fit 16
###############################################################
COMMANDS
MAX_LIKELIHOOD
#PRINT_LEVEL 2
MINIMIZE
MINOS
SAVE
###############################################################
PLOT 0 (single histo plot)
lifetimecorrection
runs 1 2 3 4
range 0 10 -0.25 0.25
view_packing 25
###############################################################
FOURIER
units Gauss # units either 'Gauss', 'Tesla', 'MHz', or 'Mc/s'
fourier_power 13
apodization STRONG # NONE, WEAK, MEDIUM, STRONG
plot POWER # REAL, IMAG, REAL_AND_IMAG, POWER, PHASE, PHASE_OPT_REAL
range 0 5000
###############################################################
STATISTIC --- 2017-08-04 16:50:47
maxLH = 20689.6, NDF = 20361, maxLH/NDF = 1.016138

View File

@ -0,0 +1,96 @@
YBCO-40nm, T=5.01 K, E=5.27 keV, B=~1500(G)/259.52(A), Tr/Sa=15.02/9.00 kV, SR=-10.00
###############################################################
FITPARAMETER
# Nr. Name Value Step Pos_Error Boundaries
1 Asy 0.1307 -0.0018 0.0018
2 Sigma 1.276 -0.025 0.025 0 none
3 Ph -139.5 -1.5 1.4
4 Field 1504.23 -0.39 0.40
# L
5 RelPh_L 0 0 none
6 N0_L 262.85 -0.30 0.30
7 N_bkg_L 4.611 -0.038 0.038
# T
8 RelPh_T -87.5 -1.7 1.7
9 N0_T 269.20 -0.30 0.30
10 N_bkg_T 4.830 -0.039 0.039
# R
11 RelPh_R 178.1 -1.7 1.7
12 alpha_LR 1.0069 -0.0016 0.0016
13 N_bkg_R 5.114 -0.039 0.039
# B
14 RelPh_B 89.6 -1.7 1.7
15 alpha_TB 0.9394 -0.0015 0.0015
16 N_bkg_B 4.564 -0.038 0.038
###############################################################
THEORY
asymmetry 1
simpleGss 2 (rate)
TFieldCos fun1 fun2 (phase frequency)
###############################################################
FUNCTIONS
fun1 = par3 + map1
fun2 = gamma_mu * par4
fun3 = par6 * par12
fun4 = par9 * par15
###############################################################
GLOBAL
fittype 0 (single histogram fit)
fit 0.05 10
data 2500 66500 2500 66500
packing 10
###############################################################
RUN 2017/lem17_his_2528 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 5 0 0 0 0 0 0 0 0 0
forward 1 5
norm 6
backgr.fit 7
#-----------------------------------------------
RUN 2017/lem17_his_2528 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 8 0 0 0 0 0 0 0 0 0
forward 2 6
norm 9
backgr.fit 10
#-----------------------------------------------
RUN 2017/lem17_his_2528 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 11 0 0 0 0 0 0 0 0 0
forward 3 7
norm fun3
backgr.fit 13
#-----------------------------------------------
RUN 2017/lem17_his_2528 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 14 0 0 0 0 0 0 0 0 0
forward 4 8
norm fun4
backgr.fit 16
###############################################################
COMMANDS
MAX_LIKELIHOOD
#PRINT_LEVEL 2
MINIMIZE
MINOS
SAVE
###############################################################
PLOT 0 (single histo plot)
lifetimecorrection
runs 1 2 3 4
range 0 10 -0.25 0.25
view_packing 25
###############################################################
FOURIER
units Gauss # units either 'Gauss', 'Tesla', 'MHz', or 'Mc/s'
fourier_power 13
apodization STRONG # NONE, WEAK, MEDIUM, STRONG
plot POWER # REAL, IMAG, REAL_AND_IMAG, POWER, PHASE, PHASE_OPT_REAL
range 0 5000
###############################################################
STATISTIC --- 2017-08-04 18:08:23
maxLH = 20497.6, NDF = 20361, maxLH/NDF = 1.006707

View File

@ -0,0 +1,96 @@
YBCO-40nm, T=5.00 K, E=6.77 keV, B=~1500(G)/259.52(A), Tr/Sa=15.02/7.50 kV, SR=-10.00
###############################################################
FITPARAMETER
# Nr. Name Value Step Pos_Error Boundaries
1 Asy 0.1285 -0.0018 0.0017
2 Sigma 1.295 -0.025 0.025 0 none
3 Ph -143.0 -1.5 1.5
4 Field 1507.23 -0.40 0.40
# L
5 RelPh_L 0 0 none
6 N0_L 262.67 -0.30 0.30
7 N_bkg_L 4.636 -0.038 0.038
# T
8 RelPh_T -91.3 -1.7 1.7
9 N0_T 268.61 -0.30 0.30
10 N_bkg_T 4.840 -0.039 0.039
# R
11 RelPh_R 178.3 -1.7 1.7
12 alpha_LR 1.0105 -0.0016 0.0016
13 N_bkg_R 5.149 -0.039 0.039
# B
14 RelPh_B 88.5 -1.8 1.8
15 alpha_TB 0.9447 -0.0015 0.0015
16 N_bkg_B 4.557 -0.038 0.038
###############################################################
THEORY
asymmetry 1
simpleGss 2 (rate)
TFieldCos fun1 fun2 (phase frequency)
###############################################################
FUNCTIONS
fun1 = par3 + map1
fun2 = gamma_mu * par4
fun3 = par6 * par12
fun4 = par9 * par15
###############################################################
GLOBAL
fittype 0 (single histogram fit)
fit 0.05 10
data 2500 66500 2500 66500
packing 10
###############################################################
RUN 2017/lem17_his_2529 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 5 0 0 0 0 0 0 0 0 0
forward 1 5
norm 6
backgr.fit 7
#-----------------------------------------------
RUN 2017/lem17_his_2529 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 8 0 0 0 0 0 0 0 0 0
forward 2 6
norm 9
backgr.fit 10
#-----------------------------------------------
RUN 2017/lem17_his_2529 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 11 0 0 0 0 0 0 0 0 0
forward 3 7
norm fun3
backgr.fit 13
#-----------------------------------------------
RUN 2017/lem17_his_2529 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 14 0 0 0 0 0 0 0 0 0
forward 4 8
norm fun4
backgr.fit 16
###############################################################
COMMANDS
MAX_LIKELIHOOD
#PRINT_LEVEL 2
MINIMIZE
MINOS
SAVE
###############################################################
PLOT 0 (single histo plot)
lifetimecorrection
runs 1 2 3 4
range 0 10 -0.25 0.25
view_packing 25
###############################################################
FOURIER
units Gauss # units either 'Gauss', 'Tesla', 'MHz', or 'Mc/s'
fourier_power 13
apodization STRONG # NONE, WEAK, MEDIUM, STRONG
plot POWER # REAL, IMAG, REAL_AND_IMAG, POWER, PHASE, PHASE_OPT_REAL
range 0 5000
###############################################################
STATISTIC --- 2017-08-04 18:37:23
maxLH = 20497.7, NDF = 20361, maxLH/NDF = 1.006713

View File

@ -0,0 +1,96 @@
YBCO-40nm, T=4.99 K, E=9.26 keV, B=~1500(G)/259.53(A), Tr/Sa=15.02/5.00 kV, SR=-10.00
###############################################################
FITPARAMETER
# Nr. Name Value Step Pos_Error Boundaries
1 Asy 0.1268 -0.0017 0.0017
2 Sigma 1.170 -0.022 0.022 0 none
3 Ph -146.0 -1.5 1.4
4 Field 1511.56 -0.37 0.38
# L
5 RelPh_L 0 0 none
6 N0_L 248.36 -0.30 0.30
7 N_bkg_L 6.824 -0.041 0.041
# T
8 RelPh_T -96.6 -1.7 1.7
9 N0_T 254.82 -0.30 0.30
10 N_bkg_T 7.073 -0.042 0.042
# R
11 RelPh_R 177.1 -1.7 1.7
12 alpha_LR 1.0124 -0.0017 0.0017
13 N_bkg_R 7.658 -0.043 0.042
# B
14 RelPh_B 84.5 -1.8 1.8
15 alpha_TB 0.9465 -0.0016 0.0016
16 N_bkg_B 6.801 -0.041 0.041
###############################################################
THEORY
asymmetry 1
simpleGss 2 (rate)
TFieldCos fun1 fun2 (phase frequency)
###############################################################
FUNCTIONS
fun1 = par3 + map1
fun2 = gamma_mu * par4
fun3 = par6 * par12
fun4 = par9 * par15
###############################################################
GLOBAL
fittype 0 (single histogram fit)
fit 0.05 10
data 2500 66500 2500 66500
packing 10
###############################################################
RUN 2017/lem17_his_2530 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 5 0 0 0 0 0 0 0 0 0
forward 1 5
norm 6
backgr.fit 7
#-----------------------------------------------
RUN 2017/lem17_his_2530 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 8 0 0 0 0 0 0 0 0 0
forward 2 6
norm 9
backgr.fit 10
#-----------------------------------------------
RUN 2017/lem17_his_2530 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 11 0 0 0 0 0 0 0 0 0
forward 3 7
norm fun3
backgr.fit 13
#-----------------------------------------------
RUN 2017/lem17_his_2530 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 14 0 0 0 0 0 0 0 0 0
forward 4 8
norm fun4
backgr.fit 16
###############################################################
COMMANDS
MAX_LIKELIHOOD
#PRINT_LEVEL 2
MINIMIZE
MINOS
SAVE
###############################################################
PLOT 0 (single histo plot)
lifetimecorrection
runs 1 2 3 4
range 0 10 -0.25 0.25
view_packing 25
###############################################################
FOURIER
units Gauss # units either 'Gauss', 'Tesla', 'MHz', or 'Mc/s'
fourier_power 13
apodization STRONG # NONE, WEAK, MEDIUM, STRONG
plot POWER # REAL, IMAG, REAL_AND_IMAG, POWER, PHASE, PHASE_OPT_REAL
range 0 5000
###############################################################
STATISTIC --- 2017-08-04 20:04:38
maxLH = 20224.1, NDF = 20361, maxLH/NDF = 0.993277

View File

@ -0,0 +1,96 @@
YBCO-40nm, T=5.00 K, E=11.76 keV, B=~1500(G)/259.51(A), Tr/Sa=15.02/2.50 kV, SR=-10.00
###############################################################
FITPARAMETER
# Nr. Name Value Step Pos_Error Boundaries
1 Asy 0.1140 -0.0014 0.0014
2 Sigma 0.804 -0.016 0.016 0 none
3 Ph -151.3 -1.3 1.3
4 Field 1514.28 -0.24 0.24
# L
5 RelPh_L 0 0 none
6 N0_L 263.05 -0.30 0.30
7 N_bkg_L 4.629 -0.038 0.038
# T
8 RelPh_T -89.2 -1.6 1.6
9 N0_T 267.73 -0.30 0.30
10 N_bkg_T 4.794 -0.039 0.039
# R
11 RelPh_R 181.6 -1.6 1.6
12 alpha_LR 1.0108 -0.0016 0.0016
13 N_bkg_R 5.149 -0.039 0.039
# B
14 RelPh_B 87.1 -1.6 1.6
15 alpha_TB 0.9522 -0.0015 0.0015
16 N_bkg_B 4.666 -0.038 0.038
###############################################################
THEORY
asymmetry 1
simpleGss 2 (rate)
TFieldCos fun1 fun2 (phase frequency)
###############################################################
FUNCTIONS
fun1 = par3 + map1
fun2 = gamma_mu * par4
fun3 = par6 * par12
fun4 = par9 * par15
###############################################################
GLOBAL
fittype 0 (single histogram fit)
fit 0.05 10
data 2500 66500 2500 66500
packing 10
###############################################################
RUN 2017/lem17_his_2531 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 5 0 0 0 0 0 0 0 0 0
forward 1 5
norm 6
backgr.fit 7
#-----------------------------------------------
RUN 2017/lem17_his_2531 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 8 0 0 0 0 0 0 0 0 0
forward 2 6
norm 9
backgr.fit 10
#-----------------------------------------------
RUN 2017/lem17_his_2531 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 11 0 0 0 0 0 0 0 0 0
forward 3 7
norm fun3
backgr.fit 13
#-----------------------------------------------
RUN 2017/lem17_his_2531 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 14 0 0 0 0 0 0 0 0 0
forward 4 8
norm fun4
backgr.fit 16
###############################################################
COMMANDS
MAX_LIKELIHOOD
#PRINT_LEVEL 2
MINIMIZE
MINOS
SAVE
###############################################################
PLOT 0 (single histo plot)
lifetimecorrection
runs 1 2 3 4
range 0 10 -0.25 0.25
view_packing 25
###############################################################
FOURIER
units Gauss # units either 'Gauss', 'Tesla', 'MHz', or 'Mc/s'
fourier_power 13
apodization STRONG # NONE, WEAK, MEDIUM, STRONG
plot POWER # REAL, IMAG, REAL_AND_IMAG, POWER, PHASE, PHASE_OPT_REAL
range 0 5000
###############################################################
STATISTIC --- 2017-08-04 19:29:38
maxLH = 20587.8, NDF = 20361, maxLH/NDF = 1.011140

View File

@ -0,0 +1,96 @@
YBCO-40nm, T=5.00 K, E=14.27 keV, B=~1500(G)/259.53(A), Tr/Sa=15.02/-0.00 kV, SR=-10.00
###############################################################
FITPARAMETER
# Nr. Name Value Step Pos_Error Boundaries
1 Asy 0.1108 -0.0013 0.0013
2 Sigma 0.566 -0.012 0.012 0 none
3 Ph -152.2 -1.2 1.2
4 Field 1515.19 -0.16 0.16
# L
5 RelPh_L 0 0 none
6 N0_L 262.77 -0.30 0.30
7 N_bkg_L 4.568 -0.038 0.038
# T
8 RelPh_T -90.5 -1.4 1.4
9 N0_T 266.86 -0.30 0.30
10 N_bkg_T 4.788 -0.039 0.039
# R
11 RelPh_R 179.8 -1.4 1.4
12 alpha_LR 1.0129 -0.0016 0.0016
13 N_bkg_R 5.145 -0.040 0.039
# B
14 RelPh_B 89.5 -1.5 1.5
15 alpha_TB 0.9534 -0.0015 0.0015
16 N_bkg_B 4.670 -0.038 0.038
###############################################################
THEORY
asymmetry 1
simpleGss 2 (rate)
TFieldCos fun1 fun2 (phase frequency)
###############################################################
FUNCTIONS
fun1 = par3 + map1
fun2 = gamma_mu * par4
fun3 = par6 * par12
fun4 = par9 * par15
###############################################################
GLOBAL
fittype 0 (single histogram fit)
fit 0.05 10
data 2500 66500 2500 66500
packing 10
###############################################################
RUN 2017/lem17_his_2532 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 5 0 0 0 0 0 0 0 0 0
forward 1 5
norm 6
backgr.fit 7
#-----------------------------------------------
RUN 2017/lem17_his_2532 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 8 0 0 0 0 0 0 0 0 0
forward 2 6
norm 9
backgr.fit 10
#-----------------------------------------------
RUN 2017/lem17_his_2532 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 11 0 0 0 0 0 0 0 0 0
forward 3 7
norm fun3
backgr.fit 13
#-----------------------------------------------
RUN 2017/lem17_his_2532 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 14 0 0 0 0 0 0 0 0 0
forward 4 8
norm fun4
backgr.fit 16
###############################################################
COMMANDS
MAX_LIKELIHOOD
#PRINT_LEVEL 2
MINIMIZE
MINOS
SAVE
###############################################################
PLOT 0 (single histo plot)
lifetimecorrection
runs 1 2 3 4
range 0 10 -0.25 0.25
view_packing 25
###############################################################
FOURIER
units Gauss # units either 'Gauss', 'Tesla', 'MHz', or 'Mc/s'
fourier_power 13
apodization STRONG # NONE, WEAK, MEDIUM, STRONG
plot POWER # REAL, IMAG, REAL_AND_IMAG, POWER, PHASE, PHASE_OPT_REAL
range 0 5000
###############################################################
STATISTIC --- 2017-08-04 20:03:55
maxLH = 20578.7, NDF = 20361, maxLH/NDF = 1.010691

View File

@ -0,0 +1,96 @@
YBCO-40nm, T=4.99 K, E=16.76 keV, B=~1500(G)/259.52(A), Tr/Sa=15.02/-2.50 kV, SR=-10.00
###############################################################
FITPARAMETER
# Nr. Name Value Step Pos_Error Boundaries
1 Asy 0.1072 -0.0011 0.0011
2 Sigma 0.4180 -0.0089 0.0090 0 none
3 Ph -149.2 -1.1 1.1
4 Field 1514.96 -0.12 0.12
# L
5 RelPh_L 0 0 none
6 N0_L 263.94 -0.30 0.30
7 N_bkg_L 4.515 -0.038 0.038
# T
8 RelPh_T -94.2 -1.3 1.3
9 N0_T 264.28 -0.30 0.30
10 N_bkg_T 4.805 -0.039 0.039
# R
11 RelPh_R 177.3 -1.4 1.4
12 alpha_LR 1.0129 -0.0016 0.0016
13 N_bkg_R 5.059 -0.039 0.039
# B
14 RelPh_B 87.9 -1.4 1.4
15 alpha_TB 0.9694 -0.0016 0.0016
16 N_bkg_B 4.635 -0.038 0.038
###############################################################
THEORY
asymmetry 1
simpleGss 2 (rate)
TFieldCos fun1 fun2 (phase frequency)
###############################################################
FUNCTIONS
fun1 = par3 + map1
fun2 = gamma_mu * par4
fun3 = par6 * par12
fun4 = par9 * par15
###############################################################
GLOBAL
fittype 0 (single histogram fit)
fit 0.05 10
data 2500 66500 2500 66500
packing 10
###############################################################
RUN 2017/lem17_his_2533 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 5 0 0 0 0 0 0 0 0 0
forward 1 5
norm 6
backgr.fit 7
#-----------------------------------------------
RUN 2017/lem17_his_2533 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 8 0 0 0 0 0 0 0 0 0
forward 2 6
norm 9
backgr.fit 10
#-----------------------------------------------
RUN 2017/lem17_his_2533 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 11 0 0 0 0 0 0 0 0 0
forward 3 7
norm fun3
backgr.fit 13
#-----------------------------------------------
RUN 2017/lem17_his_2533 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 14 0 0 0 0 0 0 0 0 0
forward 4 8
norm fun4
backgr.fit 16
###############################################################
COMMANDS
MAX_LIKELIHOOD
#PRINT_LEVEL 2
MINIMIZE
MINOS
SAVE
###############################################################
PLOT 0 (single histo plot)
lifetimecorrection
runs 1 2 3 4
range 0 10 -0.25 0.25
view_packing 25
###############################################################
FOURIER
units Gauss # units either 'Gauss', 'Tesla', 'MHz', or 'Mc/s'
fourier_power 13
apodization STRONG # NONE, WEAK, MEDIUM, STRONG
plot POWER # REAL, IMAG, REAL_AND_IMAG, POWER, PHASE, PHASE_OPT_REAL
range 0 5000
###############################################################
STATISTIC --- 2017-08-04 20:24:58
maxLH = 20300.8, NDF = 20361, maxLH/NDF = 0.997043

View File

@ -0,0 +1,96 @@
YBCO-40nm, T=4.99 K, E=19.26 keV, B=~1500(G)/259.52(A), Tr/Sa=15.02/-5.00 kV, SR=-10.00
###############################################################
FITPARAMETER
# Nr. Name Value Step Pos_Error Boundaries
1 Asy 0.1043 -0.0010 0.0010
2 Sigma 0.3090 -0.0074 0.0075 0 none
3 Ph -151.7 -1.0 1.1
4 Field 1514.903 -0.092 0.092
# L
5 RelPh_L 0 0 none
6 N0_L 262.43 -0.30 0.30
7 N_bkg_L 4.574 -0.038 0.038
# T
8 RelPh_T -90.6 -1.3 1.3
9 N0_T 268.19 -0.30 0.30
10 N_bkg_T 4.824 -0.039 0.039
# R
11 RelPh_R 180.9 -1.3 1.3
12 alpha_LR 1.0128 -0.0016 0.0016
13 N_bkg_R 5.112 -0.039 0.039
# B
14 RelPh_B 90.8 -1.3 1.3
15 alpha_TB 0.9505 -0.0015 0.0015
16 N_bkg_B 4.593 -0.038 0.038
###############################################################
THEORY
asymmetry 1
simpleGss 2 (rate)
TFieldCos fun1 fun2 (phase frequency)
###############################################################
FUNCTIONS
fun1 = par3 + map1
fun2 = gamma_mu * par4
fun3 = par6 * par12
fun4 = par9 * par15
###############################################################
GLOBAL
fittype 0 (single histogram fit)
fit 0.05 10
data 2500 66500 2500 66500
packing 10
###############################################################
RUN 2017/lem17_his_2534 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 5 0 0 0 0 0 0 0 0 0
forward 1 5
norm 6
backgr.fit 7
#-----------------------------------------------
RUN 2017/lem17_his_2534 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 8 0 0 0 0 0 0 0 0 0
forward 2 6
norm 9
backgr.fit 10
#-----------------------------------------------
RUN 2017/lem17_his_2534 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 11 0 0 0 0 0 0 0 0 0
forward 3 7
norm fun3
backgr.fit 13
#-----------------------------------------------
RUN 2017/lem17_his_2534 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 14 0 0 0 0 0 0 0 0 0
forward 4 8
norm fun4
backgr.fit 16
###############################################################
COMMANDS
MAX_LIKELIHOOD
#PRINT_LEVEL 2
MINIMIZE
MINOS
SAVE
###############################################################
PLOT 0 (single histo plot)
lifetimecorrection
runs 1 2 3 4
range 0 10 -0.25 0.25
view_packing 25
###############################################################
FOURIER
units Gauss # units either 'Gauss', 'Tesla', 'MHz', or 'Mc/s'
fourier_power 13
apodization STRONG # NONE, WEAK, MEDIUM, STRONG
plot POWER # REAL, IMAG, REAL_AND_IMAG, POWER, PHASE, PHASE_OPT_REAL
range 0 5000
###############################################################
STATISTIC --- 2017-08-04 20:35:46
maxLH = 20473.5, NDF = 20361, maxLH/NDF = 1.005528

View File

@ -0,0 +1,96 @@
YBCO-40nm, T=4.99 K, E=21.76 keV, B=~1500(G)/259.52(A), Tr/Sa=15.02/-7.50 kV, SR=-10.00
###############################################################
FITPARAMETER
# Nr. Name Value Step Pos_Error Boundaries
1 Asy 0.10474 -0.00098 0.00098
2 Sigma 0.2659 -0.0070 0.0071 0 none
3 Ph -150.4 -1.0 1.0
4 Field 1515.035 -0.080 0.080
# L
5 RelPh_L 0 0 none
6 N0_L 261.39 -0.30 0.30
7 N_bkg_L 4.543 -0.038 0.038
# T
8 RelPh_T -90.9 -1.2 1.2
9 N0_T 268.52 -0.30 0.30
10 N_bkg_T 4.690 -0.039 0.039
# R
11 RelPh_R 178.2 -1.2 1.2
12 alpha_LR 1.0139 -0.0016 0.0016
13 N_bkg_R 5.083 -0.039 0.039
# B
14 RelPh_B 89.2 -1.3 1.3
15 alpha_TB 0.9471 -0.0015 0.0015
16 N_bkg_B 4.607 -0.038 0.038
###############################################################
THEORY
asymmetry 1
simpleGss 2 (rate)
TFieldCos fun1 fun2 (phase frequency)
###############################################################
FUNCTIONS
fun1 = par3 + map1
fun2 = gamma_mu * par4
fun3 = par6 * par12
fun4 = par9 * par15
###############################################################
GLOBAL
fittype 0 (single histogram fit)
fit 0.05 10
data 2500 66500 2500 66500
packing 10
###############################################################
RUN 2017/lem17_his_2535 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 5 0 0 0 0 0 0 0 0 0
forward 1 5
norm 6
backgr.fit 7
#-----------------------------------------------
RUN 2017/lem17_his_2535 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 8 0 0 0 0 0 0 0 0 0
forward 2 6
norm 9
backgr.fit 10
#-----------------------------------------------
RUN 2017/lem17_his_2535 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 11 0 0 0 0 0 0 0 0 0
forward 3 7
norm fun3
backgr.fit 13
#-----------------------------------------------
RUN 2017/lem17_his_2535 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 14 0 0 0 0 0 0 0 0 0
forward 4 8
norm fun4
backgr.fit 16
###############################################################
COMMANDS
MAX_LIKELIHOOD
#PRINT_LEVEL 2
MINIMIZE
MINOS
SAVE
###############################################################
PLOT 0 (single histo plot)
lifetimecorrection
runs 1 2 3 4
range 0 10 -0.25 0.25
view_packing 25
###############################################################
FOURIER
units Gauss # units either 'Gauss', 'Tesla', 'MHz', or 'Mc/s'
fourier_power 13
apodization STRONG # NONE, WEAK, MEDIUM, STRONG
plot POWER # REAL, IMAG, REAL_AND_IMAG, POWER, PHASE, PHASE_OPT_REAL
range 0 5000
###############################################################
STATISTIC --- 2017-08-04 20:58:21
maxLH = 20622.1, NDF = 20361, maxLH/NDF = 1.012824

View File

@ -0,0 +1,96 @@
YBCO-40nm, T=5.00 K, E=24.26 keV, B=~1500(G)/259.52(A), Tr/Sa=15.02/-9.99 kV, SR=-10.00
###############################################################
FITPARAMETER
# Nr. Name Value Step Pos_Error Boundaries
1 Asy 0.10771 -0.00094 0.00094
2 Sigma 0.2397 -0.0062 0.0062 0 none
3 Ph -152.55 -0.97 0.97
4 Field 1515.146 -0.072 0.073
# L
5 RelPh_L 0 0 none
6 N0_L 262.19 -0.30 0.30
7 N_bkg_L 4.579 -0.038 0.038
# T
8 RelPh_T -89.5 -1.2 1.2
9 N0_T 267.63 -0.30 0.30
10 N_bkg_T 4.748 -0.039 0.039
# R
11 RelPh_R 179.4 -1.2 1.2
12 alpha_LR 1.0111 -0.0016 0.0016
13 N_bkg_R 5.270 -0.040 0.039
# B
14 RelPh_B 89.3 -1.2 1.2
15 alpha_TB 0.9562 -0.0015 0.0015
16 N_bkg_B 4.564 -0.038 0.038
###############################################################
THEORY
asymmetry 1
simpleGss 2 (rate)
TFieldCos fun1 fun2 (phase frequency)
###############################################################
FUNCTIONS
fun1 = par3 + map1
fun2 = gamma_mu * par4
fun3 = par6 * par12
fun4 = par9 * par15
###############################################################
GLOBAL
fittype 0 (single histogram fit)
fit 0.05 10
data 2500 66500 2500 66500
packing 10
###############################################################
RUN 2017/lem17_his_2536 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 5 0 0 0 0 0 0 0 0 0
forward 1 5
norm 6
backgr.fit 7
#-----------------------------------------------
RUN 2017/lem17_his_2536 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 8 0 0 0 0 0 0 0 0 0
forward 2 6
norm 9
backgr.fit 10
#-----------------------------------------------
RUN 2017/lem17_his_2536 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 11 0 0 0 0 0 0 0 0 0
forward 3 7
norm fun3
backgr.fit 13
#-----------------------------------------------
RUN 2017/lem17_his_2536 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 14 0 0 0 0 0 0 0 0 0
forward 4 8
norm fun4
backgr.fit 16
###############################################################
COMMANDS
MAX_LIKELIHOOD
#PRINT_LEVEL 2
MINIMIZE
MINOS
SAVE
###############################################################
PLOT 0 (single histo plot)
lifetimecorrection
runs 1 2 3 4
range 0 10 -0.25 0.25
view_packing 25
###############################################################
FOURIER
units Gauss # units either 'Gauss', 'Tesla', 'MHz', or 'Mc/s'
fourier_power 13
apodization STRONG # NONE, WEAK, MEDIUM, STRONG
plot POWER # REAL, IMAG, REAL_AND_IMAG, POWER, PHASE, PHASE_OPT_REAL
range 0 5000
###############################################################
STATISTIC --- 2017-08-04 21:20:53
maxLH = 20230.0, NDF = 20361, maxLH/NDF = 0.993566

View File

@ -0,0 +1,96 @@
YBCO-40nm, T=30.00 K, E=24.26 keV, B=~1500(G)/259.53(A), Tr/Sa=15.02/-9.99 kV, SR=-10.00
###############################################################
FITPARAMETER
# Nr. Name Value Step Pos_Error Boundaries
1 Asy 0.08348 -0.00091 0.00091
2 Sigma 0.2063 -0.0076 0.0075 0 none
3 Ph -153.4 -1.2 1.2
4 Field 1515.221 -0.085 0.084
# L
5 RelPh_L 0 0 none
6 N0_L 260.74 -0.30 0.30
7 N_bkg_L 4.621 -0.038 0.038
# T
8 RelPh_T -92.4 -1.5 1.5
9 N0_T 267.44 -0.30 0.30
10 N_bkg_T 4.696 -0.039 0.038
# R
11 RelPh_R 178.1 -1.5 1.5
12 alpha_LR 1.0208 -0.0016 0.0016
13 N_bkg_R 5.086 -0.039 0.039
# B
14 RelPh_B 89.6 -1.5 1.5
15 alpha_TB 0.9545 -0.0015 0.0015
16 N_bkg_B 4.630 -0.038 0.038
###############################################################
THEORY
asymmetry 1
simpleGss 2 (rate)
TFieldCos fun1 fun2 (phase frequency)
###############################################################
FUNCTIONS
fun1 = par3 + map1
fun2 = gamma_mu * par4
fun3 = par6 * par12
fun4 = par9 * par15
###############################################################
GLOBAL
fittype 0 (single histogram fit)
fit 0.05 10
data 2500 66500 2500 66500
packing 10
###############################################################
RUN 2017/lem17_his_2537 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 5 0 0 0 0 0 0 0 0 0
forward 1 5
norm 6
backgr.fit 7
#-----------------------------------------------
RUN 2017/lem17_his_2537 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 8 0 0 0 0 0 0 0 0 0
forward 2 6
norm 9
backgr.fit 10
#-----------------------------------------------
RUN 2017/lem17_his_2537 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 11 0 0 0 0 0 0 0 0 0
forward 3 7
norm fun3
backgr.fit 13
#-----------------------------------------------
RUN 2017/lem17_his_2537 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 14 0 0 0 0 0 0 0 0 0
forward 4 8
norm fun4
backgr.fit 16
###############################################################
COMMANDS
MAX_LIKELIHOOD
#PRINT_LEVEL 2
MINIMIZE
MINOS
SAVE
###############################################################
PLOT 0 (single histo plot)
lifetimecorrection
runs 1 2 3 4
range 0 10 -0.25 0.25
view_packing 25
###############################################################
FOURIER
units Gauss # units either 'Gauss', 'Tesla', 'MHz', or 'Mc/s'
fourier_power 13
apodization STRONG # NONE, WEAK, MEDIUM, STRONG
plot POWER # REAL, IMAG, REAL_AND_IMAG, POWER, PHASE, PHASE_OPT_REAL
range 0 5000
###############################################################
STATISTIC --- 2017-08-04 22:03:04
maxLH = 20481.2, NDF = 20361, maxLH/NDF = 1.005902

View File

@ -0,0 +1,96 @@
YBCO-40nm, T=30.00 K, E=21.76 keV, B=~1500(G)/259.52(A), Tr/Sa=15.02/-7.50 kV, SR=-10.00
###############################################################
FITPARAMETER
# Nr. Name Value Step Pos_Error Boundaries
1 Asy 0.07978 -0.00092 0.00093
2 Sigma 0.2078 -0.0082 0.0083 0 none
3 Ph -152.2 -1.3 1.3
4 Field 1514.882 -0.087 0.087
# L
5 RelPh_L 0 0 none
6 N0_L 260.97 -0.30 0.30
7 N_bkg_L 4.582 -0.038 0.038
# T
8 RelPh_T -91.2 -1.5 1.5
9 N0_T 267.30 -0.30 0.30
10 N_bkg_T 4.755 -0.039 0.039
# R
11 RelPh_R 181.0 -1.6 1.6
12 alpha_LR 1.0185 -0.0016 0.0016
13 N_bkg_R 5.100 -0.039 0.039
# B
14 RelPh_B 87.6 -1.6 1.6
15 alpha_TB 0.9575 -0.0015 0.0015
16 N_bkg_B 4.699 -0.038 0.038
###############################################################
THEORY
asymmetry 1
simpleGss 2 (rate)
TFieldCos fun1 fun2 (phase frequency)
###############################################################
FUNCTIONS
fun1 = par3 + map1
fun2 = gamma_mu * par4
fun3 = par6 * par12
fun4 = par9 * par15
###############################################################
GLOBAL
fittype 0 (single histogram fit)
fit 0.05 10
data 2500 66500 2500 66500
packing 10
###############################################################
RUN 2017/lem17_his_2538 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 5 0 0 0 0 0 0 0 0 0
forward 1 5
norm 6
backgr.fit 7
#-----------------------------------------------
RUN 2017/lem17_his_2538 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 8 0 0 0 0 0 0 0 0 0
forward 2 6
norm 9
backgr.fit 10
#-----------------------------------------------
RUN 2017/lem17_his_2538 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 11 0 0 0 0 0 0 0 0 0
forward 3 7
norm fun3
backgr.fit 13
#-----------------------------------------------
RUN 2017/lem17_his_2538 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 14 0 0 0 0 0 0 0 0 0
forward 4 8
norm fun4
backgr.fit 16
###############################################################
COMMANDS
MAX_LIKELIHOOD
#PRINT_LEVEL 2
MINIMIZE
MINOS
SAVE
###############################################################
PLOT 0 (single histo plot)
lifetimecorrection
runs 1 2 3 4
range 0 10 -0.25 0.25
view_packing 25
###############################################################
FOURIER
units Gauss # units either 'Gauss', 'Tesla', 'MHz', or 'Mc/s'
fourier_power 13
apodization STRONG # NONE, WEAK, MEDIUM, STRONG
plot POWER # REAL, IMAG, REAL_AND_IMAG, POWER, PHASE, PHASE_OPT_REAL
range 0 5000
###############################################################
STATISTIC --- 2017-08-04 22:13:30
maxLH = 20504.8, NDF = 20361, maxLH/NDF = 1.007062

View File

@ -0,0 +1,96 @@
YBCO-40nm, T=30.00 K, E=19.26 keV, B=~1500(G)/259.51(A), Tr/Sa=15.02/-5.00 kV, SR=-10.00
###############################################################
FITPARAMETER
# Nr. Name Value Step Pos_Error Boundaries
1 Asy 0.08063 -0.00100 0.00100
2 Sigma 0.2839 -0.0095 0.0096 0 none
3 Ph -154.9 -1.3 1.3
4 Field 1515.06 -0.11 0.11
# L
5 RelPh_L 0 0 none
6 N0_L 261.98 -0.30 0.30
7 N_bkg_L 4.560 -0.038 0.038
# T
8 RelPh_T -87.7 -1.6 1.6
9 N0_T 268.62 -0.30 0.30
10 N_bkg_T 4.780 -0.039 0.039
# R
11 RelPh_R 180.4 -1.7 1.6
12 alpha_LR 1.0135 -0.0016 0.0016
13 N_bkg_R 5.194 -0.039 0.039
# B
14 RelPh_B 91.6 -1.6 1.6
15 alpha_TB 0.9534 -0.0015 0.0015
16 N_bkg_B 4.484 -0.038 0.038
###############################################################
THEORY
asymmetry 1
simpleGss 2 (rate)
TFieldCos fun1 fun2 (phase frequency)
###############################################################
FUNCTIONS
fun1 = par3 + map1
fun2 = gamma_mu * par4
fun3 = par6 * par12
fun4 = par9 * par15
###############################################################
GLOBAL
fittype 0 (single histogram fit)
fit 0.05 10
data 2500 66500 2500 66500
packing 10
###############################################################
RUN 2017/lem17_his_2539 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 5 0 0 0 0 0 0 0 0 0
forward 1 5
norm 6
backgr.fit 7
#-----------------------------------------------
RUN 2017/lem17_his_2539 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 8 0 0 0 0 0 0 0 0 0
forward 2 6
norm 9
backgr.fit 10
#-----------------------------------------------
RUN 2017/lem17_his_2539 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 11 0 0 0 0 0 0 0 0 0
forward 3 7
norm fun3
backgr.fit 13
#-----------------------------------------------
RUN 2017/lem17_his_2539 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 14 0 0 0 0 0 0 0 0 0
forward 4 8
norm fun4
backgr.fit 16
###############################################################
COMMANDS
MAX_LIKELIHOOD
#PRINT_LEVEL 2
MINIMIZE
MINOS
SAVE
###############################################################
PLOT 0 (single histo plot)
lifetimecorrection
runs 1 2 3 4
range 0 10 -0.25 0.25
view_packing 25
###############################################################
FOURIER
units Gauss # units either 'Gauss', 'Tesla', 'MHz', or 'Mc/s'
fourier_power 13
apodization STRONG # NONE, WEAK, MEDIUM, STRONG
plot POWER # REAL, IMAG, REAL_AND_IMAG, POWER, PHASE, PHASE_OPT_REAL
range 0 5000
###############################################################
STATISTIC --- 2017-08-04 22:35:01
maxLH = 20460.1, NDF = 20361, maxLH/NDF = 1.004865

View File

@ -0,0 +1,96 @@
YBCO-40nm, T=30.00 K, E=16.76 keV, B=~1500(G)/259.52(A), Tr/Sa=15.02/-2.50 kV, SR=-10.00
###############################################################
FITPARAMETER
# Nr. Name Value Step Pos_Error Boundaries
1 Asy 0.0837 -0.0011 0.0011
2 Sigma 0.366 -0.011 0.011 0 none
3 Ph -149.9 -1.3 1.3
4 Field 1514.86 -0.13 0.13
# L
5 RelPh_L 0 0 none
6 N0_L 259.64 -0.30 0.29
7 N_bkg_L 4.465 -0.038 0.038
# T
8 RelPh_T -93.5 -1.7 1.7
9 N0_T 265.43 -0.30 0.30
10 N_bkg_T 4.757 -0.039 0.039
# R
11 RelPh_R 174.2 -1.7 1.7
12 alpha_LR 1.0139 -0.0016 0.0017
13 N_bkg_R 5.005 -0.039 0.039
# B
14 RelPh_B 90.1 -1.7 1.7
15 alpha_TB 0.9547 -0.0015 0.0015
16 N_bkg_B 4.445 -0.038 0.038
###############################################################
THEORY
asymmetry 1
simpleGss 2 (rate)
TFieldCos fun1 fun2 (phase frequency)
###############################################################
FUNCTIONS
fun1 = par3 + map1
fun2 = gamma_mu * par4
fun3 = par6 * par12
fun4 = par9 * par15
###############################################################
GLOBAL
fittype 0 (single histogram fit)
fit 0.05 10
data 2500 66500 2500 66500
packing 10
###############################################################
RUN 2017/lem17_his_2540 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 5 0 0 0 0 0 0 0 0 0
forward 1 5
norm 6
backgr.fit 7
#-----------------------------------------------
RUN 2017/lem17_his_2540 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 8 0 0 0 0 0 0 0 0 0
forward 2 6
norm 9
backgr.fit 10
#-----------------------------------------------
RUN 2017/lem17_his_2540 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 11 0 0 0 0 0 0 0 0 0
forward 3 7
norm fun3
backgr.fit 13
#-----------------------------------------------
RUN 2017/lem17_his_2540 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 14 0 0 0 0 0 0 0 0 0
forward 4 8
norm fun4
backgr.fit 16
###############################################################
COMMANDS
MAX_LIKELIHOOD
#PRINT_LEVEL 2
MINIMIZE
MINOS
SAVE
###############################################################
PLOT 0 (single histo plot)
lifetimecorrection
runs 1 2 3 4
range 0 10 -0.25 0.25
view_packing 25
###############################################################
FOURIER
units Gauss # units either 'Gauss', 'Tesla', 'MHz', or 'Mc/s'
fourier_power 13
apodization STRONG # NONE, WEAK, MEDIUM, STRONG
plot POWER # REAL, IMAG, REAL_AND_IMAG, POWER, PHASE, PHASE_OPT_REAL
range 0 5000
###############################################################
STATISTIC --- 2017-08-05 05:49:42
maxLH = 20779.3, NDF = 20361, maxLH/NDF = 1.020545

View File

@ -0,0 +1,96 @@
YBCO-40nm, T=30.00 K, E=14.26 keV, B=~1500(G)/259.52(A), Tr/Sa=15.02/0.00 kV, SR=-10.00
###############################################################
FITPARAMETER
# Nr. Name Value Step Pos_Error Boundaries
1 Asy 0.0932 -0.0012 0.0012
2 Sigma 0.514 -0.013 0.013 0 none
3 Ph -154.3 -1.3 1.3
4 Field 1514.60 -0.17 0.17
# L
5 RelPh_L 0 0 none
6 N0_L 262.63 -0.30 0.30
7 N_bkg_L 4.373 -0.038 0.038
# T
8 RelPh_T -87.8 -1.6 1.6
9 N0_T 268.94 -0.30 0.30
10 N_bkg_T 4.630 -0.039 0.039
# R
11 RelPh_R 179.6 -1.6 1.6
12 alpha_LR 1.0106 -0.0016 0.0016
13 N_bkg_R 5.126 -0.039 0.039
# B
14 RelPh_B 90.0 -1.7 1.7
15 alpha_TB 0.9504 -0.0015 0.0015
16 N_bkg_B 4.514 -0.038 0.038
###############################################################
THEORY
asymmetry 1
simpleGss 2 (rate)
TFieldCos fun1 fun2 (phase frequency)
###############################################################
FUNCTIONS
fun1 = par3 + map1
fun2 = gamma_mu * par4
fun3 = par6 * par12
fun4 = par9 * par15
###############################################################
GLOBAL
fittype 0 (single histogram fit)
fit 0.05 10
data 2500 66500 2500 66500
packing 10
###############################################################
RUN 2017/lem17_his_2541 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 5 0 0 0 0 0 0 0 0 0
forward 1 5
norm 6
backgr.fit 7
#-----------------------------------------------
RUN 2017/lem17_his_2541 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 8 0 0 0 0 0 0 0 0 0
forward 2 6
norm 9
backgr.fit 10
#-----------------------------------------------
RUN 2017/lem17_his_2541 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 11 0 0 0 0 0 0 0 0 0
forward 3 7
norm fun3
backgr.fit 13
#-----------------------------------------------
RUN 2017/lem17_his_2541 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 14 0 0 0 0 0 0 0 0 0
forward 4 8
norm fun4
backgr.fit 16
###############################################################
COMMANDS
MAX_LIKELIHOOD
#PRINT_LEVEL 2
MINIMIZE
MINOS
SAVE
###############################################################
PLOT 0 (single histo plot)
lifetimecorrection
runs 1 2 3 4
range 0 10 -0.25 0.25
view_packing 25
###############################################################
FOURIER
units Gauss # units either 'Gauss', 'Tesla', 'MHz', or 'Mc/s'
fourier_power 13
apodization STRONG # NONE, WEAK, MEDIUM, STRONG
plot POWER # REAL, IMAG, REAL_AND_IMAG, POWER, PHASE, PHASE_OPT_REAL
range 0 5000
###############################################################
STATISTIC --- 2017-08-05 05:53:21
maxLH = 20664.5, NDF = 20361, maxLH/NDF = 1.014906

View File

@ -0,0 +1,96 @@
YBCO-40nm, T=30.00 K, E=11.76 keV, B=~1500(G)/259.52(A), Tr/Sa=15.02/2.50 kV, SR=-10.00
###############################################################
FITPARAMETER
# Nr. Name Value Step Pos_Error Boundaries
1 Asy 0.1078 -0.0014 0.0014
2 Sigma 0.776 -0.017 0.017 0 none
3 Ph -152.4 -1.4 1.4
4 Field 1513.86 -0.25 0.24
# L
5 RelPh_L 0 0 none
6 N0_L 262.04 -0.30 0.30
7 N_bkg_L 4.510 -0.038 0.038
# T
8 RelPh_T -86.9 -1.6 1.6
9 N0_T 268.88 -0.30 0.30
10 N_bkg_T 4.803 -0.039 0.039
# R
11 RelPh_R 179.4 -1.6 1.7
12 alpha_LR 1.0167 -0.0016 0.0016
13 N_bkg_R 5.099 -0.039 0.039
# B
14 RelPh_B 88.5 -1.7 1.7
15 alpha_TB 0.9521 -0.0015 0.0015
16 N_bkg_B 4.448 -0.038 0.038
###############################################################
THEORY
asymmetry 1
simpleGss 2 (rate)
TFieldCos fun1 fun2 (phase frequency)
###############################################################
FUNCTIONS
fun1 = par3 + map1
fun2 = gamma_mu * par4
fun3 = par6 * par12
fun4 = par9 * par15
###############################################################
GLOBAL
fittype 0 (single histogram fit)
fit 0.05 10
data 2500 66500 2500 66500
packing 10
###############################################################
RUN 2017/lem17_his_2542 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 5 0 0 0 0 0 0 0 0 0
forward 1 5
norm 6
backgr.fit 7
#-----------------------------------------------
RUN 2017/lem17_his_2542 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 8 0 0 0 0 0 0 0 0 0
forward 2 6
norm 9
backgr.fit 10
#-----------------------------------------------
RUN 2017/lem17_his_2542 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 11 0 0 0 0 0 0 0 0 0
forward 3 7
norm fun3
backgr.fit 13
#-----------------------------------------------
RUN 2017/lem17_his_2542 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 14 0 0 0 0 0 0 0 0 0
forward 4 8
norm fun4
backgr.fit 16
###############################################################
COMMANDS
MAX_LIKELIHOOD
#PRINT_LEVEL 2
MINIMIZE
MINOS
SAVE
###############################################################
PLOT 0 (single histo plot)
lifetimecorrection
runs 1 2 3 4
range 0 10 -0.25 0.25
view_packing 25
###############################################################
FOURIER
units Gauss # units either 'Gauss', 'Tesla', 'MHz', or 'Mc/s'
fourier_power 13
apodization STRONG # NONE, WEAK, MEDIUM, STRONG
plot POWER # REAL, IMAG, REAL_AND_IMAG, POWER, PHASE, PHASE_OPT_REAL
range 0 5000
###############################################################
STATISTIC --- 2017-08-05 05:53:39
maxLH = 20231.1, NDF = 20361, maxLH/NDF = 0.993620

View File

@ -0,0 +1,96 @@
YBCO-40nm, T=30.00 K, E=9.26 keV, B=~1500(G)/259.51(A), Tr/Sa=15.02/5.00 kV, SR=-10.00
###############################################################
FITPARAMETER
# Nr. Name Value Step Pos_Error Boundaries
1 Asy 0.1273 -0.0016 0.0016
2 Sigma 1.025 -0.018 0.019 0 none
3 Ph -149.6 -1.3 1.3
4 Field 1510.71 -0.30 0.30
# L
5 RelPh_L 0 0 none
6 N0_L 261.52 -0.29 0.30
7 N_bkg_L 4.497 -0.038 0.038
# T
8 RelPh_T -88.0 -1.6 1.6
9 N0_T 268.62 -0.30 0.30
10 N_bkg_T 4.729 -0.039 0.039
# R
11 RelPh_R 181.0 -1.6 1.6
12 alpha_LR 1.0176 -0.0016 0.0016
13 N_bkg_R 5.077 -0.039 0.039
# B
14 RelPh_B 91.7 -1.6 1.6
15 alpha_TB 0.9499 -0.0015 0.0015
16 N_bkg_B 4.480 -0.038 0.038
###############################################################
THEORY
asymmetry 1
simpleGss 2 (rate)
TFieldCos fun1 fun2 (phase frequency)
###############################################################
FUNCTIONS
fun1 = par3 + map1
fun2 = gamma_mu * par4
fun3 = par6 * par12
fun4 = par9 * par15
###############################################################
GLOBAL
fittype 0 (single histogram fit)
fit 0.05 10
data 2500 66500 2500 66500
packing 10
###############################################################
RUN 2017/lem17_his_2543 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 5 0 0 0 0 0 0 0 0 0
forward 1 5
norm 6
backgr.fit 7
#-----------------------------------------------
RUN 2017/lem17_his_2543 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 8 0 0 0 0 0 0 0 0 0
forward 2 6
norm 9
backgr.fit 10
#-----------------------------------------------
RUN 2017/lem17_his_2543 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 11 0 0 0 0 0 0 0 0 0
forward 3 7
norm fun3
backgr.fit 13
#-----------------------------------------------
RUN 2017/lem17_his_2543 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 14 0 0 0 0 0 0 0 0 0
forward 4 8
norm fun4
backgr.fit 16
###############################################################
COMMANDS
MAX_LIKELIHOOD
#PRINT_LEVEL 2
MINIMIZE
MINOS
SAVE
###############################################################
PLOT 0 (single histo plot)
lifetimecorrection
runs 1 2 3 4
range 0 10 -0.25 0.25
view_packing 25
###############################################################
FOURIER
units Gauss # units either 'Gauss', 'Tesla', 'MHz', or 'Mc/s'
fourier_power 13
apodization STRONG # NONE, WEAK, MEDIUM, STRONG
plot POWER # REAL, IMAG, REAL_AND_IMAG, POWER, PHASE, PHASE_OPT_REAL
range 0 5000
###############################################################
STATISTIC --- 2017-08-05 05:54:11
maxLH = 20527.6, NDF = 20361, maxLH/NDF = 1.008184

View File

@ -0,0 +1,96 @@
YBCO-40nm, T=30.00 K, E=6.77 keV, B=~1500(G)/259.52(A), Tr/Sa=15.02/7.50 kV, SR=-10.00
###############################################################
FITPARAMETER
# Nr. Name Value Step Pos_Error Boundaries
1 Asy 0.1417 -0.0016 0.0017
2 Sigma 1.144 -0.019 0.019 0 none
3 Ph -144.9 -1.3 1.3
4 Field 1508.39 -0.31 0.31
# L
5 RelPh_L 0 0 none
6 N0_L 261.99 -0.30 0.30
7 N_bkg_L 4.442 -0.038 0.038
# T
8 RelPh_T -92.4 -1.5 1.5
9 N0_T 268.51 -0.30 0.30
10 N_bkg_T 4.721 -0.039 0.039
# R
11 RelPh_R 180.8 -1.5 1.5
12 alpha_LR 1.0138 -0.0016 0.0016
13 N_bkg_R 5.004 -0.039 0.039
# B
14 RelPh_B 91.2 -1.5 1.5
15 alpha_TB 0.9496 -0.0015 0.0015
16 N_bkg_B 4.493 -0.038 0.038
###############################################################
THEORY
asymmetry 1
simpleGss 2 (rate)
TFieldCos fun1 fun2 (phase frequency)
###############################################################
FUNCTIONS
fun1 = par3 + map1
fun2 = gamma_mu * par4
fun3 = par6 * par12
fun4 = par9 * par15
###############################################################
GLOBAL
fittype 0 (single histogram fit)
fit 0.05 10
data 2500 66500 2500 66500
packing 10
###############################################################
RUN 2017/lem17_his_2544 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 5 0 0 0 0 0 0 0 0 0
forward 1 5
norm 6
backgr.fit 7
#-----------------------------------------------
RUN 2017/lem17_his_2544 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 8 0 0 0 0 0 0 0 0 0
forward 2 6
norm 9
backgr.fit 10
#-----------------------------------------------
RUN 2017/lem17_his_2544 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 11 0 0 0 0 0 0 0 0 0
forward 3 7
norm fun3
backgr.fit 13
#-----------------------------------------------
RUN 2017/lem17_his_2544 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 14 0 0 0 0 0 0 0 0 0
forward 4 8
norm fun4
backgr.fit 16
###############################################################
COMMANDS
MAX_LIKELIHOOD
#PRINT_LEVEL 2
MINIMIZE
MINOS
SAVE
###############################################################
PLOT 0 (single histo plot)
lifetimecorrection
runs 1 2 3 4
range 0 10 -0.25 0.25
view_packing 25
###############################################################
FOURIER
units Gauss # units either 'Gauss', 'Tesla', 'MHz', or 'Mc/s'
fourier_power 13
apodization STRONG # NONE, WEAK, MEDIUM, STRONG
plot POWER # REAL, IMAG, REAL_AND_IMAG, POWER, PHASE, PHASE_OPT_REAL
range 0 5000
###############################################################
STATISTIC --- 2017-08-05 05:54:40
maxLH = 20633.8, NDF = 20361, maxLH/NDF = 1.013399

View File

@ -0,0 +1,96 @@
YBCO-40nm, T=60.01 K, E=6.77 keV, B=~1500(G)/259.52(A), Tr/Sa=15.02/7.50 kV, SR=-10.00
###############################################################
FITPARAMETER
# Nr. Name Value Step Pos_Error Boundaries
1 Asy 0.1476 -0.0013 0.0013
2 Sigma 0.735 -0.010 0.011 0 none
3 Ph -146.78 -0.99 1.00
4 Field 1510.91 -0.17 0.17
# L
5 RelPh_L 0 0 none
6 N0_L 261.89 -0.29 0.30
7 N_bkg_L 4.458 -0.038 0.038
# T
8 RelPh_T -87.9 -1.2 1.2
9 N0_T 268.51 -0.30 0.30
10 N_bkg_T 4.690 -0.039 0.039
# R
11 RelPh_R 179.6 -1.2 1.2
12 alpha_LR 1.0155 -0.0016 0.0016
13 N_bkg_R 5.098 -0.039 0.039
# B
14 RelPh_B 91.4 -1.2 1.2
15 alpha_TB 0.9506 -0.0015 0.0015
16 N_bkg_B 4.481 -0.038 0.038
###############################################################
THEORY
asymmetry 1
simpleGss 2 (rate)
TFieldCos fun1 fun2 (phase frequency)
###############################################################
FUNCTIONS
fun1 = par3 + map1
fun2 = gamma_mu * par4
fun3 = par6 * par12
fun4 = par9 * par15
###############################################################
GLOBAL
fittype 0 (single histogram fit)
fit 0.05 10
data 2500 66500 2500 66500
packing 10
###############################################################
RUN 2017/lem17_his_2545 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 5 0 0 0 0 0 0 0 0 0
forward 1 5
norm 6
backgr.fit 7
#-----------------------------------------------
RUN 2017/lem17_his_2545 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 8 0 0 0 0 0 0 0 0 0
forward 2 6
norm 9
backgr.fit 10
#-----------------------------------------------
RUN 2017/lem17_his_2545 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 11 0 0 0 0 0 0 0 0 0
forward 3 7
norm fun3
backgr.fit 13
#-----------------------------------------------
RUN 2017/lem17_his_2545 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 14 0 0 0 0 0 0 0 0 0
forward 4 8
norm fun4
backgr.fit 16
###############################################################
COMMANDS
MAX_LIKELIHOOD
#PRINT_LEVEL 2
MINIMIZE
MINOS
SAVE
###############################################################
PLOT 0 (single histo plot)
lifetimecorrection
runs 1 2 3 4
range 0 10 -0.25 0.25
view_packing 25
###############################################################
FOURIER
units Gauss # units either 'Gauss', 'Tesla', 'MHz', or 'Mc/s'
fourier_power 13
apodization STRONG # NONE, WEAK, MEDIUM, STRONG
plot POWER # REAL, IMAG, REAL_AND_IMAG, POWER, PHASE, PHASE_OPT_REAL
range 0 5000
###############################################################
STATISTIC --- 2017-08-05 05:55:04
maxLH = 20613.6, NDF = 20361, maxLH/NDF = 1.012405

View File

@ -0,0 +1,96 @@
YBCO-40nm, T=59.99 K, E=9.26 keV, B=~1500(G)/259.52(A), Tr/Sa=15.02/5.00 kV, SR=-10.00
###############################################################
FITPARAMETER
# Nr. Name Value Step Pos_Error Boundaries
1 Asy 0.1535 -0.0012 0.0013
2 Sigma 0.5960 -0.0083 0.0085 0 none
3 Ph -148.84 -0.89 0.88
4 Field 1512.77 -0.12 0.13
# L
5 RelPh_L 0 0 none
6 N0_L 262.18 -0.30 0.30
7 N_bkg_L 4.427 -0.038 0.038
# T
8 RelPh_T -87.5 -1.0 1.0
9 N0_T 268.62 -0.30 0.30
10 N_bkg_T 4.759 -0.039 0.039
# R
11 RelPh_R 179.5 -1.1 1.1
12 alpha_LR 1.0177 -0.0016 0.0016
13 N_bkg_R 4.994 -0.039 0.039
# B
14 RelPh_B 89.3 -1.1 1.1
15 alpha_TB 0.9487 -0.0015 0.0015
16 N_bkg_B 4.516 -0.038 0.038
###############################################################
THEORY
asymmetry 1
simpleGss 2 (rate)
TFieldCos fun1 fun2 (phase frequency)
###############################################################
FUNCTIONS
fun1 = par3 + map1
fun2 = gamma_mu * par4
fun3 = par6 * par12
fun4 = par9 * par15
###############################################################
GLOBAL
fittype 0 (single histogram fit)
fit 0.05 10
data 2500 66500 2500 66500
packing 10
###############################################################
RUN 2017/lem17_his_2546 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 5 0 0 0 0 0 0 0 0 0
forward 1 5
norm 6
backgr.fit 7
#-----------------------------------------------
RUN 2017/lem17_his_2546 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 8 0 0 0 0 0 0 0 0 0
forward 2 6
norm 9
backgr.fit 10
#-----------------------------------------------
RUN 2017/lem17_his_2546 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 11 0 0 0 0 0 0 0 0 0
forward 3 7
norm fun3
backgr.fit 13
#-----------------------------------------------
RUN 2017/lem17_his_2546 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 14 0 0 0 0 0 0 0 0 0
forward 4 8
norm fun4
backgr.fit 16
###############################################################
COMMANDS
MAX_LIKELIHOOD
#PRINT_LEVEL 2
MINIMIZE
MINOS
SAVE
###############################################################
PLOT 0 (single histo plot)
lifetimecorrection
runs 1 2 3 4
range 0 10 -0.25 0.25
view_packing 25
###############################################################
FOURIER
units Gauss # units either 'Gauss', 'Tesla', 'MHz', or 'Mc/s'
fourier_power 13
apodization STRONG # NONE, WEAK, MEDIUM, STRONG
plot POWER # REAL, IMAG, REAL_AND_IMAG, POWER, PHASE, PHASE_OPT_REAL
range 0 5000
###############################################################
STATISTIC --- 2017-08-05 05:57:44
maxLH = 20472.6, NDF = 20361, maxLH/NDF = 1.005482

View File

@ -0,0 +1,96 @@
YBCO-40nm, T=60.00 K, E=11.76 keV, B=~1500(G)/259.52(A), Tr/Sa=15.02/2.50 kV, SR=-10.00
###############################################################
FITPARAMETER
# Nr. Name Value Step Pos_Error Boundaries
1 Asy 0.1513 -0.0011 0.0011
2 Sigma 0.4161 -0.0062 0.0063 0 none
3 Ph -150.95 -0.79 0.79
4 Field 1514.144 -0.085 0.085
# L
5 RelPh_L 0 0 none
6 N0_L 262.23 -0.30 0.29
7 N_bkg_L 4.478 -0.038 0.039
# T
8 RelPh_T -91.48 -0.95 0.95
9 N0_T 269.03 -0.30 0.30
10 N_bkg_T 4.717 -0.039 0.039
# R
11 RelPh_R 179.73 -0.96 0.96
12 alpha_LR 1.0134 -0.0016 0.0016
13 N_bkg_R 4.993 -0.039 0.039
# B
14 RelPh_B 89.12 -0.97 0.97
15 alpha_TB 0.9471 -0.0015 0.0015
16 N_bkg_B 4.442 -0.038 0.038
###############################################################
THEORY
asymmetry 1
simpleGss 2 (rate)
TFieldCos fun1 fun2 (phase frequency)
###############################################################
FUNCTIONS
fun1 = par3 + map1
fun2 = gamma_mu * par4
fun3 = par6 * par12
fun4 = par9 * par15
###############################################################
GLOBAL
fittype 0 (single histogram fit)
fit 0.05 10
data 2500 66500 2500 66500
packing 10
###############################################################
RUN 2017/lem17_his_2547 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 5 0 0 0 0 0 0 0 0 0
forward 1 5
norm 6
backgr.fit 7
#-----------------------------------------------
RUN 2017/lem17_his_2547 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 8 0 0 0 0 0 0 0 0 0
forward 2 6
norm 9
backgr.fit 10
#-----------------------------------------------
RUN 2017/lem17_his_2547 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 11 0 0 0 0 0 0 0 0 0
forward 3 7
norm fun3
backgr.fit 13
#-----------------------------------------------
RUN 2017/lem17_his_2547 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 14 0 0 0 0 0 0 0 0 0
forward 4 8
norm fun4
backgr.fit 16
###############################################################
COMMANDS
MAX_LIKELIHOOD
#PRINT_LEVEL 2
MINIMIZE
MINOS
SAVE
###############################################################
PLOT 0 (single histo plot)
lifetimecorrection
runs 1 2 3 4
range 0 10 -0.25 0.25
view_packing 25
###############################################################
FOURIER
units Gauss # units either 'Gauss', 'Tesla', 'MHz', or 'Mc/s'
fourier_power 13
apodization STRONG # NONE, WEAK, MEDIUM, STRONG
plot POWER # REAL, IMAG, REAL_AND_IMAG, POWER, PHASE, PHASE_OPT_REAL
range 0 5000
###############################################################
STATISTIC --- 2017-08-05 05:58:07
maxLH = 20270.1, NDF = 20361, maxLH/NDF = 0.995536

View File

@ -0,0 +1,96 @@
YBCO-40nm, T=60.01 K, E=14.27 keV, B=~1500(G)/259.53(A), Tr/Sa=15.02/-0.00 kV, SR=-10.00
###############################################################
FITPARAMETER
# Nr. Name Value Step Pos_Error Boundaries
1 Asy 0.15785 -0.00099 0.00099
2 Sigma 0.3103 -0.0047 0.0047 0 none
3 Ph -153.17 -0.70 0.70
4 Field 1514.501 -0.062 0.062
# L
5 RelPh_L 0 0 none
6 N0_L 261.95 -0.30 0.30
7 N_bkg_L 4.515 -0.038 0.038
# T
8 RelPh_T -89.61 -0.84 0.84
9 N0_T 269.40 -0.30 0.30
10 N_bkg_T 4.726 -0.039 0.039
# R
11 RelPh_R 179.84 -0.85 0.86
12 alpha_LR 1.0163 -0.0016 0.0016
13 N_bkg_R 5.090 -0.039 0.039
# B
14 RelPh_B 92.59 -0.86 0.86
15 alpha_TB 0.9473 -0.0015 0.0015
16 N_bkg_B 4.501 -0.038 0.038
###############################################################
THEORY
asymmetry 1
simpleGss 2 (rate)
TFieldCos fun1 fun2 (phase frequency)
###############################################################
FUNCTIONS
fun1 = par3 + map1
fun2 = gamma_mu * par4
fun3 = par6 * par12
fun4 = par9 * par15
###############################################################
GLOBAL
fittype 0 (single histogram fit)
fit 0.05 10
data 2500 66500 2500 66500
packing 10
###############################################################
RUN 2017/lem17_his_2548 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 5 0 0 0 0 0 0 0 0 0
forward 1 5
norm 6
backgr.fit 7
#-----------------------------------------------
RUN 2017/lem17_his_2548 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 8 0 0 0 0 0 0 0 0 0
forward 2 6
norm 9
backgr.fit 10
#-----------------------------------------------
RUN 2017/lem17_his_2548 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 11 0 0 0 0 0 0 0 0 0
forward 3 7
norm fun3
backgr.fit 13
#-----------------------------------------------
RUN 2017/lem17_his_2548 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 14 0 0 0 0 0 0 0 0 0
forward 4 8
norm fun4
backgr.fit 16
###############################################################
COMMANDS
MAX_LIKELIHOOD
#PRINT_LEVEL 2
MINIMIZE
MINOS
SAVE
###############################################################
PLOT 0 (single histo plot)
lifetimecorrection
runs 1 2 3 4
range 0 10 -0.25 0.25
view_packing 25
###############################################################
FOURIER
units Gauss # units either 'Gauss', 'Tesla', 'MHz', or 'Mc/s'
fourier_power 13
apodization STRONG # NONE, WEAK, MEDIUM, STRONG
plot POWER # REAL, IMAG, REAL_AND_IMAG, POWER, PHASE, PHASE_OPT_REAL
range 0 5000
###############################################################
STATISTIC --- 2017-08-05 05:58:24
maxLH = 20649.4, NDF = 20361, maxLH/NDF = 1.014166

View File

@ -0,0 +1,96 @@
YBCO-40nm, T=60.01 K, E=16.76 keV, B=~1500(G)/259.51(A), Tr/Sa=15.02/-2.50 kV, SR=-10.00
###############################################################
FITPARAMETER
# Nr. Name Value Step Pos_Error Boundaries
1 Asy 0.15722 -0.00090 0.00091
2 Sigma 0.2120 -0.0040 0.0040 0 none
3 Ph -153.06 -0.65 0.65
4 Field 1514.458 -0.046 0.046
# L
5 RelPh_L 0 0 none
6 N0_L 261.81 -0.30 0.30
7 N_bkg_L 4.604 -0.038 0.038
# T
8 RelPh_T -89.15 -0.79 0.79
9 N0_T 268.37 -0.30 0.30
10 N_bkg_T 4.703 -0.039 0.039
# R
11 RelPh_R 180.50 -0.80 0.79
12 alpha_LR 1.0148 -0.0016 0.0016
13 N_bkg_R 5.109 -0.039 0.039
# B
14 RelPh_B 90.96 -0.80 0.80
15 alpha_TB 0.9532 -0.0015 0.0015
16 N_bkg_B 4.504 -0.038 0.038
###############################################################
THEORY
asymmetry 1
simpleGss 2 (rate)
TFieldCos fun1 fun2 (phase frequency)
###############################################################
FUNCTIONS
fun1 = par3 + map1
fun2 = gamma_mu * par4
fun3 = par6 * par12
fun4 = par9 * par15
###############################################################
GLOBAL
fittype 0 (single histogram fit)
fit 0.05 10
data 2500 66500 2500 66500
packing 10
###############################################################
RUN 2017/lem17_his_2549 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 5 0 0 0 0 0 0 0 0 0
forward 1 5
norm 6
backgr.fit 7
#-----------------------------------------------
RUN 2017/lem17_his_2549 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 8 0 0 0 0 0 0 0 0 0
forward 2 6
norm 9
backgr.fit 10
#-----------------------------------------------
RUN 2017/lem17_his_2549 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 11 0 0 0 0 0 0 0 0 0
forward 3 7
norm fun3
backgr.fit 13
#-----------------------------------------------
RUN 2017/lem17_his_2549 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 14 0 0 0 0 0 0 0 0 0
forward 4 8
norm fun4
backgr.fit 16
###############################################################
COMMANDS
MAX_LIKELIHOOD
#PRINT_LEVEL 2
MINIMIZE
MINOS
SAVE
###############################################################
PLOT 0 (single histo plot)
lifetimecorrection
runs 1 2 3 4
range 0 10 -0.25 0.25
view_packing 25
###############################################################
FOURIER
units Gauss # units either 'Gauss', 'Tesla', 'MHz', or 'Mc/s'
fourier_power 13
apodization STRONG # NONE, WEAK, MEDIUM, STRONG
plot POWER # REAL, IMAG, REAL_AND_IMAG, POWER, PHASE, PHASE_OPT_REAL
range 0 5000
###############################################################
STATISTIC --- 2017-08-05 05:58:36
maxLH = 20378.0, NDF = 20361, maxLH/NDF = 1.000833

View File

@ -0,0 +1,96 @@
YBCO-40nm, T=60.00 K, E=19.26 keV, B=~1500(G)/259.52(A), Tr/Sa=15.02/-5.00 kV, SR=-10.00
###############################################################
FITPARAMETER
# Nr. Name Value Step Pos_Error Boundaries
1 Asy 0.16082 -0.00087 0.00087
2 Sigma 0.1791 -0.0038 0.0037 0 none
3 Ph -152.69 -0.62 0.62
4 Field 1514.425 -0.041 0.041
# L
5 RelPh_L 0 0 none
6 N0_L 261.91 -0.29 0.30
7 N_bkg_L 4.489 -0.038 0.038
# T
8 RelPh_T -89.39 -0.75 0.75
9 N0_T 268.52 -0.30 0.30
10 N_bkg_T 4.747 -0.039 0.039
# R
11 RelPh_R 180.20 -0.75 0.75
12 alpha_LR 1.0184 -0.0016 0.0016
13 N_bkg_R 5.031 -0.039 0.039
# B
14 RelPh_B 90.14 -0.77 0.77
15 alpha_TB 0.9547 -0.0015 0.0015
16 N_bkg_B 4.476 -0.038 0.038
###############################################################
THEORY
asymmetry 1
simpleGss 2 (rate)
TFieldCos fun1 fun2 (phase frequency)
###############################################################
FUNCTIONS
fun1 = par3 + map1
fun2 = gamma_mu * par4
fun3 = par6 * par12
fun4 = par9 * par15
###############################################################
GLOBAL
fittype 0 (single histogram fit)
fit 0.05 10
data 2500 66500 2500 66500
packing 10
###############################################################
RUN 2017/lem17_his_2550 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 5 0 0 0 0 0 0 0 0 0
forward 1 5
norm 6
backgr.fit 7
#-----------------------------------------------
RUN 2017/lem17_his_2550 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 8 0 0 0 0 0 0 0 0 0
forward 2 6
norm 9
backgr.fit 10
#-----------------------------------------------
RUN 2017/lem17_his_2550 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 11 0 0 0 0 0 0 0 0 0
forward 3 7
norm fun3
backgr.fit 13
#-----------------------------------------------
RUN 2017/lem17_his_2550 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 14 0 0 0 0 0 0 0 0 0
forward 4 8
norm fun4
backgr.fit 16
###############################################################
COMMANDS
MAX_LIKELIHOOD
#PRINT_LEVEL 2
MINIMIZE
MINOS
SAVE
###############################################################
PLOT 0 (single histo plot)
lifetimecorrection
runs 1 2 3 4
range 0 10 -0.25 0.25
view_packing 25
###############################################################
FOURIER
units Gauss # units either 'Gauss', 'Tesla', 'MHz', or 'Mc/s'
fourier_power 13
apodization STRONG # NONE, WEAK, MEDIUM, STRONG
plot POWER # REAL, IMAG, REAL_AND_IMAG, POWER, PHASE, PHASE_OPT_REAL
range 0 5000
###############################################################
STATISTIC --- 2017-08-05 05:58:46
maxLH = 20203.3, NDF = 20361, maxLH/NDF = 0.992254

View File

@ -0,0 +1,96 @@
YBCO-40nm, T=59.98 K, E=21.76 keV, B=~1500(G)/259.53(A), Tr/Sa=15.02/-7.50 kV, SR=-10.00
###############################################################
FITPARAMETER
# Nr. Name Value Step Pos_Error Boundaries
1 Asy 0.16364 -0.00085 0.00085
2 Sigma 0.1516 -0.0037 0.0037 0 none
3 Ph -152.29 -0.60 0.60
4 Field 1514.420 -0.037 0.037
# L
5 RelPh_L 0 0 none
6 N0_L 262.97 -0.30 0.30
7 N_bkg_L 4.458 -0.038 0.038
# T
8 RelPh_T -91.12 -0.72 0.72
9 N0_T 269.33 -0.30 0.30
10 N_bkg_T 4.670 -0.038 0.039
# R
11 RelPh_R 179.28 -0.73 0.73
12 alpha_LR 1.0160 -0.0016 0.0016
13 N_bkg_R 5.075 -0.039 0.039
# B
14 RelPh_B 90.38 -0.74 0.74
15 alpha_TB 0.9519 -0.0015 0.0015
16 N_bkg_B 4.514 -0.038 0.038
###############################################################
THEORY
asymmetry 1
simpleGss 2 (rate)
TFieldCos fun1 fun2 (phase frequency)
###############################################################
FUNCTIONS
fun1 = par3 + map1
fun2 = gamma_mu * par4
fun3 = par6 * par12
fun4 = par9 * par15
###############################################################
GLOBAL
fittype 0 (single histogram fit)
fit 0.05 10
data 2500 66500 2500 66500
packing 10
###############################################################
RUN 2017/lem17_his_2551 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 5 0 0 0 0 0 0 0 0 0
forward 1 5
norm 6
backgr.fit 7
#-----------------------------------------------
RUN 2017/lem17_his_2551 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 8 0 0 0 0 0 0 0 0 0
forward 2 6
norm 9
backgr.fit 10
#-----------------------------------------------
RUN 2017/lem17_his_2551 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 11 0 0 0 0 0 0 0 0 0
forward 3 7
norm fun3
backgr.fit 13
#-----------------------------------------------
RUN 2017/lem17_his_2551 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 14 0 0 0 0 0 0 0 0 0
forward 4 8
norm fun4
backgr.fit 16
###############################################################
COMMANDS
MAX_LIKELIHOOD
#PRINT_LEVEL 2
MINIMIZE
MINOS
SAVE
###############################################################
PLOT 0 (single histo plot)
lifetimecorrection
runs 1 2 3 4
range 0 10 -0.25 0.25
view_packing 25
###############################################################
FOURIER
units Gauss # units either 'Gauss', 'Tesla', 'MHz', or 'Mc/s'
fourier_power 13
apodization STRONG # NONE, WEAK, MEDIUM, STRONG
plot POWER # REAL, IMAG, REAL_AND_IMAG, POWER, PHASE, PHASE_OPT_REAL
range 0 5000
###############################################################
STATISTIC --- 2017-08-05 05:58:57
maxLH = 20545.3, NDF = 20361, maxLH/NDF = 1.009054

View File

@ -0,0 +1,96 @@
YBCO-40nm, T=60.00 K, E=24.26 keV, B=~1500(G)/259.52(A), Tr/Sa=15.02/-9.99 kV, SR=-10.00
###############################################################
FITPARAMETER
# Nr. Name Value Step Pos_Error Boundaries
1 Asy 0.16464 -0.00083 0.00083
2 Sigma 0.1287 -0.0039 0.0038 0 none
3 Ph -153.79 -0.58 0.58
4 Field 1514.540 -0.034 0.034
# L
5 RelPh_L 0 0 none
6 N0_L 263.23 -0.30 0.30
7 N_bkg_L 4.432 -0.038 0.038
# T
8 RelPh_T -88.82 -0.71 0.71
9 N0_T 267.99 -0.30 0.30
10 N_bkg_T 4.671 -0.038 0.039
# R
11 RelPh_R 180.89 -0.71 0.71
12 alpha_LR 1.0159 -0.0016 0.0016
13 N_bkg_R 4.965 -0.039 0.039
# B
14 RelPh_B 91.04 -0.72 0.72
15 alpha_TB 0.9562 -0.0015 0.0015
16 N_bkg_B 4.534 -0.038 0.038
###############################################################
THEORY
asymmetry 1
simpleGss 2 (rate)
TFieldCos fun1 fun2 (phase frequency)
###############################################################
FUNCTIONS
fun1 = par3 + map1
fun2 = gamma_mu * par4
fun3 = par6 * par12
fun4 = par9 * par15
###############################################################
GLOBAL
fittype 0 (single histogram fit)
fit 0.05 10
data 2500 66500 2500 66500
packing 10
###############################################################
RUN 2017/lem17_his_2552 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 5 0 0 0 0 0 0 0 0 0
forward 1 5
norm 6
backgr.fit 7
#-----------------------------------------------
RUN 2017/lem17_his_2552 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 8 0 0 0 0 0 0 0 0 0
forward 2 6
norm 9
backgr.fit 10
#-----------------------------------------------
RUN 2017/lem17_his_2552 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 11 0 0 0 0 0 0 0 0 0
forward 3 7
norm fun3
backgr.fit 13
#-----------------------------------------------
RUN 2017/lem17_his_2552 MUE4 PSI MUSR-ROOT (name beamline institute data-file-format)
map 14 0 0 0 0 0 0 0 0 0
forward 4 8
norm fun4
backgr.fit 16
###############################################################
COMMANDS
MAX_LIKELIHOOD
#PRINT_LEVEL 2
MINIMIZE
MINOS
SAVE
###############################################################
PLOT 0 (single histo plot)
lifetimecorrection
runs 1 2 3 4
range 0 10 -0.25 0.25
view_packing 25
###############################################################
FOURIER
units Gauss # units either 'Gauss', 'Tesla', 'MHz', or 'Mc/s'
fourier_power 13
apodization STRONG # NONE, WEAK, MEDIUM, STRONG
plot POWER # REAL, IMAG, REAL_AND_IMAG, POWER, PHASE, PHASE_OPT_REAL
range 0 5000
###############################################################
STATISTIC --- 2017-08-05 05:59:06
maxLH = 20299.8, NDF = 20361, maxLH/NDF = 0.996994

View File

@ -0,0 +1,16 @@
dataT dataTErr dataB dataE dataTr dataRALRAR dataRATRAB dataSpinRot Asy AsyPosErr AsyNegErr Sigma SigmaPosErr SigmaNegErr Ph PhPosErr PhNegErr Field FieldPosErr FieldNegErr RelPh_L RelPh_LPosErr RelPh_LNegErr N0_L N0_LPosErr N0_LNegErr N_bkg_L N_bkg_LPosErr N_bkg_LNegErr RelPh_T RelPh_TPosErr RelPh_TNegErr N0_T N0_TPosErr N0_TNegErr N_bkg_T N_bkg_TPosErr N_bkg_TNegErr RelPh_R RelPh_RPosErr RelPh_RNegErr alpha_LR alpha_LRPosErr alpha_LRNegErr N_bkg_R N_bkg_RPosErr N_bkg_RNegErr RelPh_B RelPh_BPosErr RelPh_BNegErr alpha_TB alpha_TBPosErr alpha_TBNegErr N_bkg_B N_bkg_BPosErr N_bkg_BNegErr maxLH NDF maxLHred RUN
120.002 0.007 99.384 3.71888 15.0187 -0.003 -0.021 -10 0.1543 0.00077 0.00077 0.107 0.0042 0.0043 21.06 0.56 0.56 101.611 0.032 0.032 0 0 0 304.71 0.33 0.32 5.85 0.042 0.042 -88.67 0.69 0.69 322.01 0.33 0.33 6.275 0.043 0.043 182.67 0.68 0.68 1.048 0.0016 0.0016 6.506 0.044 0.043 91.87 0.71 0.71 0.9186 0.0014 0.0014 5.789 0.042 0.042 20371.9 20361 1.00054 2498
110.002 0.007 99.388 3.71908 15.0188 -0.004 -0.021 -10 0.15162 0.00077 0.00076 0.1038 0.0043 0.0044 21.96 0.56 0.56 101.648 0.033 0.032 0 0 0 306.71 0.32 0.33 5.651 0.042 0.042 -88.95 0.7 0.71 322.89 0.33 0.33 6.064 0.043 0.043 180.98 0.69 0.7 1.0395 0.0015 0.0015 6.41 0.043 0.043 89.25 0.71 0.72 0.9199 0.0014 0.0014 5.683 0.042 0.041 20571.2 20361 1.01032 2499
100.002 0.005 99.392 3.71967 15.0189 -0.004 -0.021 -10 0.15397 0.00077 0.00077 0.1179 0.004 0.0041 22.69 0.57 0.56 101.788 0.033 0.033 0 0 0 305.99 0.33 0.32 5.667 0.042 0.042 -89.73 0.69 0.7 322.59 0.33 0.33 6.099 0.043 0.043 180.18 0.69 0.7 1.0455 0.0015 0.0016 6.407 0.043 0.043 88.65 0.7 0.71 0.9225 0.0014 0.0014 5.755 0.042 0.042 20798.7 20361 1.0215 2500
90.001 0.006 99.392 3.71908 15.0188 -0.004 -0.021 -10 0.15292 0.00078 0.00076 0.1139 0.0041 0.0041 22.77 0.56 0.56 101.934 0.033 0.032 0 0 0 305.8 0.33 0.32 5.615 0.041 0.042 -89.44 0.7 0.7 323.19 0.33 0.33 5.877 0.043 0.043 179.8 0.69 0.69 1.0427 0.0015 0.0016 6.38 0.043 0.043 90.59 0.72 0.72 0.9193 0.0014 0.0014 5.684 0.042 0.041 20651.7 20361 1.01428 2501
80 0.004 99.396 3.71908 15.0187 -0.004 -0.021 -10 0.15503 0.0008 0.0008 0.1701 0.0037 0.0037 23.32 0.58 0.58 101.761 0.038 0.038 0 0 0 307.5 0.33 0.32 5.583 0.042 0.042 -89.57 0.72 0.72 322.69 0.33 0.33 6.069 0.043 0.043 180.36 0.7 0.71 1.0438 0.0015 0.0016 6.327 0.043 0.043 90.42 0.73 0.73 0.9273 0.0014 0.0014 5.494 0.041 0.041 20164.1 20361 0.99033 2502
70.001 0.006 99.399 3.71908 15.0187 -0.004 -0.021 -10 0.14723 0.00085 0.00085 0.2154 0.0041 0.0041 24.96 0.63 0.63 100.813 0.046 0.046 0 0 0 305.91 0.33 0.32 5.739 0.042 0.042 -88.52 0.78 0.78 322.43 0.33 0.33 6.083 0.043 0.043 181.37 0.78 0.77 1.0466 0.0015 0.0016 6.381 0.044 0.043 90.77 0.8 0.8 0.9244 0.0014 0.0014 5.651 0.041 0.041 20557.8 20361 1.00967 2503
60.001 0.005 99.4 3.71908 15.0186 -0.004 -0.021 -10 0.14658 0.00089 0.00089 0.2583 0.0044 0.0044 27.31 0.65 0.65 100.082 0.053 0.052 0 0 0 307.17 0.33 0.32 5.644 0.042 0.042 -90.36 0.81 0.81 322.7 0.33 0.33 6.046 0.043 0.043 179.44 0.8 0.8 1.0422 0.0015 0.0015 6.29 0.043 0.043 89.98 0.83 0.83 0.9204 0.0014 0.0014 5.629 0.042 0.041 20312.5 20361 0.997618 2504
50.001 0.005 99.4 3.71908 15.0187 -0.004 -0.021 -10 0.14694 0.00092 0.00091 0.3015 0.0047 0.0046 26.54 0.67 0.67 99.56 0.06 0.06 0 0 0 308.21 0.33 0.33 5.725 0.042 0.042 -88.06 0.84 0.84 322.68 0.33 0.33 5.998 0.043 0.043 182.28 0.83 0.83 1.034 0.0015 0.0015 6.414 0.043 0.043 93.05 0.85 0.85 0.9233 0.0014 0.0014 5.554 0.041 0.041 20520.8 20361 1.00785 2505
40 0.004 99.399 3.71908 15.0188 -0.003 -0.021 -10 0.14448 0.00093 0.00093 0.3229 0.0049 0.0049 27.69 0.71 0.71 99.218 0.065 0.065 0 0 0 308.64 0.33 0.32 5.629 0.042 0.042 -89.25 0.87 0.87 323.32 0.33 0.33 5.986 0.043 0.043 179.57 0.85 0.85 1.0321 0.0015 0.0015 6.356 0.043 0.043 92.12 0.88 0.88 0.9198 0.0014 0.0014 5.56 0.041 0.041 20387.1 20361 1.00128 2506
30 0.003 99.399 3.71967 15.0187 -0.004 -0.021 -10 0.14302 0.00096 0.00096 0.3559 0.0054 0.0053 26.24 0.73 0.73 99.133 0.071 0.071 0 0 0 308.94 0.33 0.33 5.538 0.042 0.042 -89.1 0.89 0.89 325 0.33 0.33 5.966 0.043 0.043 180.61 0.88 0.88 1.0277 0.0015 0.0015 6.368 0.043 0.043 91.54 0.92 0.92 0.9171 0.0014 0.0014 5.501 0.041 0.041 20754.5 20361 1.01933 2507
20 0.01 99.398 3.71967 15.0187 -0.003 -0.021 -10 0.14124 0.00098 0.00097 0.3703 0.0056 0.0055 27.39 0.74 0.74 98.751 0.075 0.075 0 0 0 309.63 0.33 0.32 5.579 0.042 0.042 -89.02 0.92 0.92 324.61 0.33 0.33 6.045 0.043 0.043 180.44 0.89 0.9 1.028 0.0015 0.0015 6.317 0.043 0.043 91.04 0.94 0.94 0.9176 0.0014 0.0014 5.626 0.042 0.041 20451.1 20361 1.00443 2508
10 0.01 99.4 3.71967 15.0187 -0.004 -0.021 -10 0.13867 0.00099 0.00098 0.3824 0.0058 0.0058 29.09 0.77 0.77 98.629 0.079 0.079 0 0 0 309.62 0.33 0.32 5.543 0.042 0.042 -91.92 0.94 0.95 323.32 0.33 0.33 6.028 0.043 0.043 180.01 0.93 0.93 1.0266 0.0015 0.0015 6.234 0.043 0.043 90.07 0.96 0.96 0.9183 0.0014 0.0014 5.573 0.041 0.041 20426.7 20361 1.00323 2509
5 0.009 99.399 3.71947 15.0187 -0.004 -0.021 -10 0.13438 0.00098 0.00098 0.3809 0.006 0.0059 27.97 0.79 0.79 98.57 0.082 0.081 0 0 0 309.88 0.33 0.33 5.664 0.042 0.042 -88.74 0.97 0.96 325.36 0.33 0.33 5.981 0.043 0.043 180.84 0.96 0.96 1.0271 0.0015 0.0015 6.324 0.043 0.043 92.48 0.98 0.99 0.9141 0.0014 0.0014 5.608 0.041 0.042 20906.7 20361 1.0268 2510

View File

@ -0,0 +1,390 @@
TITLE
>>>Put your title here<<<
Abstract
>>>Put your abstract here<<<
LABELS
T (K)
B (G)
Implantation Energy (keV)
Transport (kV)
RAL-RAR (kV)
RAT-RAB (kV)
Spin Rotation Angle (degree)
Asy
Sigma
Ph
Field
RelPh_L
N0_L
N_bkg_L
RelPh_T
N0_T
N_bkg_T
RelPh_R
alpha_LR
N_bkg_R
RelPh_B
alpha_TB
N_bkg_B
maxLH
NDF
maxLHred
RUN
Data dataT dataB dataE dataTr dataRALRAR dataRATRAB dataSpinRot Asy Sigma Ph Field RelPh_L N0_L N_bkg_L RelPh_T N0_T N_bkg_T RelPh_R alpha_LR N_bkg_R RelPh_B alpha_TB N_bkg_B maxLH NDF maxLHred RUN
\-e
dataT = 120.002, 0.007, 0.007,\
dataB = 99.384, 0, 0,\
dataE = 3.71888, 0, 0,\
dataTr = 15.0187, 0, 0,\
dataRALRAR = -0.003, 0, 0,\
dataRATRAB = -0.021, 0, 0,\
dataSpinRot = -10, 0, 0,\
Asy = 0.1543, 0.00077, -0.00077,\
Sigma = 0.107, 0.0042, -0.0043,\
Ph = 21.06, 0.56, -0.56,\
Field = 101.611, 0.032, -0.032,\
RelPh_L = 0, 0, 0,\
N0_L = 304.71, 0.33, -0.32,\
N_bkg_L = 5.85, 0.042, -0.042,\
RelPh_T = -88.67, 0.69, -0.69,\
N0_T = 322.01, 0.33, -0.33,\
N_bkg_T = 6.275, 0.043, -0.043,\
RelPh_R = 182.67, 0.68, -0.68,\
alpha_LR = 1.048, 0.0016, -0.0016,\
N_bkg_R = 6.506, 0.044, -0.043,\
RelPh_B = 91.87, 0.71, -0.71,\
alpha_TB = 0.9186, 0.0014, -0.0014,\
N_bkg_B = 5.789, 0.042, -0.042,\
maxLH = 20371.9, 0, 0,\
NDF = 20361, 0, 0,\
maxLHred = 1.00054, 0, 0,\
2498,,, YBCO-40nm, T=120.00 K, E=3.72 keV, B=~100(G)/17.30(A), Tr/Sa=15.02/10.54 kV, SR=-10.00
dataT = 110.002, 0.007, 0.007,\
dataB = 99.388, 0, 0,\
dataE = 3.71908, 0, 0,\
dataTr = 15.0188, 0, 0,\
dataRALRAR = -0.004, 0, 0,\
dataRATRAB = -0.021, 0, 0,\
dataSpinRot = -10, 0, 0,\
Asy = 0.15162, 0.00077, -0.00076,\
Sigma = 0.1038, 0.0043, -0.0044,\
Ph = 21.96, 0.56, -0.56,\
Field = 101.648, 0.033, -0.032,\
RelPh_L = 0, 0, 0,\
N0_L = 306.71, 0.32, -0.33,\
N_bkg_L = 5.651, 0.042, -0.042,\
RelPh_T = -88.95, 0.7, -0.71,\
N0_T = 322.89, 0.33, -0.33,\
N_bkg_T = 6.064, 0.043, -0.043,\
RelPh_R = 180.98, 0.69, -0.7,\
alpha_LR = 1.0395, 0.0015, -0.0015,\
N_bkg_R = 6.41, 0.043, -0.043,\
RelPh_B = 89.25, 0.71, -0.72,\
alpha_TB = 0.9199, 0.0014, -0.0014,\
N_bkg_B = 5.683, 0.042, -0.041,\
maxLH = 20571.2, 0, 0,\
NDF = 20361, 0, 0,\
maxLHred = 1.01032, 0, 0,\
2499,,, YBCO-40nm, T=110.00 K, E=3.72 keV, B=~100(G)/17.30(A), Tr/Sa=15.02/10.54 kV, SR=-10.00
dataT = 100.002, 0.005, 0.005,\
dataB = 99.392, 0, 0,\
dataE = 3.71967, 0, 0,\
dataTr = 15.0189, 0, 0,\
dataRALRAR = -0.004, 0, 0,\
dataRATRAB = -0.021, 0, 0,\
dataSpinRot = -10, 0, 0,\
Asy = 0.15397, 0.00077, -0.00077,\
Sigma = 0.1179, 0.004, -0.0041,\
Ph = 22.69, 0.57, -0.56,\
Field = 101.788, 0.033, -0.033,\
RelPh_L = 0, 0, 0,\
N0_L = 305.99, 0.33, -0.32,\
N_bkg_L = 5.667, 0.042, -0.042,\
RelPh_T = -89.73, 0.69, -0.7,\
N0_T = 322.59, 0.33, -0.33,\
N_bkg_T = 6.099, 0.043, -0.043,\
RelPh_R = 180.18, 0.69, -0.7,\
alpha_LR = 1.0455, 0.0015, -0.0016,\
N_bkg_R = 6.407, 0.043, -0.043,\
RelPh_B = 88.65, 0.7, -0.71,\
alpha_TB = 0.9225, 0.0014, -0.0014,\
N_bkg_B = 5.755, 0.042, -0.042,\
maxLH = 20798.7, 0, 0,\
NDF = 20361, 0, 0,\
maxLHred = 1.0215, 0, 0,\
2500,,, YBCO-40nm, T=100.00 K, E=3.72 keV, B=~100(G)/17.30(A), Tr/Sa=15.02/10.54 kV, SR=-10.00
dataT = 90.001, 0.006, 0.006,\
dataB = 99.392, 0, 0,\
dataE = 3.71908, 0, 0,\
dataTr = 15.0188, 0, 0,\
dataRALRAR = -0.004, 0, 0,\
dataRATRAB = -0.021, 0, 0,\
dataSpinRot = -10, 0, 0,\
Asy = 0.15292, 0.00078, -0.00076,\
Sigma = 0.1139, 0.0041, -0.0041,\
Ph = 22.77, 0.56, -0.56,\
Field = 101.934, 0.033, -0.032,\
RelPh_L = 0, 0, 0,\
N0_L = 305.8, 0.33, -0.32,\
N_bkg_L = 5.615, 0.041, -0.042,\
RelPh_T = -89.44, 0.7, -0.7,\
N0_T = 323.19, 0.33, -0.33,\
N_bkg_T = 5.877, 0.043, -0.043,\
RelPh_R = 179.8, 0.69, -0.69,\
alpha_LR = 1.0427, 0.0015, -0.0016,\
N_bkg_R = 6.38, 0.043, -0.043,\
RelPh_B = 90.59, 0.72, -0.72,\
alpha_TB = 0.9193, 0.0014, -0.0014,\
N_bkg_B = 5.684, 0.042, -0.041,\
maxLH = 20651.7, 0, 0,\
NDF = 20361, 0, 0,\
maxLHred = 1.01428, 0, 0,\
2501,,, YBCO-40nm, T=90.00 K, E=3.72 keV, B=~100(G)/17.30(A), Tr/Sa=15.02/10.54 kV, SR=-10.00
dataT = 80, 0.004, 0.004,\
dataB = 99.396, 0, 0,\
dataE = 3.71908, 0, 0,\
dataTr = 15.0187, 0, 0,\
dataRALRAR = -0.004, 0, 0,\
dataRATRAB = -0.021, 0, 0,\
dataSpinRot = -10, 0, 0,\
Asy = 0.15503, 0.0008, -0.0008,\
Sigma = 0.1701, 0.0037, -0.0037,\
Ph = 23.32, 0.58, -0.58,\
Field = 101.761, 0.038, -0.038,\
RelPh_L = 0, 0, 0,\
N0_L = 307.5, 0.33, -0.32,\
N_bkg_L = 5.583, 0.042, -0.042,\
RelPh_T = -89.57, 0.72, -0.72,\
N0_T = 322.69, 0.33, -0.33,\
N_bkg_T = 6.069, 0.043, -0.043,\
RelPh_R = 180.36, 0.7, -0.71,\
alpha_LR = 1.0438, 0.0015, -0.0016,\
N_bkg_R = 6.327, 0.043, -0.043,\
RelPh_B = 90.42, 0.73, -0.73,\
alpha_TB = 0.9273, 0.0014, -0.0014,\
N_bkg_B = 5.494, 0.041, -0.041,\
maxLH = 20164.1, 0, 0,\
NDF = 20361, 0, 0,\
maxLHred = 0.99033, 0, 0,\
2502,,, YBCO-40nm, T=80.00 K, E=3.72 keV, B=~100(G)/17.30(A), Tr/Sa=15.02/10.54 kV, SR=-10.00
dataT = 70.001, 0.006, 0.006,\
dataB = 99.399, 0, 0,\
dataE = 3.71908, 0, 0,\
dataTr = 15.0187, 0, 0,\
dataRALRAR = -0.004, 0, 0,\
dataRATRAB = -0.021, 0, 0,\
dataSpinRot = -10, 0, 0,\
Asy = 0.14723, 0.00085, -0.00085,\
Sigma = 0.2154, 0.0041, -0.0041,\
Ph = 24.96, 0.63, -0.63,\
Field = 100.813, 0.046, -0.046,\
RelPh_L = 0, 0, 0,\
N0_L = 305.91, 0.33, -0.32,\
N_bkg_L = 5.739, 0.042, -0.042,\
RelPh_T = -88.52, 0.78, -0.78,\
N0_T = 322.43, 0.33, -0.33,\
N_bkg_T = 6.083, 0.043, -0.043,\
RelPh_R = 181.37, 0.78, -0.77,\
alpha_LR = 1.0466, 0.0015, -0.0016,\
N_bkg_R = 6.381, 0.044, -0.043,\
RelPh_B = 90.77, 0.8, -0.8,\
alpha_TB = 0.9244, 0.0014, -0.0014,\
N_bkg_B = 5.651, 0.041, -0.041,\
maxLH = 20557.8, 0, 0,\
NDF = 20361, 0, 0,\
maxLHred = 1.00967, 0, 0,\
2503,,, YBCO-40nm, T=70.01 K, E=3.72 keV, B=~100(G)/17.30(A), Tr/Sa=15.02/10.54 kV, SR=-10.00
dataT = 60.001, 0.005, 0.005,\
dataB = 99.4, 0, 0,\
dataE = 3.71908, 0, 0,\
dataTr = 15.0186, 0, 0,\
dataRALRAR = -0.004, 0, 0,\
dataRATRAB = -0.021, 0, 0,\
dataSpinRot = -10, 0, 0,\
Asy = 0.14658, 0.00089, -0.00089,\
Sigma = 0.2583, 0.0044, -0.0044,\
Ph = 27.31, 0.65, -0.65,\
Field = 100.082, 0.053, -0.052,\
RelPh_L = 0, 0, 0,\
N0_L = 307.17, 0.33, -0.32,\
N_bkg_L = 5.644, 0.042, -0.042,\
RelPh_T = -90.36, 0.81, -0.81,\
N0_T = 322.7, 0.33, -0.33,\
N_bkg_T = 6.046, 0.043, -0.043,\
RelPh_R = 179.44, 0.8, -0.8,\
alpha_LR = 1.0422, 0.0015, -0.0015,\
N_bkg_R = 6.29, 0.043, -0.043,\
RelPh_B = 89.98, 0.83, -0.83,\
alpha_TB = 0.9204, 0.0014, -0.0014,\
N_bkg_B = 5.629, 0.042, -0.041,\
maxLH = 20312.5, 0, 0,\
NDF = 20361, 0, 0,\
maxLHred = 0.997618, 0, 0,\
2504,,, YBCO-40nm, T=60.00 K, E=3.72 keV, B=~100(G)/17.30(A), Tr/Sa=15.02/10.54 kV, SR=-10.00
dataT = 50.001, 0.005, 0.005,\
dataB = 99.4, 0, 0,\
dataE = 3.71908, 0, 0,\
dataTr = 15.0187, 0, 0,\
dataRALRAR = -0.004, 0, 0,\
dataRATRAB = -0.021, 0, 0,\
dataSpinRot = -10, 0, 0,\
Asy = 0.14694, 0.00092, -0.00091,\
Sigma = 0.3015, 0.0047, -0.0046,\
Ph = 26.54, 0.67, -0.67,\
Field = 99.56, 0.06, -0.06,\
RelPh_L = 0, 0, 0,\
N0_L = 308.21, 0.33, -0.33,\
N_bkg_L = 5.725, 0.042, -0.042,\
RelPh_T = -88.06, 0.84, -0.84,\
N0_T = 322.68, 0.33, -0.33,\
N_bkg_T = 5.998, 0.043, -0.043,\
RelPh_R = 182.28, 0.83, -0.83,\
alpha_LR = 1.034, 0.0015, -0.0015,\
N_bkg_R = 6.414, 0.043, -0.043,\
RelPh_B = 93.05, 0.85, -0.85,\
alpha_TB = 0.9233, 0.0014, -0.0014,\
N_bkg_B = 5.554, 0.041, -0.041,\
maxLH = 20520.8, 0, 0,\
NDF = 20361, 0, 0,\
maxLHred = 1.00785, 0, 0,\
2505,,, YBCO-40nm, T=50.00 K, E=3.72 keV, B=~100(G)/17.30(A), Tr/Sa=15.02/10.54 kV, SR=-10.00
dataT = 40, 0.004, 0.004,\
dataB = 99.399, 0, 0,\
dataE = 3.71908, 0, 0,\
dataTr = 15.0188, 0, 0,\
dataRALRAR = -0.003, 0, 0,\
dataRATRAB = -0.021, 0, 0,\
dataSpinRot = -10, 0, 0,\
Asy = 0.14448, 0.00093, -0.00093,\
Sigma = 0.3229, 0.0049, -0.0049,\
Ph = 27.69, 0.71, -0.71,\
Field = 99.218, 0.065, -0.065,\
RelPh_L = 0, 0, 0,\
N0_L = 308.64, 0.33, -0.32,\
N_bkg_L = 5.629, 0.042, -0.042,\
RelPh_T = -89.25, 0.87, -0.87,\
N0_T = 323.32, 0.33, -0.33,\
N_bkg_T = 5.986, 0.043, -0.043,\
RelPh_R = 179.57, 0.85, -0.85,\
alpha_LR = 1.0321, 0.0015, -0.0015,\
N_bkg_R = 6.356, 0.043, -0.043,\
RelPh_B = 92.12, 0.88, -0.88,\
alpha_TB = 0.9198, 0.0014, -0.0014,\
N_bkg_B = 5.56, 0.041, -0.041,\
maxLH = 20387.1, 0, 0,\
NDF = 20361, 0, 0,\
maxLHred = 1.00128, 0, 0,\
2506,,, YBCO-40nm, T=39.99 K, E=3.72 keV, B=~100(G)/17.30(A), Tr/Sa=15.02/10.54 kV, SR=-10.00
dataT = 30, 0.003, 0.003,\
dataB = 99.399, 0, 0,\
dataE = 3.71967, 0, 0,\
dataTr = 15.0187, 0, 0,\
dataRALRAR = -0.004, 0, 0,\
dataRATRAB = -0.021, 0, 0,\
dataSpinRot = -10, 0, 0,\
Asy = 0.14302, 0.00096, -0.00096,\
Sigma = 0.3559, 0.0054, -0.0053,\
Ph = 26.24, 0.73, -0.73,\
Field = 99.133, 0.071, -0.071,\
RelPh_L = 0, 0, 0,\
N0_L = 308.94, 0.33, -0.33,\
N_bkg_L = 5.538, 0.042, -0.042,\
RelPh_T = -89.1, 0.89, -0.89,\
N0_T = 325, 0.33, -0.33,\
N_bkg_T = 5.966, 0.043, -0.043,\
RelPh_R = 180.61, 0.88, -0.88,\
alpha_LR = 1.0277, 0.0015, -0.0015,\
N_bkg_R = 6.368, 0.043, -0.043,\
RelPh_B = 91.54, 0.92, -0.92,\
alpha_TB = 0.9171, 0.0014, -0.0014,\
N_bkg_B = 5.501, 0.041, -0.041,\
maxLH = 20754.5, 0, 0,\
NDF = 20361, 0, 0,\
maxLHred = 1.01933, 0, 0,\
2507,,, YBCO-40nm, T=30.00 K, E=3.72 keV, B=~100(G)/17.30(A), Tr/Sa=15.02/10.54 kV, SR=-10.00
dataT = 20, 0.01, 0.01,\
dataB = 99.398, 0, 0,\
dataE = 3.71967, 0, 0,\
dataTr = 15.0187, 0, 0,\
dataRALRAR = -0.003, 0, 0,\
dataRATRAB = -0.021, 0, 0,\
dataSpinRot = -10, 0, 0,\
Asy = 0.14124, 0.00098, -0.00097,\
Sigma = 0.3703, 0.0056, -0.0055,\
Ph = 27.39, 0.74, -0.74,\
Field = 98.751, 0.075, -0.075,\
RelPh_L = 0, 0, 0,\
N0_L = 309.63, 0.33, -0.32,\
N_bkg_L = 5.579, 0.042, -0.042,\
RelPh_T = -89.02, 0.92, -0.92,\
N0_T = 324.61, 0.33, -0.33,\
N_bkg_T = 6.045, 0.043, -0.043,\
RelPh_R = 180.44, 0.89, -0.9,\
alpha_LR = 1.028, 0.0015, -0.0015,\
N_bkg_R = 6.317, 0.043, -0.043,\
RelPh_B = 91.04, 0.94, -0.94,\
alpha_TB = 0.9176, 0.0014, -0.0014,\
N_bkg_B = 5.626, 0.042, -0.041,\
maxLH = 20451.1, 0, 0,\
NDF = 20361, 0, 0,\
maxLHred = 1.00443, 0, 0,\
2508,,, YBCO-40nm, T=19.98 K, E=3.72 keV, B=~100(G)/17.30(A), Tr/Sa=15.02/10.54 kV, SR=-10.00
dataT = 10, 0.01, 0.01,\
dataB = 99.4, 0, 0,\
dataE = 3.71967, 0, 0,\
dataTr = 15.0187, 0, 0,\
dataRALRAR = -0.004, 0, 0,\
dataRATRAB = -0.021, 0, 0,\
dataSpinRot = -10, 0, 0,\
Asy = 0.13867, 0.00099, -0.00098,\
Sigma = 0.3824, 0.0058, -0.0058,\
Ph = 29.09, 0.77, -0.77,\
Field = 98.629, 0.079, -0.079,\
RelPh_L = 0, 0, 0,\
N0_L = 309.62, 0.33, -0.32,\
N_bkg_L = 5.543, 0.042, -0.042,\
RelPh_T = -91.92, 0.94, -0.95,\
N0_T = 323.32, 0.33, -0.33,\
N_bkg_T = 6.028, 0.043, -0.043,\
RelPh_R = 180.01, 0.93, -0.93,\
alpha_LR = 1.0266, 0.0015, -0.0015,\
N_bkg_R = 6.234, 0.043, -0.043,\
RelPh_B = 90.07, 0.96, -0.96,\
alpha_TB = 0.9183, 0.0014, -0.0014,\
N_bkg_B = 5.573, 0.041, -0.041,\
maxLH = 20426.7, 0, 0,\
NDF = 20361, 0, 0,\
maxLHred = 1.00323, 0, 0,\
2509,,, YBCO-40nm, T=10.01 K, E=3.72 keV, B=~100(G)/17.30(A), Tr/Sa=15.02/10.54 kV, SR=-10.00
dataT = 5, 0.009, 0.009,\
dataB = 99.399, 0, 0,\
dataE = 3.71947, 0, 0,\
dataTr = 15.0187, 0, 0,\
dataRALRAR = -0.004, 0, 0,\
dataRATRAB = -0.021, 0, 0,\
dataSpinRot = -10, 0, 0,\
Asy = 0.13438, 0.00098, -0.00098,\
Sigma = 0.3809, 0.006, -0.0059,\
Ph = 27.97, 0.79, -0.79,\
Field = 98.57, 0.082, -0.081,\
RelPh_L = 0, 0, 0,\
N0_L = 309.88, 0.33, -0.33,\
N_bkg_L = 5.664, 0.042, -0.042,\
RelPh_T = -88.74, 0.97, -0.96,\
N0_T = 325.36, 0.33, -0.33,\
N_bkg_T = 5.981, 0.043, -0.043,\
RelPh_R = 180.84, 0.96, -0.96,\
alpha_LR = 1.0271, 0.0015, -0.0015,\
N_bkg_R = 6.324, 0.043, -0.043,\
RelPh_B = 92.48, 0.98, -0.99,\
alpha_TB = 0.9141, 0.0014, -0.0014,\
N_bkg_B = 5.608, 0.041, -0.042,\
maxLH = 20906.7, 0, 0,\
NDF = 20361, 0, 0,\
maxLHred = 1.0268, 0, 0,\
2510,,, YBCO-40nm, T=5.01 K, E=3.72 keV, B=~100(G)/17.30(A), Tr/Sa=15.02/10.54 kV, SR=-10.00

View File

@ -0,0 +1,16 @@
dataT dataTErr dataB dataE dataTr dataRALRAR dataRATRAB dataSpinRot Asy AsyPosErr AsyNegErr Sigma SigmaPosErr SigmaNegErr Ph PhPosErr PhNegErr Field FieldPosErr FieldNegErr RelPh_L RelPh_LPosErr RelPh_LNegErr N0_L N0_LPosErr N0_LNegErr N_bkg_L N_bkg_LPosErr N_bkg_LNegErr RelPh_T RelPh_TPosErr RelPh_TNegErr N0_T N0_TPosErr N0_TNegErr N_bkg_T N_bkg_TPosErr N_bkg_TNegErr RelPh_R RelPh_RPosErr RelPh_RNegErr alpha_LR alpha_LRPosErr alpha_LRNegErr N_bkg_R N_bkg_RPosErr N_bkg_RNegErr RelPh_B RelPh_BPosErr RelPh_BNegErr alpha_TB alpha_TBPosErr alpha_TBNegErr N_bkg_B N_bkg_BPosErr N_bkg_BNegErr maxLH NDF maxLHred RUN
120.001 0.008 1499.8 3.71888 15.019 0.002 -0.006 -10 0.15779 0.00081 0.0008 0.0681 0.0057 0.0061 -150.01 0.6 0.59 1513.489 0.032 0.031 0 0 0 262.5 0.3 0.3 4.93 0.039 0.039 -90.95 0.72 0.72 268.28 0.3 0.3 5.042 0.039 0.039 180 0.73 0.73 0.9991 0.0016 0.0016 5.228 0.039 0.039 90.52 0.73 0.73 0.9397 0.0015 0.0015 4.688 0.038 0.038 20436.1 20361 1.00369 2485
110.002 0.006 1499.8 3.71967 15.019 0.002 -0.006 -10 0.15809 0.00081 0.0008 0.0649 0.0059 0.0064 -149.17 0.58 0.59 1513.565 0.031 0.031 0 0 0 262.96 0.3 0.3 4.78 0.038 0.038 -90.23 0.72 0.71 268.63 0.3 0.3 4.938 0.039 0.039 178.56 0.72 0.71 0.999 0.0016 0.0016 5.152 0.039 0.039 88.76 0.74 0.73 0.9377 0.0015 0.0015 4.705 0.038 0.038 20767 20361 1.01994 2486
100.001 0.008 1499.8 3.71987 15 0.003 -0.006 -10 0.15934 0.00082 0.00082 0.0922 0.0047 0.0048 -150.01 0.59 0.59 1513.756 0.033 0.033 0 0 0 263.43 0.3 0.3 4.848 0.039 0.039 -88.93 0.72 0.72 268.4 0.3 0.3 4.936 0.039 0.039 180.65 0.73 0.73 0.9991 0.0016 0.0016 5.253 0.039 0.039 89.79 0.73 0.73 0.9424 0.0015 0.0015 4.794 0.038 0.038 20276.6 20361 0.995855 2487
90.001 0.006 1499.79 3.71947 15.0191 0.002 -0.006 -10 0.15729 0.00081 0.00081 0.0682 0.0058 0.0062 -151.06 0.58 0.59 1513.939 0.032 0.031 0 0 0 263.19 0.3 0.3 4.791 0.039 0.038 -88.06 0.73 0.71 268.08 0.3 0.3 5.07 0.039 0.039 180.74 0.73 0.72 0.996 0.0016 0.0016 5.257 0.04 0.039 91.29 0.73 0.72 0.9416 0.0015 0.0015 4.703 0.038 0.038 20817.9 20361 1.02244 2488
80.001 0.005 1499.79 3.71947 15.019 0.002 -0.006 -10 0.15485 0.00095 0.00095 0.2684 0.0043 0.0043 -148.61 0.7 0.68 1513.209 0.057 0.057 0 0 0 261.84 0.3 0.3 4.866 0.039 0.039 -87.62 0.82 0.85 267.69 0.3 0.3 5.009 0.039 0.039 182.56 0.83 0.86 1.0033 0.0016 0.0016 5.215 0.039 0.039 92.29 0.84 0.87 0.9398 0.0015 0.0015 4.713 0.038 0.038 20788.2 20361 1.02098 2489
70 0.008 1499.79 3.71967 15.019 0.002 -0.006 -10 0.1479 0.0012 0.0012 0.5707 0.0086 0.0084 -143.97 0.9 0.91 1510.98 0.13 0.12 0 0 0 262.34 0.3 0.3 4.771 0.039 0.038 -90.6 1.1 1.1 268.29 0.3 0.3 4.998 0.039 0.039 180.3 1.1 1.1 1.002 0.0016 0.0016 5.24 0.039 0.039 90.6 1.1 1.1 0.9407 0.0015 0.0015 4.649 0.038 0.038 20459.9 20361 1.00486 2490
60.001 0.004 1499.8 3.71947 15.0189 0.003 -0.006 -10 0.147 0.0014 0.0014 0.747 0.011 0.011 -140.6 1 1 1509.2 0.17 0.17 0 0 0 261.28 0.3 0.3 4.777 0.039 0.038 -92.4 1.2 1.2 268.75 0.3 0.3 4.861 0.039 0.039 177.8 1.2 1.2 1.0073 0.0016 0.0016 5.148 0.039 0.039 86.7 1.2 1.2 0.9345 0.0015 0.0015 4.798 0.038 0.038 20785.1 20361 1.02083 2491
50 0.004 1499.79 3.71947 15.019 0.002 -0.006 -10 0.1422 0.0014 0.0014 0.861 0.013 0.013 -141.6 1.1 1.1 1507.25 0.22 0.21 0 0 0 263.18 0.3 0.3 4.744 0.038 0.039 -88.5 1.3 1.3 269.06 0.3 0.3 5.062 0.039 0.04 181.5 1.3 1.3 1.0004 0.0016 0.0016 5.298 0.039 0.04 91 1.3 1.3 0.9408 0.0015 0.0015 4.734 0.038 0.038 20799.5 20361 1.02154 2492
40 0.005 1499.79 3.71967 15.019 0.003 -0.006 -10 0.1381 0.0015 0.0015 0.97 0.016 0.016 -140.2 1.2 1.2 1506.77 0.26 0.26 0 0 0 262.27 0.3 0.3 4.712 0.038 0.038 -90.9 1.4 1.4 269.85 0.3 0.3 4.981 0.039 0.039 181.2 1.4 1.4 1.0097 0.0016 0.0016 5.23 0.039 0.04 89.4 1.4 1.4 0.9379 0.0015 0.0015 4.738 0.038 0.038 20044.5 20361 0.984456 2493
30 0.004 1499.79 3.71947 15.019 0.003 -0.006 -10 0.1442 0.0016 0.0016 1.094 0.018 0.018 -137.3 1.2 1.2 1505.51 0.29 0.29 0 0 0 259.62 0.3 0.3 4.85 0.038 0.039 -93.2 1.4 1.4 268.18 0.3 0.3 5.057 0.039 0.039 178 1.4 1.4 1.0129 0.0016 0.0016 5.224 0.039 0.039 89.1 1.4 1.4 0.94 0.0015 0.0015 4.568 0.038 0.038 20448.4 20361 1.00429 2494
20 0.01 1499.8 3.71967 15.0191 0.002 -0.006 -10 0.1393 0.0017 0.0016 1.138 0.02 0.02 -141.9 1.3 1.3 1505.85 0.32 0.32 0 0 0 261.04 0.3 0.3 4.715 0.038 0.038 -87 1.5 1.5 269.62 0.3 0.3 5.026 0.039 0.039 180.2 1.5 1.5 1.0091 0.0016 0.0016 5.218 0.039 0.039 91.8 1.5 1.5 0.9369 0.0015 0.0015 4.643 0.038 0.038 20908.9 20361 1.02691 2495
10.001 0.007 1499.8 3.71967 15.0189 0.002 -0.006 -10 0.1431 0.0017 0.0017 1.227 0.021 0.021 -140.1 1.3 1.3 1504.58 0.34 0.34 0 0 0 261.09 0.3 0.3 4.683 0.038 0.038 -90.1 1.5 1.5 268.81 0.3 0.3 5.029 0.039 0.039 178.6 1.5 1.5 1.0115 0.0016 0.0016 5.133 0.039 0.039 89.2 1.5 1.5 0.9387 0.0015 0.0015 4.799 0.038 0.038 20464 20361 1.00506 2496
4.998 0.007 1499.8 3.71908 15.0189 0.003 -0.006 -10 0.1344 0.0015 0.0015 1.195 0.019 0.019 -135.1 1.2 1.2 1503.89 0.32 0.32 0 0 0 313.46 0.33 0.32 5.724 0.042 0.042 -90.8 1.4 1.4 322.27 0.33 0.33 6.028 0.043 0.043 175.3 1.5 1.5 1.0103 0.0015 0.0015 6.222 0.043 0.043 86.5 1.5 1.5 0.9401 0.0014 0.0014 5.563 0.041 0.042 20911.8 20361 1.02705 2497

View File

@ -0,0 +1,390 @@
TITLE
>>>Put your title here<<<
Abstract
>>>Put your abstract here<<<
LABELS
T (K)
B (G)
Implantation Energy (keV)
Transport (kV)
RAL-RAR (kV)
RAT-RAB (kV)
Spin Rotation Angle (degree)
Asy
Sigma
Ph
Field
RelPh_L
N0_L
N_bkg_L
RelPh_T
N0_T
N_bkg_T
RelPh_R
alpha_LR
N_bkg_R
RelPh_B
alpha_TB
N_bkg_B
maxLH
NDF
maxLHred
RUN
Data dataT dataB dataE dataTr dataRALRAR dataRATRAB dataSpinRot Asy Sigma Ph Field RelPh_L N0_L N_bkg_L RelPh_T N0_T N_bkg_T RelPh_R alpha_LR N_bkg_R RelPh_B alpha_TB N_bkg_B maxLH NDF maxLHred RUN
\-e
dataT = 120.001, 0.008, 0.008,\
dataB = 1499.8, 0, 0,\
dataE = 3.71888, 0, 0,\
dataTr = 15.019, 0, 0,\
dataRALRAR = 0.002, 0, 0,\
dataRATRAB = -0.006, 0, 0,\
dataSpinRot = -10, 0, 0,\
Asy = 0.15779, 0.00081, -0.0008,\
Sigma = 0.0681, 0.0057, -0.0061,\
Ph = -150.01, 0.6, -0.59,\
Field = 1513.489, 0.032, -0.031,\
RelPh_L = 0, 0, 0,\
N0_L = 262.5, 0.3, -0.3,\
N_bkg_L = 4.93, 0.039, -0.039,\
RelPh_T = -90.95, 0.72, -0.72,\
N0_T = 268.28, 0.3, -0.3,\
N_bkg_T = 5.042, 0.039, -0.039,\
RelPh_R = 180, 0.73, -0.73,\
alpha_LR = 0.9991, 0.0016, -0.0016,\
N_bkg_R = 5.228, 0.039, -0.039,\
RelPh_B = 90.52, 0.73, -0.73,\
alpha_TB = 0.9397, 0.0015, -0.0015,\
N_bkg_B = 4.688, 0.038, -0.038,\
maxLH = 20436.1, 0, 0,\
NDF = 20361, 0, 0,\
maxLHred = 1.00369, 0, 0,\
2485,,, YBCO-40nm, T=120.01 K, E=3.72 keV, B=~1500(G)/259.52(A), Tr/Sa=15.02/10.54 kV, SR=-10.00
dataT = 110.002, 0.006, 0.006,\
dataB = 1499.8, 0, 0,\
dataE = 3.71967, 0, 0,\
dataTr = 15.019, 0, 0,\
dataRALRAR = 0.002, 0, 0,\
dataRATRAB = -0.006, 0, 0,\
dataSpinRot = -10, 0, 0,\
Asy = 0.15809, 0.00081, -0.0008,\
Sigma = 0.0649, 0.0059, -0.0064,\
Ph = -149.17, 0.58, -0.59,\
Field = 1513.565, 0.031, -0.031,\
RelPh_L = 0, 0, 0,\
N0_L = 262.96, 0.3, -0.3,\
N_bkg_L = 4.78, 0.038, -0.038,\
RelPh_T = -90.23, 0.72, -0.71,\
N0_T = 268.63, 0.3, -0.3,\
N_bkg_T = 4.938, 0.039, -0.039,\
RelPh_R = 178.56, 0.72, -0.71,\
alpha_LR = 0.999, 0.0016, -0.0016,\
N_bkg_R = 5.152, 0.039, -0.039,\
RelPh_B = 88.76, 0.74, -0.73,\
alpha_TB = 0.9377, 0.0015, -0.0015,\
N_bkg_B = 4.705, 0.038, -0.038,\
maxLH = 20767, 0, 0,\
NDF = 20361, 0, 0,\
maxLHred = 1.01994, 0, 0,\
2486,,, YBCO-40nm, T=110.01 K, E=3.72 keV, B=~1500(G)/259.51(A), Tr/Sa=15.02/10.54 kV, SR=-10.00
dataT = 100.001, 0.008, 0.008,\
dataB = 1499.8, 0, 0,\
dataE = 3.71987, 0, 0,\
dataTr = 15, 0, 0,\
dataRALRAR = 0.003, 0, 0,\
dataRATRAB = -0.006, 0, 0,\
dataSpinRot = -10, 0, 0,\
Asy = 0.15934, 0.00082, -0.00082,\
Sigma = 0.0922, 0.0047, -0.0048,\
Ph = -150.01, 0.59, -0.59,\
Field = 1513.756, 0.033, -0.033,\
RelPh_L = 0, 0, 0,\
N0_L = 263.43, 0.3, -0.3,\
N_bkg_L = 4.848, 0.039, -0.039,\
RelPh_T = -88.93, 0.72, -0.72,\
N0_T = 268.4, 0.3, -0.3,\
N_bkg_T = 4.936, 0.039, -0.039,\
RelPh_R = 180.65, 0.73, -0.73,\
alpha_LR = 0.9991, 0.0016, -0.0016,\
N_bkg_R = 5.253, 0.039, -0.039,\
RelPh_B = 89.79, 0.73, -0.73,\
alpha_TB = 0.9424, 0.0015, -0.0015,\
N_bkg_B = 4.794, 0.038, -0.038,\
maxLH = 20276.6, 0, 0,\
NDF = 20361, 0, 0,\
maxLHred = 0.995855, 0, 0,\
2487,,, YBCO-40nm, T=100.00 K, E=3.72 keV, B=~1500(G)/259.52(A), Tr/Sa=15.02/10.54 kV, SR=-10.00
dataT = 90.001, 0.006, 0.006,\
dataB = 1499.79, 0, 0,\
dataE = 3.71947, 0, 0,\
dataTr = 15.0191, 0, 0,\
dataRALRAR = 0.002, 0, 0,\
dataRATRAB = -0.006, 0, 0,\
dataSpinRot = -10, 0, 0,\
Asy = 0.15729, 0.00081, -0.00081,\
Sigma = 0.0682, 0.0058, -0.0062,\
Ph = -151.06, 0.58, -0.59,\
Field = 1513.939, 0.032, -0.031,\
RelPh_L = 0, 0, 0,\
N0_L = 263.19, 0.3, -0.3,\
N_bkg_L = 4.791, 0.039, -0.038,\
RelPh_T = -88.06, 0.73, -0.71,\
N0_T = 268.08, 0.3, -0.3,\
N_bkg_T = 5.07, 0.039, -0.039,\
RelPh_R = 180.74, 0.73, -0.72,\
alpha_LR = 0.996, 0.0016, -0.0016,\
N_bkg_R = 5.257, 0.04, -0.039,\
RelPh_B = 91.29, 0.73, -0.72,\
alpha_TB = 0.9416, 0.0015, -0.0015,\
N_bkg_B = 4.703, 0.038, -0.038,\
maxLH = 20817.9, 0, 0,\
NDF = 20361, 0, 0,\
maxLHred = 1.02244, 0, 0,\
2488,,, YBCO-40nm, T=90.00 K, E=3.72 keV, B=~1500(G)/259.52(A), Tr/Sa=15.02/10.54 kV, SR=-10.00
dataT = 80.001, 0.005, 0.005,\
dataB = 1499.79, 0, 0,\
dataE = 3.71947, 0, 0,\
dataTr = 15.019, 0, 0,\
dataRALRAR = 0.002, 0, 0,\
dataRATRAB = -0.006, 0, 0,\
dataSpinRot = -10, 0, 0,\
Asy = 0.15485, 0.00095, -0.00095,\
Sigma = 0.2684, 0.0043, -0.0043,\
Ph = -148.61, 0.7, -0.68,\
Field = 1513.209, 0.057, -0.057,\
RelPh_L = 0, 0, 0,\
N0_L = 261.84, 0.3, -0.3,\
N_bkg_L = 4.866, 0.039, -0.039,\
RelPh_T = -87.62, 0.82, -0.85,\
N0_T = 267.69, 0.3, -0.3,\
N_bkg_T = 5.009, 0.039, -0.039,\
RelPh_R = 182.56, 0.83, -0.86,\
alpha_LR = 1.0033, 0.0016, -0.0016,\
N_bkg_R = 5.215, 0.039, -0.039,\
RelPh_B = 92.29, 0.84, -0.87,\
alpha_TB = 0.9398, 0.0015, -0.0015,\
N_bkg_B = 4.713, 0.038, -0.038,\
maxLH = 20788.2, 0, 0,\
NDF = 20361, 0, 0,\
maxLHred = 1.02098, 0, 0,\
2489,,, YBCO-40nm, T=80.00 K, E=3.72 keV, B=~1500(G)/259.51(A), Tr/Sa=15.02/10.54 kV, SR=-10.00
dataT = 70, 0.008, 0.008,\
dataB = 1499.79, 0, 0,\
dataE = 3.71967, 0, 0,\
dataTr = 15.019, 0, 0,\
dataRALRAR = 0.002, 0, 0,\
dataRATRAB = -0.006, 0, 0,\
dataSpinRot = -10, 0, 0,\
Asy = 0.1479, 0.0012, -0.0012,\
Sigma = 0.5707, 0.0086, -0.0084,\
Ph = -143.97, 0.9, -0.91,\
Field = 1510.98, 0.13, -0.12,\
RelPh_L = 0, 0, 0,\
N0_L = 262.34, 0.3, -0.3,\
N_bkg_L = 4.771, 0.039, -0.038,\
RelPh_T = -90.6, 1.1, -1.1,\
N0_T = 268.29, 0.3, -0.3,\
N_bkg_T = 4.998, 0.039, -0.039,\
RelPh_R = 180.3, 1.1, -1.1,\
alpha_LR = 1.002, 0.0016, -0.0016,\
N_bkg_R = 5.24, 0.039, -0.039,\
RelPh_B = 90.6, 1.1, -1.1,\
alpha_TB = 0.9407, 0.0015, -0.0015,\
N_bkg_B = 4.649, 0.038, -0.038,\
maxLH = 20459.9, 0, 0,\
NDF = 20361, 0, 0,\
maxLHred = 1.00486, 0, 0,\
2490,,, YBCO-40nm, T=70.00 K, E=3.72 keV, B=~1500(G)/259.52(A), Tr/Sa=15.02/10.54 kV, SR=-10.00
dataT = 60.001, 0.004, 0.004,\
dataB = 1499.8, 0, 0,\
dataE = 3.71947, 0, 0,\
dataTr = 15.0189, 0, 0,\
dataRALRAR = 0.003, 0, 0,\
dataRATRAB = -0.006, 0, 0,\
dataSpinRot = -10, 0, 0,\
Asy = 0.147, 0.0014, -0.0014,\
Sigma = 0.747, 0.011, -0.011,\
Ph = -140.6, 1, -1,\
Field = 1509.2, 0.17, -0.17,\
RelPh_L = 0, 0, 0,\
N0_L = 261.28, 0.3, -0.3,\
N_bkg_L = 4.777, 0.039, -0.038,\
RelPh_T = -92.4, 1.2, -1.2,\
N0_T = 268.75, 0.3, -0.3,\
N_bkg_T = 4.861, 0.039, -0.039,\
RelPh_R = 177.8, 1.2, -1.2,\
alpha_LR = 1.0073, 0.0016, -0.0016,\
N_bkg_R = 5.148, 0.039, -0.039,\
RelPh_B = 86.7, 1.2, -1.2,\
alpha_TB = 0.9345, 0.0015, -0.0015,\
N_bkg_B = 4.798, 0.038, -0.038,\
maxLH = 20785.1, 0, 0,\
NDF = 20361, 0, 0,\
maxLHred = 1.02083, 0, 0,\
2491,,, YBCO-40nm, T=60.00 K, E=3.72 keV, B=~1500(G)/259.51(A), Tr/Sa=15.02/10.54 kV, SR=-10.00
dataT = 50, 0.004, 0.004,\
dataB = 1499.79, 0, 0,\
dataE = 3.71947, 0, 0,\
dataTr = 15.019, 0, 0,\
dataRALRAR = 0.002, 0, 0,\
dataRATRAB = -0.006, 0, 0,\
dataSpinRot = -10, 0, 0,\
Asy = 0.1422, 0.0014, -0.0014,\
Sigma = 0.861, 0.013, -0.013,\
Ph = -141.6, 1.1, -1.1,\
Field = 1507.25, 0.22, -0.21,\
RelPh_L = 0, 0, 0,\
N0_L = 263.18, 0.3, -0.3,\
N_bkg_L = 4.744, 0.038, -0.039,\
RelPh_T = -88.5, 1.3, -1.3,\
N0_T = 269.06, 0.3, -0.3,\
N_bkg_T = 5.062, 0.039, -0.04,\
RelPh_R = 181.5, 1.3, -1.3,\
alpha_LR = 1.0004, 0.0016, -0.0016,\
N_bkg_R = 5.298, 0.039, -0.04,\
RelPh_B = 91, 1.3, -1.3,\
alpha_TB = 0.9408, 0.0015, -0.0015,\
N_bkg_B = 4.734, 0.038, -0.038,\
maxLH = 20799.5, 0, 0,\
NDF = 20361, 0, 0,\
maxLHred = 1.02154, 0, 0,\
2492,,, YBCO-40nm, T=49.99 K, E=3.72 keV, B=~1500(G)/259.52(A), Tr/Sa=15.02/10.54 kV, SR=-10.00
dataT = 40, 0.005, 0.005,\
dataB = 1499.79, 0, 0,\
dataE = 3.71967, 0, 0,\
dataTr = 15.019, 0, 0,\
dataRALRAR = 0.003, 0, 0,\
dataRATRAB = -0.006, 0, 0,\
dataSpinRot = -10, 0, 0,\
Asy = 0.1381, 0.0015, -0.0015,\
Sigma = 0.97, 0.016, -0.016,\
Ph = -140.2, 1.2, -1.2,\
Field = 1506.77, 0.26, -0.26,\
RelPh_L = 0, 0, 0,\
N0_L = 262.27, 0.3, -0.3,\
N_bkg_L = 4.712, 0.038, -0.038,\
RelPh_T = -90.9, 1.4, -1.4,\
N0_T = 269.85, 0.3, -0.3,\
N_bkg_T = 4.981, 0.039, -0.039,\
RelPh_R = 181.2, 1.4, -1.4,\
alpha_LR = 1.0097, 0.0016, -0.0016,\
N_bkg_R = 5.23, 0.039, -0.04,\
RelPh_B = 89.4, 1.4, -1.4,\
alpha_TB = 0.9379, 0.0015, -0.0015,\
N_bkg_B = 4.738, 0.038, -0.038,\
maxLH = 20044.5, 0, 0,\
NDF = 20361, 0, 0,\
maxLHred = 0.984456, 0, 0,\
2493,,, YBCO-40nm, T=40.00 K, E=3.72 keV, B=~1500(G)/259.52(A), Tr/Sa=15.02/10.54 kV, SR=-10.00
dataT = 30, 0.004, 0.004,\
dataB = 1499.79, 0, 0,\
dataE = 3.71947, 0, 0,\
dataTr = 15.019, 0, 0,\
dataRALRAR = 0.003, 0, 0,\
dataRATRAB = -0.006, 0, 0,\
dataSpinRot = -10, 0, 0,\
Asy = 0.1442, 0.0016, -0.0016,\
Sigma = 1.094, 0.018, -0.018,\
Ph = -137.3, 1.2, -1.2,\
Field = 1505.51, 0.29, -0.29,\
RelPh_L = 0, 0, 0,\
N0_L = 259.62, 0.3, -0.3,\
N_bkg_L = 4.85, 0.038, -0.039,\
RelPh_T = -93.2, 1.4, -1.4,\
N0_T = 268.18, 0.3, -0.3,\
N_bkg_T = 5.057, 0.039, -0.039,\
RelPh_R = 178, 1.4, -1.4,\
alpha_LR = 1.0129, 0.0016, -0.0016,\
N_bkg_R = 5.224, 0.039, -0.039,\
RelPh_B = 89.1, 1.4, -1.4,\
alpha_TB = 0.94, 0.0015, -0.0015,\
N_bkg_B = 4.568, 0.038, -0.038,\
maxLH = 20448.4, 0, 0,\
NDF = 20361, 0, 0,\
maxLHred = 1.00429, 0, 0,\
2494,,, YBCO-40nm, T=30.00 K, E=3.72 keV, B=~1500(G)/259.51(A), Tr/Sa=15.02/10.54 kV, SR=-10.00
dataT = 20, 0.01, 0.01,\
dataB = 1499.8, 0, 0,\
dataE = 3.71967, 0, 0,\
dataTr = 15.0191, 0, 0,\
dataRALRAR = 0.002, 0, 0,\
dataRATRAB = -0.006, 0, 0,\
dataSpinRot = -10, 0, 0,\
Asy = 0.1393, 0.0017, -0.0016,\
Sigma = 1.138, 0.02, -0.02,\
Ph = -141.9, 1.3, -1.3,\
Field = 1505.85, 0.32, -0.32,\
RelPh_L = 0, 0, 0,\
N0_L = 261.04, 0.3, -0.3,\
N_bkg_L = 4.715, 0.038, -0.038,\
RelPh_T = -87, 1.5, -1.5,\
N0_T = 269.62, 0.3, -0.3,\
N_bkg_T = 5.026, 0.039, -0.039,\
RelPh_R = 180.2, 1.5, -1.5,\
alpha_LR = 1.0091, 0.0016, -0.0016,\
N_bkg_R = 5.218, 0.039, -0.039,\
RelPh_B = 91.8, 1.5, -1.5,\
alpha_TB = 0.9369, 0.0015, -0.0015,\
N_bkg_B = 4.643, 0.038, -0.038,\
maxLH = 20908.9, 0, 0,\
NDF = 20361, 0, 0,\
maxLHred = 1.02691, 0, 0,\
2495,,, YBCO-40nm, T=20.00 K, E=3.72 keV, B=~1500(G)/259.52(A), Tr/Sa=15.02/10.54 kV, SR=-10.00
dataT = 10.001, 0.007, 0.007,\
dataB = 1499.8, 0, 0,\
dataE = 3.71967, 0, 0,\
dataTr = 15.0189, 0, 0,\
dataRALRAR = 0.002, 0, 0,\
dataRATRAB = -0.006, 0, 0,\
dataSpinRot = -10, 0, 0,\
Asy = 0.1431, 0.0017, -0.0017,\
Sigma = 1.227, 0.021, -0.021,\
Ph = -140.1, 1.3, -1.3,\
Field = 1504.58, 0.34, -0.34,\
RelPh_L = 0, 0, 0,\
N0_L = 261.09, 0.3, -0.3,\
N_bkg_L = 4.683, 0.038, -0.038,\
RelPh_T = -90.1, 1.5, -1.5,\
N0_T = 268.81, 0.3, -0.3,\
N_bkg_T = 5.029, 0.039, -0.039,\
RelPh_R = 178.6, 1.5, -1.5,\
alpha_LR = 1.0115, 0.0016, -0.0016,\
N_bkg_R = 5.133, 0.039, -0.039,\
RelPh_B = 89.2, 1.5, -1.5,\
alpha_TB = 0.9387, 0.0015, -0.0015,\
N_bkg_B = 4.799, 0.038, -0.038,\
maxLH = 20464, 0, 0,\
NDF = 20361, 0, 0,\
maxLHred = 1.00506, 0, 0,\
2496,,, YBCO-40nm, T=10.01 K, E=3.72 keV, B=~1500(G)/259.53(A), Tr/Sa=15.02/10.54 kV, SR=-10.00
dataT = 4.998, 0.007, 0.007,\
dataB = 1499.8, 0, 0,\
dataE = 3.71908, 0, 0,\
dataTr = 15.0189, 0, 0,\
dataRALRAR = 0.003, 0, 0,\
dataRATRAB = -0.006, 0, 0,\
dataSpinRot = -10, 0, 0,\
Asy = 0.1344, 0.0015, -0.0015,\
Sigma = 1.195, 0.019, -0.019,\
Ph = -135.1, 1.2, -1.2,\
Field = 1503.89, 0.32, -0.32,\
RelPh_L = 0, 0, 0,\
N0_L = 313.46, 0.33, -0.32,\
N_bkg_L = 5.724, 0.042, -0.042,\
RelPh_T = -90.8, 1.4, -1.4,\
N0_T = 322.27, 0.33, -0.33,\
N_bkg_T = 6.028, 0.043, -0.043,\
RelPh_R = 175.3, 1.5, -1.5,\
alpha_LR = 1.0103, 0.0015, -0.0015,\
N_bkg_R = 6.222, 0.043, -0.043,\
RelPh_B = 86.5, 1.5, -1.5,\
alpha_TB = 0.9401, 0.0014, -0.0014,\
N_bkg_B = 5.563, 0.041, -0.042,\
maxLH = 20911.8, 0, 0,\
NDF = 20361, 0, 0,\
maxLHred = 1.02705, 0, 0,\
2497,,, YBCO-40nm, T=4.99 K, E=3.72 keV, B=~1500(G)/259.51(A), Tr/Sa=15.02/10.54 kV, SR=-10.00

View File

@ -0,0 +1,282 @@
TITLE
>>>Put your title here<<<
Abstract
>>>Put your abstract here<<<
LABELS
T (K)
B (G)
Implantation Energy (keV)
Transport (kV)
RAL-RAR (kV)
RAT-RAB (kV)
Spin Rotation Angle (degree)
Asy
Sigma
Ph
Field
RelPh_L
N0_L
N_bkg_L
RelPh_T
N0_T
N_bkg_T
RelPh_R
alpha_LR
N_bkg_R
RelPh_B
alpha_TB
N_bkg_B
maxLH
NDF
maxLHred
RUN
Data dataT dataB dataE dataTr dataRALRAR dataRATRAB dataSpinRot Asy Sigma Ph Field RelPh_L N0_L N_bkg_L RelPh_T N0_T N_bkg_T RelPh_R alpha_LR N_bkg_R RelPh_B alpha_TB N_bkg_B maxLH NDF maxLHred RUN
\-e
dataT = 120, 0.004, 0.004,\
dataB = 1499.81, 0, 0,\
dataE = 24.2569, 0, 0,\
dataTr = 15.0188, 0, 0,\
dataRALRAR = 0.003, 0, 0,\
dataRATRAB = -0.006, 0, 0,\
dataSpinRot = -10, 0, 0,\
Asy = 0.16934, 0.00092, -0.00091,\
Sigma = 0.0504, 0.0076, -0.0087,\
Ph = -151.89, 0.62, -0.62,\
Field = 1513.14, 0.032, -0.032,\
RelPh_L = 0, 0, 0,\
N0_L = 199.87, 0.26, -0.26,\
N_bkg_L = 3.485, 0.033, -0.033,\
RelPh_T = -91.07, 0.76, -0.75,\
N0_T = 203.23, 0.26, -0.26,\
N_bkg_T = 3.652, 0.034, -0.034,\
RelPh_R = 180.84, 0.77, -0.77,\
alpha_LR = 1.0068, 0.0018, -0.0019,\
N_bkg_R = 3.97, 0.034, -0.034,\
RelPh_B = 88.76, 0.78, -0.77,\
alpha_TB = 0.9521, 0.0018, -0.0017,\
N_bkg_B = 3.508, 0.033, -0.033,\
maxLH = 20465.5, 0, 0,\
NDF = 20361, 0, 0,\
maxLHred = 1.00513, 0, 0,\
2519,,, YBCO-40nm, T=119.99 K, E=24.26 keV, B=~1500(G)/259.51(A), Tr/Sa=15.02/-9.99 kV, SR=-10.00
dataT = 120.001, 0.009, 0.009,\
dataB = 1499.81, 0, 0,\
dataE = 21.7587, 0, 0,\
dataTr = 15.0188, 0, 0,\
dataRALRAR = 0.002, 0, 0,\
dataRATRAB = -0.006, 0, 0,\
dataSpinRot = -10, 0, 0,\
Asy = 0.16434, 0.00092, -0.00091,\
Sigma = 0.026, 0.013, -0.026,\
Ph = -153.67, 0.63, -0.64,\
Field = 1513.255, 0.033, -0.033,\
RelPh_L = 0, 0, 0,\
N0_L = 200.43, 0.26, -0.26,\
N_bkg_L = 3.509, 0.033, -0.033,\
RelPh_T = -89.1, 0.78, -0.77,\
N0_T = 203.53, 0.26, -0.27,\
N_bkg_T = 3.735, 0.034, -0.034,\
RelPh_R = 180.88, 0.79, -0.78,\
alpha_LR = 1.0056, 0.0018, -0.0019,\
N_bkg_R = 3.886, 0.034, -0.034,\
RelPh_B = 90.92, 0.79, -0.78,\
alpha_TB = 0.9541, 0.0018, -0.0017,\
N_bkg_B = 3.605, 0.033, -0.033,\
maxLH = 20707.2, 0, 0,\
NDF = 20361, 0, 0,\
maxLHred = 1.017, 0, 0,\
2520,,, YBCO-40nm, T=120.00 K, E=21.76 keV, B=~1500(G)/259.52(A), Tr/Sa=15.02/-7.50 kV, SR=-10.00
dataT = 120.001, 0.004, 0.004,\
dataB = 1499.81, 0, 0,\
dataE = 19.2619, 0, 0,\
dataTr = 15.0187, 0, 0,\
dataRALRAR = 0.002, 0, 0,\
dataRATRAB = -0.006, 0, 0,\
dataSpinRot = -10, 0, 0,\
Asy = 0.16711, 0.00081, -0.0008,\
Sigma = 0.0619, 0.0058, -0.0063,\
Ph = -152.11, 0.55, -0.54,\
Field = 1513.153, 0.029, -0.029,\
RelPh_L = 0, 0, 0,\
N0_L = 263.35, 0.3, -0.29,\
N_bkg_L = 4.647, 0.038, -0.039,\
RelPh_T = -90.62, 0.66, -0.68,\
N0_T = 267.77, 0.3, -0.31,\
N_bkg_T = 4.863, 0.039, -0.038,\
RelPh_R = 181.79, 0.66, -0.68,\
alpha_LR = 1.0067, 0.0016, -0.0016,\
N_bkg_R = 5.119, 0.039, -0.039,\
RelPh_B = 91.18, 0.68, -0.7,\
alpha_TB = 0.9525, 0.0016, -0.0015,\
N_bkg_B = 4.671, 0.038, -0.038,\
maxLH = 20572.5, 0, 0,\
NDF = 20361, 0, 0,\
maxLHred = 1.01039, 0, 0,\
2521,,, YBCO-40nm, T=120.01 K, E=19.26 keV, B=~1500(G)/259.52(A), Tr/Sa=15.02/-5.00 kV, SR=-10.00
dataT = 120, 0.006, 0.006,\
dataB = 1499.8, 0, 0,\
dataE = 16.7609, 0, 0,\
dataTr = 15.0188, 0, 0,\
dataRALRAR = 0.003, 0, 0,\
dataRATRAB = -0.006, 0, 0,\
dataSpinRot = -10, 0, 0,\
Asy = 0.16787, 0.0008, -0.0008,\
Sigma = 0.0558, 0.0063, -0.0069,\
Ph = -151.23, 0.54, -0.54,\
Field = 1513.118, 0.029, -0.029,\
RelPh_L = 0, 0, 0,\
N0_L = 263.47, 0.3, -0.3,\
N_bkg_L = 4.654, 0.038, -0.038,\
RelPh_T = -91.14, 0.67, -0.66,\
N0_T = 268.17, 0.3, -0.3,\
N_bkg_T = 4.819, 0.039, -0.039,\
RelPh_R = 181.17, 0.68, -0.67,\
alpha_LR = 1.0052, 0.0016, -0.0016,\
N_bkg_R = 5.111, 0.039, -0.039,\
RelPh_B = 90.72, 0.68, -0.67,\
alpha_TB = 0.9499, 0.0015, -0.0015,\
N_bkg_B = 4.647, 0.038, -0.038,\
maxLH = 20241.8, 0, 0,\
NDF = 20361, 0, 0,\
maxLHred = 0.994146, 0, 0,\
2522,,, YBCO-40nm, T=120.00 K, E=16.76 keV, B=~1500(G)/259.52(A), Tr/Sa=15.02/-2.50 kV, SR=-10.00
dataT = 120, 0.005, 0.005,\
dataB = 1499.8, 0, 0,\
dataE = 14.2611, 0, 0,\
dataTr = 15.0188, 0, 0,\
dataRALRAR = 0.003, 0, 0,\
dataRATRAB = -0.006, 0, 0,\
dataSpinRot = -10, 0, 0,\
Asy = 0.16521, 0.0008, -0.0008,\
Sigma = 0.0583, 0.0061, -0.0067,\
Ph = -151.61, 0.55, -0.56,\
Field = 1513.082, 0.029, -0.029,\
RelPh_L = 0, 0, 0,\
N0_L = 263.39, 0.3, -0.3,\
N_bkg_L = 4.56, 0.038, -0.038,\
RelPh_T = -89.15, 0.68, -0.68,\
N0_T = 267.35, 0.3, -0.3,\
N_bkg_T = 4.938, 0.039, -0.039,\
RelPh_R = 180.19, 0.69, -0.68,\
alpha_LR = 1.0052, 0.0016, -0.0016,\
N_bkg_R = 5.079, 0.039, -0.039,\
RelPh_B = 89.84, 0.69, -0.69,\
alpha_TB = 0.9533, 0.0015, -0.0015,\
N_bkg_B = 4.604, 0.038, -0.038,\
maxLH = 20791.3, 0, 0,\
NDF = 20361, 0, 0,\
maxLHred = 1.02113, 0, 0,\
2523,,, YBCO-40nm, T=120.00 K, E=14.26 keV, B=~1500(G)/259.52(A), Tr/Sa=15.02/0.00 kV, SR=-10.00
dataT = 119.999, 0.005, 0.005,\
dataB = 1499.8, 0, 0,\
dataE = 11.7651, 0, 0,\
dataTr = 15.0189, 0, 0,\
dataRALRAR = 0.002, 0, 0,\
dataRATRAB = -0.006, 0, 0,\
dataSpinRot = -10, 0, 0,\
Asy = 0.16487, 0.0008, -0.0008,\
Sigma = 0.0676, 0.0054, -0.0058,\
Ph = -151.23, 0.57, -0.55,\
Field = 1513.098, 0.03, -0.03,\
RelPh_L = 0, 0, 0,\
N0_L = 263.64, 0.3, -0.3,\
N_bkg_L = 4.523, 0.038, -0.038,\
RelPh_T = -90.51, 0.67, -0.69,\
N0_T = 267.28, 0.3, -0.3,\
N_bkg_T = 4.806, 0.039, -0.038,\
RelPh_R = 180.31, 0.68, -0.7,\
alpha_LR = 0.9997, 0.0016, -0.0016,\
N_bkg_R = 5.061, 0.039, -0.039,\
RelPh_B = 90.13, 0.69, -0.71,\
alpha_TB = 0.9485, 0.0015, -0.0015,\
N_bkg_B = 4.654, 0.038, -0.038,\
maxLH = 20278.6, 0, 0,\
NDF = 20361, 0, 0,\
maxLHred = 0.995953, 0, 0,\
2524,,, YBCO-40nm, T=120.00 K, E=11.77 keV, B=~1500(G)/259.52(A), Tr/Sa=15.02/2.50 kV, SR=-10.00
dataT = 120, 0.008, 0.008,\
dataB = 1499.8, 0, 0,\
dataE = 9.26475, 0, 0,\
dataTr = 15.0189, 0, 0,\
dataRALRAR = 0.003, 0, 0,\
dataRATRAB = -0.006, 0, 0,\
dataSpinRot = -10, 0, 0,\
Asy = 0.16393, 0.0008, -0.00081,\
Sigma = 0.0771, 0.005, -0.0053,\
Ph = -152.46, 0.56, -0.57,\
Field = 1513.117, 0.031, -0.031,\
RelPh_L = 0, 0, 0,\
N0_L = 263.73, 0.3, -0.3,\
N_bkg_L = 4.689, 0.038, -0.039,\
RelPh_T = -89.47, 0.69, -0.69,\
N0_T = 269.4, 0.3, -0.3,\
N_bkg_T = 4.741, 0.039, -0.039,\
RelPh_R = 181.18, 0.69, -0.69,\
alpha_LR = 1.0054, 0.0016, -0.0016,\
N_bkg_R = 4.991, 0.039, -0.039,\
RelPh_B = 91.51, 0.71, -0.71,\
alpha_TB = 0.9437, 0.0015, -0.0015,\
N_bkg_B = 4.576, 0.038, -0.038,\
maxLH = 20462.3, 0, 0,\
NDF = 20361, 0, 0,\
maxLHred = 1.00498, 0, 0,\
2525,,, YBCO-40nm, T=120.01 K, E=9.26 keV, B=~1500(G)/259.52(A), Tr/Sa=15.02/5.00 kV, SR=-10.00
dataT = 120, 0.006, 0.006,\
dataB = 1499.8, 0, 0,\
dataE = 6.76675, 0, 0,\
dataTr = 15.0188, 0, 0,\
dataRALRAR = 0.003, 0, 0,\
dataRATRAB = -0.006, 0, 0,\
dataSpinRot = -10, 0, 0,\
Asy = 0.15957, 0.00081, -0.00081,\
Sigma = 0.0741, 0.0053, -0.0057,\
Ph = -151.8, 0.58, -0.58,\
Field = 1513.059, 0.031, -0.031,\
RelPh_L = 0, 0, 0,\
N0_L = 263.18, 0.3, -0.3,\
N_bkg_L = 4.709, 0.039, -0.038,\
RelPh_T = -90.14, 0.71, -0.71,\
N0_T = 269.04, 0.3, -0.3,\
N_bkg_T = 4.836, 0.039, -0.039,\
RelPh_R = 180.64, 0.71, -0.71,\
alpha_LR = 1.0099, 0.0016, -0.0016,\
N_bkg_R = 5.117, 0.039, -0.039,\
RelPh_B = 90.77, 0.73, -0.72,\
alpha_TB = 0.9449, 0.0015, -0.0015,\
N_bkg_B = 4.699, 0.038, -0.038,\
maxLH = 20674.9, 0, 0,\
NDF = 20361, 0, 0,\
maxLHred = 1.01542, 0, 0,\
2526,,, YBCO-40nm, T=120.00 K, E=6.77 keV, B=~1500(G)/259.53(A), Tr/Sa=15.02/7.50 kV, SR=-10.00
dataT = 120, 0.006, 0.006,\
dataB = 1499.8, 0, 0,\
dataE = 4.26974, 0, 0,\
dataTr = 15.0189, 0, 0,\
dataRALRAR = 0.002, 0, 0,\
dataRATRAB = -0.006, 0, 0,\
dataSpinRot = -10, 0, 0,\
Asy = 0.15359, 0.00081, -0.00081,\
Sigma = 0.0709, 0.0058, -0.0062,\
Ph = -149.66, 0.59, -0.6,\
Field = 1513.069, 0.032, -0.032,\
RelPh_L = 0, 0, 0,\
N0_L = 263.72, 0.3, -0.3,\
N_bkg_L = 4.66, 0.038, -0.038,\
RelPh_T = -92.13, 0.74, -0.73,\
N0_T = 269.6, 0.3, -0.3,\
N_bkg_T = 4.893, 0.039, -0.039,\
RelPh_R = 180.65, 0.75, -0.74,\
alpha_LR = 1.003, 0.0016, -0.0016,\
N_bkg_R = 5.05, 0.039, -0.039,\
RelPh_B = 88.51, 0.76, -0.75,\
alpha_TB = 0.9391, 0.0015, -0.0015,\
N_bkg_B = 4.642, 0.038, -0.038,\
maxLH = 20689.6, 0, 0,\
NDF = 20361, 0, 0,\
maxLHred = 1.01614, 0, 0,\
2527,,, YBCO-40nm, T=120.00 K, E=4.27 keV, B=~1500(G)/259.52(A), Tr/Sa=15.02/9.99 kV, SR=-10.00

View File

@ -0,0 +1,282 @@
TITLE
>>>Put your title here<<<
Abstract
>>>Put your abstract here<<<
LABELS
T (K)
B (G)
Implantation Energy (keV)
Transport (kV)
RAL-RAR (kV)
RAT-RAB (kV)
Spin Rotation Angle (degree)
Asy
Sigma
Ph
Field
RelPh_L
N0_L
N_bkg_L
RelPh_T
N0_T
N_bkg_T
RelPh_R
alpha_LR
N_bkg_R
RelPh_B
alpha_TB
N_bkg_B
maxLH
NDF
maxLHred
RUN
Data dataT dataB dataE dataTr dataRALRAR dataRATRAB dataSpinRot Asy Sigma Ph Field RelPh_L N0_L N_bkg_L RelPh_T N0_T N_bkg_T RelPh_R alpha_LR N_bkg_R RelPh_B alpha_TB N_bkg_B maxLH NDF maxLHred RUN
\-e
dataT = 30, 0.004, 0.004,\
dataB = 1499.79, 0, 0,\
dataE = 3.71947, 0, 0,\
dataTr = 15.019, 0, 0,\
dataRALRAR = 0.003, 0, 0,\
dataRATRAB = -0.006, 0, 0,\
dataSpinRot = -10, 0, 0,\
Asy = 0.1442, 0.0016, -0.0016,\
Sigma = 1.094, 0.018, -0.018,\
Ph = -137.3, 1.2, -1.2,\
Field = 1505.51, 0.29, -0.29,\
RelPh_L = 0, 0, 0,\
N0_L = 259.62, 0.3, -0.3,\
N_bkg_L = 4.85, 0.038, -0.039,\
RelPh_T = -93.2, 1.4, -1.4,\
N0_T = 268.18, 0.3, -0.3,\
N_bkg_T = 5.057, 0.039, -0.039,\
RelPh_R = 178, 1.4, -1.4,\
alpha_LR = 1.0129, 0.0016, -0.0016,\
N_bkg_R = 5.224, 0.039, -0.039,\
RelPh_B = 89.1, 1.4, -1.4,\
alpha_TB = 0.94, 0.0015, -0.0015,\
N_bkg_B = 4.568, 0.038, -0.038,\
maxLH = 20448.4, 0, 0,\
NDF = 20361, 0, 0,\
maxLHred = 1.00429, 0, 0,\
2494,,, YBCO-40nm, T=30.00 K, E=3.72 keV, B=~1500(G)/259.51(A), Tr/Sa=15.02/10.54 kV, SR=-10.00
dataT = 30.001, 0.004, 0.004,\
dataB = 1499.8, 0, 0,\
dataE = 24.2563, 0, 0,\
dataTr = 15.0187, 0, 0,\
dataRALRAR = 0.003, 0, 0,\
dataRATRAB = -0.006, 0, 0,\
dataSpinRot = -10, 0, 0,\
Asy = 0.08348, 0.00091, -0.00091,\
Sigma = 0.2063, 0.0075, -0.0076,\
Ph = -153.4, 1.2, -1.2,\
Field = 1515.221, 0.084, -0.085,\
RelPh_L = 0, 0, 0,\
N0_L = 260.74, 0.3, -0.3,\
N_bkg_L = 4.621, 0.038, -0.038,\
RelPh_T = -92.4, 1.5, -1.5,\
N0_T = 267.44, 0.3, -0.3,\
N_bkg_T = 4.696, 0.038, -0.039,\
RelPh_R = 178.1, 1.5, -1.5,\
alpha_LR = 1.0208, 0.0016, -0.0016,\
N_bkg_R = 5.086, 0.039, -0.039,\
RelPh_B = 89.6, 1.5, -1.5,\
alpha_TB = 0.9545, 0.0015, -0.0015,\
N_bkg_B = 4.63, 0.038, -0.038,\
maxLH = 20481.2, 0, 0,\
NDF = 20361, 0, 0,\
maxLHred = 1.0059, 0, 0,\
2537,,, YBCO-40nm, T=30.00 K, E=24.26 keV, B=~1500(G)/259.53(A), Tr/Sa=15.02/-9.99 kV, SR=-10.00
dataT = 30, 0.003, 0.003,\
dataB = 1499.8, 0, 0,\
dataE = 21.7591, 0, 0,\
dataTr = 15.0187, 0, 0,\
dataRALRAR = 0.001, 0, 0,\
dataRATRAB = -0.006, 0, 0,\
dataSpinRot = -10, 0, 0,\
Asy = 0.07978, 0.00093, -0.00092,\
Sigma = 0.2078, 0.0083, -0.0082,\
Ph = -152.2, 1.3, -1.3,\
Field = 1514.882, 0.087, -0.087,\
RelPh_L = 0, 0, 0,\
N0_L = 260.97, 0.3, -0.3,\
N_bkg_L = 4.582, 0.038, -0.038,\
RelPh_T = -91.2, 1.5, -1.5,\
N0_T = 267.3, 0.3, -0.3,\
N_bkg_T = 4.755, 0.039, -0.039,\
RelPh_R = 181, 1.6, -1.6,\
alpha_LR = 1.0185, 0.0016, -0.0016,\
N_bkg_R = 5.1, 0.039, -0.039,\
RelPh_B = 87.6, 1.6, -1.6,\
alpha_TB = 0.9575, 0.0015, -0.0015,\
N_bkg_B = 4.699, 0.038, -0.038,\
maxLH = 20504.8, 0, 0,\
NDF = 20361, 0, 0,\
maxLHred = 1.00706, 0, 0,\
2538,,, YBCO-40nm, T=30.00 K, E=21.76 keV, B=~1500(G)/259.52(A), Tr/Sa=15.02/-7.50 kV, SR=-10.00
dataT = 30, 0.003, 0.003,\
dataB = 1499.8, 0, 0,\
dataE = 19.2619, 0, 0,\
dataTr = 15.0188, 0, 0,\
dataRALRAR = 0.003, 0, 0,\
dataRATRAB = -0.006, 0, 0,\
dataSpinRot = -10, 0, 0,\
Asy = 0.08063, 0.001, -0.001,\
Sigma = 0.2839, 0.0096, -0.0095,\
Ph = -154.9, 1.3, -1.3,\
Field = 1515.06, 0.11, -0.11,\
RelPh_L = 0, 0, 0,\
N0_L = 261.98, 0.3, -0.3,\
N_bkg_L = 4.56, 0.038, -0.038,\
RelPh_T = -87.7, 1.6, -1.6,\
N0_T = 268.62, 0.3, -0.3,\
N_bkg_T = 4.78, 0.039, -0.039,\
RelPh_R = 180.4, 1.6, -1.7,\
alpha_LR = 1.0135, 0.0016, -0.0016,\
N_bkg_R = 5.194, 0.039, -0.039,\
RelPh_B = 91.6, 1.6, -1.6,\
alpha_TB = 0.9534, 0.0015, -0.0015,\
N_bkg_B = 4.484, 0.038, -0.038,\
maxLH = 20460.1, 0, 0,\
NDF = 20361, 0, 0,\
maxLHred = 1.00487, 0, 0,\
2539,,, YBCO-40nm, T=30.00 K, E=19.26 keV, B=~1500(G)/259.51(A), Tr/Sa=15.02/-5.00 kV, SR=-10.00
dataT = 30, 0.004, 0.004,\
dataB = 1499.8, 0, 0,\
dataE = 16.7617, 0, 0,\
dataTr = 15.0188, 0, 0,\
dataRALRAR = 0.002, 0, 0,\
dataRATRAB = -0.006, 0, 0,\
dataSpinRot = -10, 0, 0,\
Asy = 0.0837, 0.0011, -0.0011,\
Sigma = 0.366, 0.011, -0.011,\
Ph = -149.9, 1.3, -1.3,\
Field = 1514.86, 0.13, -0.13,\
RelPh_L = 0, 0, 0,\
N0_L = 259.64, 0.29, -0.3,\
N_bkg_L = 4.465, 0.038, -0.038,\
RelPh_T = -93.5, 1.7, -1.7,\
N0_T = 265.43, 0.3, -0.3,\
N_bkg_T = 4.757, 0.039, -0.039,\
RelPh_R = 174.2, 1.7, -1.7,\
alpha_LR = 1.0139, 0.0017, -0.0016,\
N_bkg_R = 5.005, 0.039, -0.039,\
RelPh_B = 90.1, 1.7, -1.7,\
alpha_TB = 0.9547, 0.0015, -0.0015,\
N_bkg_B = 4.445, 0.038, -0.038,\
maxLH = 20779.3, 0, 0,\
NDF = 20361, 0, 0,\
maxLHred = 1.02054, 0, 0,\
2540,,, YBCO-40nm, T=30.00 K, E=16.76 keV, B=~1500(G)/259.52(A), Tr/Sa=15.02/-2.50 kV, SR=-10.00
dataT = 30, 0.004, 0.004,\
dataB = 1499.8, 0, 0,\
dataE = 14.2611, 0, 0,\
dataTr = 15.0188, 0, 0,\
dataRALRAR = 0.003, 0, 0,\
dataRATRAB = -0.006, 0, 0,\
dataSpinRot = -10, 0, 0,\
Asy = 0.0932, 0.0012, -0.0012,\
Sigma = 0.514, 0.013, -0.013,\
Ph = -154.3, 1.3, -1.3,\
Field = 1514.6, 0.17, -0.17,\
RelPh_L = 0, 0, 0,\
N0_L = 262.63, 0.3, -0.3,\
N_bkg_L = 4.373, 0.038, -0.038,\
RelPh_T = -87.8, 1.6, -1.6,\
N0_T = 268.94, 0.3, -0.3,\
N_bkg_T = 4.63, 0.039, -0.039,\
RelPh_R = 179.6, 1.6, -1.6,\
alpha_LR = 1.0106, 0.0016, -0.0016,\
N_bkg_R = 5.126, 0.039, -0.039,\
RelPh_B = 90, 1.7, -1.7,\
alpha_TB = 0.9504, 0.0015, -0.0015,\
N_bkg_B = 4.514, 0.038, -0.038,\
maxLH = 20664.5, 0, 0,\
NDF = 20361, 0, 0,\
maxLHred = 1.01491, 0, 0,\
2541,,, YBCO-40nm, T=30.00 K, E=14.26 keV, B=~1500(G)/259.52(A), Tr/Sa=15.02/0.00 kV, SR=-10.00
dataT = 30, 0.003, 0.003,\
dataB = 1499.8, 0, 0,\
dataE = 11.7643, 0, 0,\
dataTr = 15.0188, 0, 0,\
dataRALRAR = 0.002, 0, 0,\
dataRATRAB = -0.006, 0, 0,\
dataSpinRot = -10, 0, 0,\
Asy = 0.1078, 0.0014, -0.0014,\
Sigma = 0.776, 0.017, -0.017,\
Ph = -152.4, 1.4, -1.4,\
Field = 1513.86, 0.24, -0.25,\
RelPh_L = 0, 0, 0,\
N0_L = 262.04, 0.3, -0.3,\
N_bkg_L = 4.51, 0.038, -0.038,\
RelPh_T = -86.9, 1.6, -1.6,\
N0_T = 268.88, 0.3, -0.3,\
N_bkg_T = 4.803, 0.039, -0.039,\
RelPh_R = 179.4, 1.7, -1.6,\
alpha_LR = 1.0167, 0.0016, -0.0016,\
N_bkg_R = 5.099, 0.039, -0.039,\
RelPh_B = 88.5, 1.7, -1.7,\
alpha_TB = 0.9521, 0.0015, -0.0015,\
N_bkg_B = 4.448, 0.038, -0.038,\
maxLH = 20231.1, 0, 0,\
NDF = 20361, 0, 0,\
maxLHred = 0.99362, 0, 0,\
2542,,, YBCO-40nm, T=30.00 K, E=11.76 keV, B=~1500(G)/259.52(A), Tr/Sa=15.02/2.50 kV, SR=-10.00
dataT = 30, 0.004, 0.004,\
dataB = 1499.8, 0, 0,\
dataE = 9.26416, 0, 0,\
dataTr = 15.0187, 0, 0,\
dataRALRAR = 0.003, 0, 0,\
dataRATRAB = -0.006, 0, 0,\
dataSpinRot = -10, 0, 0,\
Asy = 0.1273, 0.0016, -0.0016,\
Sigma = 1.025, 0.019, -0.018,\
Ph = -149.6, 1.3, -1.3,\
Field = 1510.71, 0.3, -0.3,\
RelPh_L = 0, 0, 0,\
N0_L = 261.52, 0.3, -0.29,\
N_bkg_L = 4.497, 0.038, -0.038,\
RelPh_T = -88, 1.6, -1.6,\
N0_T = 268.62, 0.3, -0.3,\
N_bkg_T = 4.729, 0.039, -0.039,\
RelPh_R = 181, 1.6, -1.6,\
alpha_LR = 1.0176, 0.0016, -0.0016,\
N_bkg_R = 5.077, 0.039, -0.039,\
RelPh_B = 91.7, 1.6, -1.6,\
alpha_TB = 0.9499, 0.0015, -0.0015,\
N_bkg_B = 4.48, 0.038, -0.038,\
maxLH = 20527.6, 0, 0,\
NDF = 20361, 0, 0,\
maxLHred = 1.00818, 0, 0,\
2543,,, YBCO-40nm, T=30.00 K, E=9.26 keV, B=~1500(G)/259.51(A), Tr/Sa=15.02/5.00 kV, SR=-10.00
dataT = 30, 0.003, 0.003,\
dataB = 1499.8, 0, 0,\
dataE = 6.76694, 0, 0,\
dataTr = 15.0187, 0, 0,\
dataRALRAR = 0.003, 0, 0,\
dataRATRAB = -0.006, 0, 0,\
dataSpinRot = -10, 0, 0,\
Asy = 0.1417, 0.0017, -0.0016,\
Sigma = 1.144, 0.019, -0.019,\
Ph = -144.9, 1.3, -1.3,\
Field = 1508.39, 0.31, -0.31,\
RelPh_L = 0, 0, 0,\
N0_L = 261.99, 0.3, -0.3,\
N_bkg_L = 4.442, 0.038, -0.038,\
RelPh_T = -92.4, 1.5, -1.5,\
N0_T = 268.51, 0.3, -0.3,\
N_bkg_T = 4.721, 0.039, -0.039,\
RelPh_R = 180.8, 1.5, -1.5,\
alpha_LR = 1.0138, 0.0016, -0.0016,\
N_bkg_R = 5.004, 0.039, -0.039,\
RelPh_B = 91.2, 1.5, -1.5,\
alpha_TB = 0.9496, 0.0015, -0.0015,\
N_bkg_B = 4.493, 0.038, -0.038,\
maxLH = 20633.8, 0, 0,\
NDF = 20361, 0, 0,\
maxLHred = 1.0134, 0, 0,\
2544,,, YBCO-40nm, T=30.00 K, E=6.77 keV, B=~1500(G)/259.52(A), Tr/Sa=15.02/7.50 kV, SR=-10.00

View File

@ -0,0 +1,309 @@
TITLE
>>>Put your title here<<<
Abstract
>>>Put your abstract here<<<
LABELS
T (K)
B (G)
Implantation Energy (keV)
Transport (kV)
RAL-RAR (kV)
RAT-RAB (kV)
Spin Rotation Angle (degree)
Asy
Sigma
Ph
Field
RelPh_L
N0_L
N_bkg_L
RelPh_T
N0_T
N_bkg_T
RelPh_R
alpha_LR
N_bkg_R
RelPh_B
alpha_TB
N_bkg_B
maxLH
NDF
maxLHred
RUN
Data dataT dataB dataE dataTr dataRALRAR dataRATRAB dataSpinRot Asy Sigma Ph Field RelPh_L N0_L N_bkg_L RelPh_T N0_T N_bkg_T RelPh_R alpha_LR N_bkg_R RelPh_B alpha_TB N_bkg_B maxLH NDF maxLHred RUN
\-e
dataT = 4.998, 0.007, 0.007,\
dataB = 1499.8, 0, 0,\
dataE = 3.71908, 0, 0,\
dataTr = 15.0189, 0, 0,\
dataRALRAR = 0.003, 0, 0,\
dataRATRAB = -0.006, 0, 0,\
dataSpinRot = -10, 0, 0,\
Asy = 0.1344, 0.0015, -0.0015,\
Sigma = 1.195, 0.019, -0.019,\
Ph = -135.1, 1.2, -1.2,\
Field = 1503.89, 0.32, -0.32,\
RelPh_L = 0, 0, 0,\
N0_L = 313.46, 0.33, -0.32,\
N_bkg_L = 5.724, 0.042, -0.042,\
RelPh_T = -90.8, 1.4, -1.4,\
N0_T = 322.27, 0.33, -0.33,\
N_bkg_T = 6.028, 0.043, -0.043,\
RelPh_R = 175.3, 1.5, -1.5,\
alpha_LR = 1.0103, 0.0015, -0.0015,\
N_bkg_R = 6.222, 0.043, -0.043,\
RelPh_B = 86.5, 1.5, -1.5,\
alpha_TB = 0.9401, 0.0014, -0.0014,\
N_bkg_B = 5.563, 0.041, -0.042,\
maxLH = 20911.8, 0, 0,\
NDF = 20361, 0, 0,\
maxLHred = 1.02705, 0, 0,\
2497,,, YBCO-40nm, T=4.99 K, E=3.72 keV, B=~1500(G)/259.51(A), Tr/Sa=15.02/10.54 kV, SR=-10.00
dataT = 4.998, 0.007, 0.007,\
dataB = 1499.79, 0, 0,\
dataE = 5.26731, 0, 0,\
dataTr = 15.0189, 0, 0,\
dataRALRAR = 0.003, 0, 0,\
dataRATRAB = -0.006, 0, 0,\
dataSpinRot = -10, 0, 0,\
Asy = 0.1307, 0.0018, -0.0018,\
Sigma = 1.276, 0.025, -0.025,\
Ph = -139.5, 1.4, -1.5,\
Field = 1504.23, 0.4, -0.39,\
RelPh_L = 0, 0, 0,\
N0_L = 262.85, 0.3, -0.3,\
N_bkg_L = 4.611, 0.038, -0.038,\
RelPh_T = -87.5, 1.7, -1.7,\
N0_T = 269.2, 0.3, -0.3,\
N_bkg_T = 4.83, 0.039, -0.039,\
RelPh_R = 178.1, 1.7, -1.7,\
alpha_LR = 1.0069, 0.0016, -0.0016,\
N_bkg_R = 5.114, 0.039, -0.039,\
RelPh_B = 89.6, 1.7, -1.7,\
alpha_TB = 0.9394, 0.0015, -0.0015,\
N_bkg_B = 4.564, 0.038, -0.038,\
maxLH = 20497.6, 0, 0,\
NDF = 20361, 0, 0,\
maxLHred = 1.00671, 0, 0,\
2528,,, YBCO-40nm, T=5.01 K, E=5.27 keV, B=~1500(G)/259.52(A), Tr/Sa=15.02/9.00 kV, SR=-10.00
dataT = 4.998, 0.008, 0.008,\
dataB = 1499.79, 0, 0,\
dataE = 6.76675, 0, 0,\
dataTr = 15.0188, 0, 0,\
dataRALRAR = 0.003, 0, 0,\
dataRATRAB = -0.006, 0, 0,\
dataSpinRot = -10, 0, 0,\
Asy = 0.1285, 0.0017, -0.0018,\
Sigma = 1.295, 0.025, -0.025,\
Ph = -143, 1.5, -1.5,\
Field = 1507.23, 0.4, -0.4,\
RelPh_L = 0, 0, 0,\
N0_L = 262.67, 0.3, -0.3,\
N_bkg_L = 4.636, 0.038, -0.038,\
RelPh_T = -91.3, 1.7, -1.7,\
N0_T = 268.61, 0.3, -0.3,\
N_bkg_T = 4.84, 0.039, -0.039,\
RelPh_R = 178.3, 1.7, -1.7,\
alpha_LR = 1.0105, 0.0016, -0.0016,\
N_bkg_R = 5.149, 0.039, -0.039,\
RelPh_B = 88.5, 1.8, -1.8,\
alpha_TB = 0.9447, 0.0015, -0.0015,\
N_bkg_B = 4.557, 0.038, -0.038,\
maxLH = 20497.7, 0, 0,\
NDF = 20361, 0, 0,\
maxLHred = 1.00671, 0, 0,\
2529,,, YBCO-40nm, T=5.00 K, E=6.77 keV, B=~1500(G)/259.52(A), Tr/Sa=15.02/7.50 kV, SR=-10.00
dataT = 4.999, 0.009, 0.009,\
dataB = 1499.79, 0, 0,\
dataE = 9.26416, 0, 0,\
dataTr = 15.0188, 0, 0,\
dataRALRAR = 0.002, 0, 0,\
dataRATRAB = -0.006, 0, 0,\
dataSpinRot = -10, 0, 0,\
Asy = 0.1268, 0.0017, -0.0017,\
Sigma = 1.17, 0.022, -0.022,\
Ph = -146, 1.4, -1.5,\
Field = 1511.56, 0.38, -0.37,\
RelPh_L = 0, 0, 0,\
N0_L = 248.36, 0.3, -0.3,\
N_bkg_L = 6.824, 0.041, -0.041,\
RelPh_T = -96.6, 1.7, -1.7,\
N0_T = 254.82, 0.3, -0.3,\
N_bkg_T = 7.073, 0.042, -0.042,\
RelPh_R = 177.1, 1.7, -1.7,\
alpha_LR = 1.0124, 0.0017, -0.0017,\
N_bkg_R = 7.658, 0.042, -0.043,\
RelPh_B = 84.5, 1.8, -1.8,\
alpha_TB = 0.9465, 0.0016, -0.0016,\
N_bkg_B = 6.801, 0.041, -0.041,\
maxLH = 20224.1, 0, 0,\
NDF = 20361, 0, 0,\
maxLHred = 0.993276, 0, 0,\
2530,,, YBCO-40nm, T=4.99 K, E=9.26 keV, B=~1500(G)/259.53(A), Tr/Sa=15.02/5.00 kV, SR=-10.00
dataT = 5, 0.01, 0.01,\
dataB = 1499.79, 0, 0,\
dataE = 11.7651, 0, 0,\
dataTr = 15.0189, 0, 0,\
dataRALRAR = 0.003, 0, 0,\
dataRATRAB = -0.006, 0, 0,\
dataSpinRot = -10, 0, 0,\
Asy = 0.114, 0.0014, -0.0014,\
Sigma = 0.804, 0.016, -0.016,\
Ph = -151.3, 1.3, -1.3,\
Field = 1514.28, 0.24, -0.24,\
RelPh_L = 0, 0, 0,\
N0_L = 263.05, 0.3, -0.3,\
N_bkg_L = 4.629, 0.038, -0.038,\
RelPh_T = -89.2, 1.6, -1.6,\
N0_T = 267.73, 0.3, -0.3,\
N_bkg_T = 4.794, 0.039, -0.039,\
RelPh_R = 181.6, 1.6, -1.6,\
alpha_LR = 1.0108, 0.0016, -0.0016,\
N_bkg_R = 5.149, 0.039, -0.039,\
RelPh_B = 87.1, 1.6, -1.6,\
alpha_TB = 0.9522, 0.0015, -0.0015,\
N_bkg_B = 4.666, 0.038, -0.038,\
maxLH = 20587.8, 0, 0,\
NDF = 20361, 0, 0,\
maxLHred = 1.01114, 0, 0,\
2531,,, YBCO-40nm, T=5.00 K, E=11.76 keV, B=~1500(G)/259.51(A), Tr/Sa=15.02/2.50 kV, SR=-10.00
dataT = 5, 0.009, 0.009,\
dataB = 1499.79, 0, 0,\
dataE = 14.2681, 0, 0,\
dataTr = 15.0188, 0, 0,\
dataRALRAR = 0.002, 0, 0,\
dataRATRAB = -0.006, 0, 0,\
dataSpinRot = -10, 0, 0,\
Asy = 0.1108, 0.0013, -0.0013,\
Sigma = 0.566, 0.012, -0.012,\
Ph = -152.2, 1.2, -1.2,\
Field = 1515.19, 0.16, -0.16,\
RelPh_L = 0, 0, 0,\
N0_L = 262.77, 0.3, -0.3,\
N_bkg_L = 4.568, 0.038, -0.038,\
RelPh_T = -90.5, 1.4, -1.4,\
N0_T = 266.86, 0.3, -0.3,\
N_bkg_T = 4.788, 0.039, -0.039,\
RelPh_R = 179.8, 1.4, -1.4,\
alpha_LR = 1.0129, 0.0016, -0.0016,\
N_bkg_R = 5.145, 0.039, -0.04,\
RelPh_B = 89.5, 1.5, -1.5,\
alpha_TB = 0.9534, 0.0015, -0.0015,\
N_bkg_B = 4.67, 0.038, -0.038,\
maxLH = 20578.7, 0, 0,\
NDF = 20361, 0, 0,\
maxLHred = 1.01069, 0, 0,\
2532,,, YBCO-40nm, T=5.00 K, E=14.27 keV, B=~1500(G)/259.53(A), Tr/Sa=15.02/-0.00 kV, SR=-10.00
dataT = 5, 0.008, 0.008,\
dataB = 1499.8, 0, 0,\
dataE = 16.7611, 0, 0,\
dataTr = 15.0188, 0, 0,\
dataRALRAR = 0.002, 0, 0,\
dataRATRAB = -0.006, 0, 0,\
dataSpinRot = -10, 0, 0,\
Asy = 0.1072, 0.0011, -0.0011,\
Sigma = 0.418, 0.009, -0.0089,\
Ph = -149.2, 1.1, -1.1,\
Field = 1514.96, 0.12, -0.12,\
RelPh_L = 0, 0, 0,\
N0_L = 263.94, 0.3, -0.3,\
N_bkg_L = 4.515, 0.038, -0.038,\
RelPh_T = -94.2, 1.3, -1.3,\
N0_T = 264.28, 0.3, -0.3,\
N_bkg_T = 4.805, 0.039, -0.039,\
RelPh_R = 177.3, 1.4, -1.4,\
alpha_LR = 1.0129, 0.0016, -0.0016,\
N_bkg_R = 5.059, 0.039, -0.039,\
RelPh_B = 87.9, 1.4, -1.4,\
alpha_TB = 0.9694, 0.0016, -0.0016,\
N_bkg_B = 4.635, 0.038, -0.038,\
maxLH = 20300.8, 0, 0,\
NDF = 20361, 0, 0,\
maxLHred = 0.997043, 0, 0,\
2533,,, YBCO-40nm, T=4.99 K, E=16.76 keV, B=~1500(G)/259.52(A), Tr/Sa=15.02/-2.50 kV, SR=-10.00
dataT = 5, 0.007, 0.007,\
dataB = 1499.79, 0, 0,\
dataE = 19.2619, 0, 0,\
dataTr = 15.0189, 0, 0,\
dataRALRAR = 0.003, 0, 0,\
dataRATRAB = -0.006, 0, 0,\
dataSpinRot = -10, 0, 0,\
Asy = 0.1043, 0.001, -0.001,\
Sigma = 0.309, 0.0075, -0.0074,\
Ph = -151.7, 1.1, -1,\
Field = 1514.903, 0.092, -0.092,\
RelPh_L = 0, 0, 0,\
N0_L = 262.43, 0.3, -0.3,\
N_bkg_L = 4.574, 0.038, -0.038,\
RelPh_T = -90.6, 1.3, -1.3,\
N0_T = 268.19, 0.3, -0.3,\
N_bkg_T = 4.824, 0.039, -0.039,\
RelPh_R = 180.9, 1.3, -1.3,\
alpha_LR = 1.0128, 0.0016, -0.0016,\
N_bkg_R = 5.112, 0.039, -0.039,\
RelPh_B = 90.8, 1.3, -1.3,\
alpha_TB = 0.9505, 0.0015, -0.0015,\
N_bkg_B = 4.593, 0.038, -0.038,\
maxLH = 20473.5, 0, 0,\
NDF = 20361, 0, 0,\
maxLHred = 1.00553, 0, 0,\
2534,,, YBCO-40nm, T=4.99 K, E=19.26 keV, B=~1500(G)/259.52(A), Tr/Sa=15.02/-5.00 kV, SR=-10.00
dataT = 5, 0.007, 0.007,\
dataB = 1499.79, 0, 0,\
dataE = 21.7593, 0, 0,\
dataTr = 15.0189, 0, 0,\
dataRALRAR = 0.003, 0, 0,\
dataRATRAB = -0.006, 0, 0,\
dataSpinRot = -10, 0, 0,\
Asy = 0.10474, 0.00098, -0.00098,\
Sigma = 0.2659, 0.0071, -0.007,\
Ph = -150.4, 1, -1,\
Field = 1515.035, 0.08, -0.08,\
RelPh_L = 0, 0, 0,\
N0_L = 261.39, 0.3, -0.3,\
N_bkg_L = 4.543, 0.038, -0.038,\
RelPh_T = -90.9, 1.2, -1.2,\
N0_T = 268.52, 0.3, -0.3,\
N_bkg_T = 4.69, 0.039, -0.039,\
RelPh_R = 178.2, 1.2, -1.2,\
alpha_LR = 1.0139, 0.0016, -0.0016,\
N_bkg_R = 5.083, 0.039, -0.039,\
RelPh_B = 89.2, 1.3, -1.3,\
alpha_TB = 0.9471, 0.0015, -0.0015,\
N_bkg_B = 4.607, 0.038, -0.038,\
maxLH = 20622.1, 0, 0,\
NDF = 20361, 0, 0,\
maxLHred = 1.01282, 0, 0,\
2535,,, YBCO-40nm, T=4.99 K, E=21.76 keV, B=~1500(G)/259.52(A), Tr/Sa=15.02/-7.50 kV, SR=-10.00
dataT = 5.001, 0.01, 0.01,\
dataB = 1499.79, 0, 0,\
dataE = 24.2563, 0, 0,\
dataTr = 15.0188, 0, 0,\
dataRALRAR = 0.002, 0, 0,\
dataRATRAB = -0.006, 0, 0,\
dataSpinRot = -10, 0, 0,\
Asy = 0.10771, 0.00094, -0.00094,\
Sigma = 0.2397, 0.0062, -0.0062,\
Ph = -152.55, 0.97, -0.97,\
Field = 1515.146, 0.073, -0.072,\
RelPh_L = 0, 0, 0,\
N0_L = 262.19, 0.3, -0.3,\
N_bkg_L = 4.579, 0.038, -0.038,\
RelPh_T = -89.5, 1.2, -1.2,\
N0_T = 267.63, 0.3, -0.3,\
N_bkg_T = 4.748, 0.039, -0.039,\
RelPh_R = 179.4, 1.2, -1.2,\
alpha_LR = 1.0111, 0.0016, -0.0016,\
N_bkg_R = 5.27, 0.039, -0.04,\
RelPh_B = 89.3, 1.2, -1.2,\
alpha_TB = 0.9562, 0.0015, -0.0015,\
N_bkg_B = 4.564, 0.038, -0.038,\
maxLH = 20230, 0, 0,\
NDF = 20361, 0, 0,\
maxLHred = 0.993566, 0, 0,\
2536,,, YBCO-40nm, T=5.00 K, E=24.26 keV, B=~1500(G)/259.52(A), Tr/Sa=15.02/-9.99 kV, SR=-10.00

View File

@ -0,0 +1,282 @@
TITLE
>>>Put your title here<<<
Abstract
>>>Put your abstract here<<<
LABELS
T (K)
B (G)
Implantation Energy (keV)
Transport (kV)
RAL-RAR (kV)
RAT-RAB (kV)
Spin Rotation Angle (degree)
Asy
Sigma
Ph
Field
RelPh_L
N0_L
N_bkg_L
RelPh_T
N0_T
N_bkg_T
RelPh_R
alpha_LR
N_bkg_R
RelPh_B
alpha_TB
N_bkg_B
maxLH
NDF
maxLHred
RUN
Data dataT dataB dataE dataTr dataRALRAR dataRATRAB dataSpinRot Asy Sigma Ph Field RelPh_L N0_L N_bkg_L RelPh_T N0_T N_bkg_T RelPh_R alpha_LR N_bkg_R RelPh_B alpha_TB N_bkg_B maxLH NDF maxLHred RUN
\-e
dataT = 60.001, 0.004, 0.004,\
dataB = 1499.8, 0, 0,\
dataE = 3.71947, 0, 0,\
dataTr = 15.0189, 0, 0,\
dataRALRAR = 0.003, 0, 0,\
dataRATRAB = -0.006, 0, 0,\
dataSpinRot = -10, 0, 0,\
Asy = 0.147, 0.0014, -0.0014,\
Sigma = 0.747, 0.011, -0.011,\
Ph = -140.6, 1, -1,\
Field = 1509.2, 0.17, -0.17,\
RelPh_L = 0, 0, 0,\
N0_L = 261.28, 0.3, -0.3,\
N_bkg_L = 4.777, 0.039, -0.038,\
RelPh_T = -92.4, 1.2, -1.2,\
N0_T = 268.75, 0.3, -0.3,\
N_bkg_T = 4.861, 0.039, -0.039,\
RelPh_R = 177.8, 1.2, -1.2,\
alpha_LR = 1.0073, 0.0016, -0.0016,\
N_bkg_R = 5.148, 0.039, -0.039,\
RelPh_B = 86.7, 1.2, -1.2,\
alpha_TB = 0.9345, 0.0015, -0.0015,\
N_bkg_B = 4.798, 0.038, -0.038,\
maxLH = 20785.1, 0, 0,\
NDF = 20361, 0, 0,\
maxLHred = 1.02083, 0, 0,\
2491,,, YBCO-40nm, T=60.00 K, E=3.72 keV, B=~1500(G)/259.51(A), Tr/Sa=15.02/10.54 kV, SR=-10.00
dataT = 60.002, 0.006, 0.006,\
dataB = 1499.8, 0, 0,\
dataE = 6.76694, 0, 0,\
dataTr = 15.0188, 0, 0,\
dataRALRAR = 0.003, 0, 0,\
dataRATRAB = -0.006, 0, 0,\
dataSpinRot = -10, 0, 0,\
Asy = 0.1476, 0.0013, -0.0013,\
Sigma = 0.735, 0.011, -0.01,\
Ph = -146.8, 1, -0.99,\
Field = 1510.91, 0.17, -0.17,\
RelPh_L = 0, 0, 0,\
N0_L = 261.89, 0.3, -0.29,\
N_bkg_L = 4.458, 0.038, -0.038,\
RelPh_T = -87.9, 1.2, -1.2,\
N0_T = 268.51, 0.3, -0.3,\
N_bkg_T = 4.69, 0.039, -0.039,\
RelPh_R = 179.6, 1.2, -1.2,\
alpha_LR = 1.0155, 0.0016, -0.0016,\
N_bkg_R = 5.098, 0.039, -0.039,\
RelPh_B = 91.4, 1.2, -1.2,\
alpha_TB = 0.9506, 0.0015, -0.0015,\
N_bkg_B = 4.481, 0.038, -0.038,\
maxLH = 20613.6, 0, 0,\
NDF = 20361, 0, 0,\
maxLHred = 1.01241, 0, 0,\
2545,,, YBCO-40nm, T=60.01 K, E=6.77 keV, B=~1500(G)/259.52(A), Tr/Sa=15.02/7.50 kV, SR=-10.00
dataT = 60, 0.005, 0.005,\
dataB = 1499.8, 0, 0,\
dataE = 9.26435, 0, 0,\
dataTr = 15.0189, 0, 0,\
dataRALRAR = 0.003, 0, 0,\
dataRATRAB = -0.006, 0, 0,\
dataSpinRot = -10, 0, 0,\
Asy = 0.1535, 0.0013, -0.0012,\
Sigma = 0.596, 0.0085, -0.0083,\
Ph = -148.84, 0.88, -0.89,\
Field = 1512.77, 0.13, -0.12,\
RelPh_L = 0, 0, 0,\
N0_L = 262.18, 0.3, -0.3,\
N_bkg_L = 4.427, 0.038, -0.038,\
RelPh_T = -87.5, 1, -1,\
N0_T = 268.62, 0.3, -0.3,\
N_bkg_T = 4.759, 0.039, -0.039,\
RelPh_R = 179.5, 1.1, -1.1,\
alpha_LR = 1.0177, 0.0016, -0.0016,\
N_bkg_R = 4.994, 0.039, -0.039,\
RelPh_B = 89.3, 1.1, -1.1,\
alpha_TB = 0.9487, 0.0015, -0.0015,\
N_bkg_B = 4.516, 0.038, -0.038,\
maxLH = 20472.6, 0, 0,\
NDF = 20361, 0, 0,\
maxLHred = 1.00548, 0, 0,\
2546,,, YBCO-40nm, T=59.99 K, E=9.26 keV, B=~1500(G)/259.52(A), Tr/Sa=15.02/5.00 kV, SR=-10.00
dataT = 60, 0.005, 0.005,\
dataB = 1499.8, 0, 0,\
dataE = 11.7643, 0, 0,\
dataTr = 15.0187, 0, 0,\
dataRALRAR = 0.002, 0, 0,\
dataRATRAB = -0.006, 0, 0,\
dataSpinRot = -10, 0, 0,\
Asy = 0.1513, 0.0011, -0.0011,\
Sigma = 0.4161, 0.0063, -0.0062,\
Ph = -150.95, 0.79, -0.79,\
Field = 1514.144, 0.085, -0.085,\
RelPh_L = 0, 0, 0,\
N0_L = 262.23, 0.29, -0.3,\
N_bkg_L = 4.478, 0.039, -0.038,\
RelPh_T = -91.48, 0.95, -0.95,\
N0_T = 269.03, 0.3, -0.3,\
N_bkg_T = 4.717, 0.039, -0.039,\
RelPh_R = 179.73, 0.96, -0.96,\
alpha_LR = 1.0134, 0.0016, -0.0016,\
N_bkg_R = 4.993, 0.039, -0.039,\
RelPh_B = 89.12, 0.97, -0.97,\
alpha_TB = 0.9471, 0.0015, -0.0015,\
N_bkg_B = 4.442, 0.038, -0.038,\
maxLH = 20270.1, 0, 0,\
NDF = 20361, 0, 0,\
maxLHred = 0.995536, 0, 0,\
2547,,, YBCO-40nm, T=60.00 K, E=11.76 keV, B=~1500(G)/259.52(A), Tr/Sa=15.02/2.50 kV, SR=-10.00
dataT = 60.001, 0.006, 0.006,\
dataB = 1499.8, 0, 0,\
dataE = 14.2681, 0, 0,\
dataTr = 15.0188, 0, 0,\
dataRALRAR = 0.002, 0, 0,\
dataRATRAB = -0.006, 0, 0,\
dataSpinRot = -10, 0, 0,\
Asy = 0.15785, 0.00099, -0.00099,\
Sigma = 0.3103, 0.0047, -0.0047,\
Ph = -153.17, 0.7, -0.7,\
Field = 1514.501, 0.062, -0.062,\
RelPh_L = 0, 0, 0,\
N0_L = 261.95, 0.3, -0.3,\
N_bkg_L = 4.515, 0.038, -0.038,\
RelPh_T = -89.61, 0.84, -0.84,\
N0_T = 269.4, 0.3, -0.3,\
N_bkg_T = 4.726, 0.039, -0.039,\
RelPh_R = 179.84, 0.86, -0.85,\
alpha_LR = 1.0163, 0.0016, -0.0016,\
N_bkg_R = 5.09, 0.039, -0.039,\
RelPh_B = 92.59, 0.86, -0.86,\
alpha_TB = 0.9473, 0.0015, -0.0015,\
N_bkg_B = 4.501, 0.038, -0.038,\
maxLH = 20649.4, 0, 0,\
NDF = 20361, 0, 0,\
maxLHred = 1.01416, 0, 0,\
2548,,, YBCO-40nm, T=60.01 K, E=14.27 keV, B=~1500(G)/259.53(A), Tr/Sa=15.02/-0.00 kV, SR=-10.00
dataT = 60.001, 0.007, 0.007,\
dataB = 1499.8, 0, 0,\
dataE = 16.7617, 0, 0,\
dataTr = 15.019, 0, 0,\
dataRALRAR = 0.003, 0, 0,\
dataRATRAB = -0.006, 0, 0,\
dataSpinRot = -10, 0, 0,\
Asy = 0.15722, 0.00091, -0.0009,\
Sigma = 0.212, 0.004, -0.004,\
Ph = -153.06, 0.65, -0.65,\
Field = 1514.458, 0.046, -0.046,\
RelPh_L = 0, 0, 0,\
N0_L = 261.81, 0.3, -0.3,\
N_bkg_L = 4.604, 0.038, -0.038,\
RelPh_T = -89.15, 0.79, -0.79,\
N0_T = 268.37, 0.3, -0.3,\
N_bkg_T = 4.703, 0.039, -0.039,\
RelPh_R = 180.5, 0.79, -0.8,\
alpha_LR = 1.0148, 0.0016, -0.0016,\
N_bkg_R = 5.109, 0.039, -0.039,\
RelPh_B = 90.96, 0.8, -0.8,\
alpha_TB = 0.9532, 0.0015, -0.0015,\
N_bkg_B = 4.504, 0.038, -0.038,\
maxLH = 20378, 0, 0,\
NDF = 20361, 0, 0,\
maxLHred = 1.00083, 0, 0,\
2549,,, YBCO-40nm, T=60.01 K, E=16.76 keV, B=~1500(G)/259.51(A), Tr/Sa=15.02/-2.50 kV, SR=-10.00
dataT = 60.001, 0.005, 0.005,\
dataB = 1499.79, 0, 0,\
dataE = 19.2613, 0, 0,\
dataTr = 15.0189, 0, 0,\
dataRALRAR = 0.003, 0, 0,\
dataRATRAB = -0.006, 0, 0,\
dataSpinRot = -10, 0, 0,\
Asy = 0.16082, 0.00087, -0.00087,\
Sigma = 0.1791, 0.0037, -0.0038,\
Ph = -152.69, 0.62, -0.62,\
Field = 1514.425, 0.041, -0.041,\
RelPh_L = 0, 0, 0,\
N0_L = 261.91, 0.3, -0.29,\
N_bkg_L = 4.489, 0.038, -0.038,\
RelPh_T = -89.39, 0.75, -0.75,\
N0_T = 268.52, 0.3, -0.3,\
N_bkg_T = 4.747, 0.039, -0.039,\
RelPh_R = 180.2, 0.75, -0.75,\
alpha_LR = 1.0184, 0.0016, -0.0016,\
N_bkg_R = 5.031, 0.039, -0.039,\
RelPh_B = 90.14, 0.77, -0.77,\
alpha_TB = 0.9547, 0.0015, -0.0015,\
N_bkg_B = 4.476, 0.038, -0.038,\
maxLH = 20203.3, 0, 0,\
NDF = 20361, 0, 0,\
maxLHred = 0.992255, 0, 0,\
2550,,, YBCO-40nm, T=60.00 K, E=19.26 keV, B=~1500(G)/259.52(A), Tr/Sa=15.02/-5.00 kV, SR=-10.00
dataT = 60, 0.004, 0.004,\
dataB = 1499.8, 0, 0,\
dataE = 21.7593, 0, 0,\
dataTr = 15.0188, 0, 0,\
dataRALRAR = 0.003, 0, 0,\
dataRATRAB = -0.006, 0, 0,\
dataSpinRot = -10, 0, 0,\
Asy = 0.16364, 0.00085, -0.00085,\
Sigma = 0.1516, 0.0037, -0.0037,\
Ph = -152.29, 0.6, -0.6,\
Field = 1514.42, 0.037, -0.037,\
RelPh_L = 0, 0, 0,\
N0_L = 262.97, 0.3, -0.3,\
N_bkg_L = 4.458, 0.038, -0.038,\
RelPh_T = -91.12, 0.72, -0.72,\
N0_T = 269.33, 0.3, -0.3,\
N_bkg_T = 4.67, 0.039, -0.038,\
RelPh_R = 179.28, 0.73, -0.73,\
alpha_LR = 1.016, 0.0016, -0.0016,\
N_bkg_R = 5.075, 0.039, -0.039,\
RelPh_B = 90.38, 0.74, -0.74,\
alpha_TB = 0.9519, 0.0015, -0.0015,\
N_bkg_B = 4.514, 0.038, -0.038,\
maxLH = 20545.3, 0, 0,\
NDF = 20361, 0, 0,\
maxLHred = 1.00905, 0, 0,\
2551,,, YBCO-40nm, T=59.98 K, E=21.76 keV, B=~1500(G)/259.53(A), Tr/Sa=15.02/-7.50 kV, SR=-10.00
dataT = 60, 0.005, 0.005,\
dataB = 1499.8, 0, 0,\
dataE = 24.2569, 0, 0,\
dataTr = 15.0189, 0, 0,\
dataRALRAR = 0.002, 0, 0,\
dataRATRAB = -0.006, 0, 0,\
dataSpinRot = -10, 0, 0,\
Asy = 0.16464, 0.00083, -0.00083,\
Sigma = 0.1287, 0.0038, -0.0039,\
Ph = -153.79, 0.58, -0.58,\
Field = 1514.54, 0.034, -0.034,\
RelPh_L = 0, 0, 0,\
N0_L = 263.23, 0.3, -0.3,\
N_bkg_L = 4.432, 0.038, -0.038,\
RelPh_T = -88.82, 0.71, -0.71,\
N0_T = 267.99, 0.3, -0.3,\
N_bkg_T = 4.671, 0.039, -0.038,\
RelPh_R = 180.89, 0.71, -0.71,\
alpha_LR = 1.0159, 0.0016, -0.0016,\
N_bkg_R = 4.965, 0.039, -0.039,\
RelPh_B = 91.04, 0.72, -0.72,\
alpha_TB = 0.9562, 0.0015, -0.0015,\
N_bkg_B = 4.534, 0.038, -0.038,\
maxLH = 20299.8, 0, 0,\
NDF = 20361, 0, 0,\
maxLHred = 0.996994, 0, 0,\
2552,,, YBCO-40nm, T=60.00 K, E=24.26 keV, B=~1500(G)/259.52(A), Tr/Sa=15.02/-9.99 kV, SR=-10.00

View File

@ -0,0 +1,20 @@
# This is a comment
loadPath ./
load YBCO-40nm-T5K-FC150mT-Escan.db
load YBCO-40nm-T30K-FC150mT-Escan.db
load YBCO-40nm-T60K-FC150mT-Escan.db
load YBCO-40nm-T120K-FC150mT-Escan.db
selectAll
x dataE
y Field
savePath ./
plot FieldVsEnergy.pdf
macro FieldVsEnergy.C
# end

View File

@ -0,0 +1,19 @@
# This is a comment
loadPath ./
load YBCO-40nm-FC-E3p8keV-B10mT-Tscan.db
load YBCO-40nm-FC-E3p8keV-B150mT-Tscan.db
selectAll
norm
x dataT
y Field
savePath ./
plot FieldVsTemp.pdf
macro FieldVsTemp.C
# end

View File

@ -0,0 +1,18 @@
# This is a comment
loadPath ./
load YBCO-40nm-FC-E3p8keV-B10mT-Tscan.db
load YBCO-40nm-FC-E3p8keV-B150mT-Tscan.db
selectAll
x dataT
y Sigma
savePath ./
plot SigmaVsTemp.pdf
macro SigmaVsTemp.C
# end

View File

@ -0,0 +1,35 @@
# This is a comment
# Script: sigmaSC-vs-temp.txt
loadPath ./
load YBCO-40nm-FC-E3p8keV-B10mT-Tscan.db # collection 0
load YBCO-40nm-FC-E3p8keV-B150mT-Tscan.db # collection 1
# B=10mT
var SigmaSC_10 = pow(abs(pow($Sigma,2.0)-pow(0.11,2.0)), 0.5) # 0.11 (1/us) is the nuclear contribution (T>Tc)
var SigmaSC_10Err = pow(pow($Sigma*$SigmaErr,2.0)+pow(0.11*0.0025,2.0), 0.5)/$SigmaSC_10
# B=150mT
var SigmaSC_150 = pow(abs(pow($Sigma,2.0)-pow(0.075,2.0)), 0.5) # 0.075 (1/us) is the nuclear contribution (T>Tc)
var SigmaSC_150Err = pow(pow($Sigma*$SigmaErr,2.0)+pow(0.075*0.0025,2.0), 0.5)/$SigmaSC_150
# link variables to collections
col 0 : SigmaSC_10 # error variable SigmaSC_10Err doesn't need to be given, it is automatically linked to SigmaSC_10
col 1 : SigmaSC_150
norm
select 0
x dataT
y SigmaSC_10
select 1
x dataT
y SigmaSC_150
savePath ./
plot SigmaSCVsTemp.pdf
macro SigmaSCVsTemp.C
# end

View File

@ -0,0 +1,14 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22 22">
<defs id="defs3051">
<style type="text/css" id="current-color-scheme">
.ColorScheme-Text {
color:#f2f2f2;
}
</style>
</defs>
<path
style="fill:currentColor;fill-opacity:1;stroke:none"
d="m3 3v1 15h1 15v-1-13h-6.992188l-2-2-.007812.007813v-.007813h-6-1m6.00781 5h8.992188v10h-14v-8h3v-.007813l.007813.007813 2-2"
class="ColorScheme-Text"
/>
</svg>

After

Width:  |  Height:  |  Size: 472 B

View File

@ -0,0 +1,75 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 22 22"
version="1.1"
id="svg2"
height="22"
width="22">
<defs
id="defs4">
<style
id="current-color-scheme"
type="text/css">
.ColorScheme-Text {
color:#4d4d4d;
}
.ColorScheme-Background {
color:#eff0f1;
}
.ColorScheme-Highlight {
color:#3daee9;
}
.ColorScheme-ViewText {
color:#31363b;
}
.ColorScheme-ViewBackground {
color:#fcfcfc;
}
.ColorScheme-ViewHover {
color:#93cee9;
}
.ColorScheme-ViewFocus{
color:#3daee9;
}
.ColorScheme-ButtonText {
color:#31363b;
}
.ColorScheme-ButtonBackground {
color:#eff0f1;
}
.ColorScheme-ButtonHover {
color:#93cee9;
}
.ColorScheme-ButtonFocus{
color:#3daee9;
}
</style>
</defs>
<metadata
id="metadata7">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
transform="translate(0,-1030.3622)"
id="layer1">
<path
class="ColorScheme-Text"
id="rect4069"
transform="translate(0,1030.3622)"
d="M 3 3 L 3 4 L 3 19 L 4 19 L 19 19 L 19 18 L 19 5 L 12.007812 5 L 10.007812 3 L 10 3.0078125 L 10 3 L 4 3 L 3 3 z M 9.0078125 8 L 18 8 L 18 18 L 4 18 L 4 10 L 7 10 L 7 9.9921875 L 7.0078125 10 L 9.0078125 8 z "
style="fill:currentColor;fill-opacity:1;stroke:none" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.9 KiB

View File

@ -0,0 +1,199 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="23.466667"
height="23.466667"
viewBox="0 0 22.000001 22"
id="svg2"
version="1.1"
inkscape:version="0.92+devel unknown"
sodipodi:docname="mupp-dark.svg">
<defs
id="defs4" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="31.054545"
inkscape:cx="5.4476376"
inkscape:cy="11.674682"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="true"
units="pt"
inkscape:window-width="1920"
inkscape:window-height="1019"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:snap-grids="true"
showguides="true"
borderlayer="true"
inkscape:showpageshadow="false"
inkscape:document-rotation="0">
<inkscape:grid
type="xygrid"
id="grid5486"
originx="0"
originy="0"
spacingx="1"
spacingy="1" />
</sodipodi:namedview>
<metadata
id="metadata7">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(0,-1030.3622)">
<g
id="g7616"
transform="translate(0.37499988,12.0625)">
<circle
r="0.77277893"
cy="1036.3622"
cx="3.0000002"
id="path3626"
style="fill:#da4453;fill-opacity:1;fill-rule:evenodd;stroke:#da4453;stroke-width:1.45444238;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
inkscape:connector-curvature="0"
id="path7403"
d="m 3.0000002,1033.3622 v 6"
style="fill:none;fill-rule:evenodd;stroke:#da4453;stroke-width:1.00000012;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</g>
<g
id="g7616-1"
transform="translate(4.1249999,11.125)">
<circle
r="0.77277893"
cy="1036.3622"
cx="3.0000002"
id="path3626-0"
style="fill:#da4453;fill-opacity:1;fill-rule:evenodd;stroke:#da4453;stroke-width:1.45444238;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
inkscape:connector-curvature="0"
id="path7403-7"
d="m 3.0000002,1033.3622 v 6"
style="fill:none;fill-rule:evenodd;stroke:#da4453;stroke-width:1.00000012;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</g>
<g
id="g7616-1-8"
transform="translate(7.8749999,12.0625)">
<circle
r="0.77277893"
cy="1036.3622"
cx="3.0000002"
id="path3626-0-7"
style="fill:#da4453;fill-opacity:1;fill-rule:evenodd;stroke:#da4453;stroke-width:1.45444238;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
inkscape:connector-curvature="0"
id="path7403-7-3"
d="m 3.0000002,1033.3622 v 6"
style="fill:none;fill-rule:evenodd;stroke:#da4453;stroke-width:1.00000012;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</g>
<g
id="g7616-1-8-3"
transform="translate(10.6875,4.9999999)">
<circle
r="0.77277893"
cy="1036.3622"
cx="3.0000002"
id="path3626-0-7-5"
style="fill:#da4453;fill-opacity:1;fill-rule:evenodd;stroke:#da4453;stroke-width:1.45444238;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
inkscape:connector-curvature="0"
id="path7403-7-3-8"
d="m 3.0000002,1033.3622 v 6"
style="fill:none;fill-rule:evenodd;stroke:#da4453;stroke-width:1.00000012;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</g>
<g
id="g7616-1-8-5"
transform="translate(13.5,-0.12499951)">
<circle
r="0.77277893"
cy="1036.3622"
cx="3.0000002"
id="path3626-0-7-6"
style="fill:#da4453;fill-opacity:1;fill-rule:evenodd;stroke:#da4453;stroke-width:1.45444238;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
inkscape:connector-curvature="0"
id="path7403-7-3-7"
d="m 3.0000002,1033.3622 v 6"
style="fill:none;fill-rule:evenodd;stroke:#da4453;stroke-width:1.00000012;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</g>
<g
id="g7616-1-8-2"
transform="translate(17.25,-1.9999995)">
<circle
r="0.77277893"
cy="1036.3622"
cx="3.0000002"
id="path3626-0-7-60"
style="fill:#da4453;fill-opacity:1;fill-rule:evenodd;stroke:#da4453;stroke-width:1.45444238;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
inkscape:connector-curvature="0"
id="path7403-7-3-0"
d="m 3.0000002,1033.3622 v 6"
style="fill:none;fill-rule:evenodd;stroke:#da4453;stroke-width:1.00000012;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</g>
<text
xml:space="preserve"
style="font-size:15.00000002px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;stroke-width:0.9375;"
x="3"
y="1042.3622"
id="text4610"><tspan
sodipodi:role="line"
id="tspan4608"
x="3"
y="1064.4813"
style="stroke-width:0.9375;font-size:15.00000002px;" /></text>
<text
xml:space="preserve"
style="font-size:12.50000001px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;stroke-width:0.9375;"
x="1.9999999"
y="1050.3622"
id="text4614"><tspan
sodipodi:role="line"
id="tspan4612"
x="1.9999999"
y="1072.4813"
style="stroke-width:0.9375;font-size:12.50000001px;" /></text>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:15px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;stroke-width:0.9375;fill:#f2f2f2;fill-opacity:1;"
x="-0.53466797"
y="1042.3309"
id="text4618"><tspan
sodipodi:role="line"
id="tspan4616"
x="-0.53466797"
y="1042.3309"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:15px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.9375;fill:#f2f2f2;fill-opacity:1;">P</tspan></text>
<path
style="fill:none;stroke:#f2f2f2;stroke-width:0.9375px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 16.21875,1045.3622 4,3 -4,3 v 0"
id="path4624"
inkscape:connector-curvature="0" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 8.2 KiB

View File

@ -0,0 +1,199 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="23.466667"
height="23.466667"
viewBox="0 0 22.000001 22"
id="svg2"
version="1.1"
inkscape:version="0.92+devel unknown"
sodipodi:docname="mupp-plain.svg">
<defs
id="defs4" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="31.054545"
inkscape:cx="5.4476376"
inkscape:cy="11.674682"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="true"
units="pt"
inkscape:window-width="1920"
inkscape:window-height="1019"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:snap-grids="true"
showguides="true"
borderlayer="true"
inkscape:showpageshadow="false"
inkscape:document-rotation="0">
<inkscape:grid
type="xygrid"
id="grid5486"
originx="0"
originy="0"
spacingx="1"
spacingy="1" />
</sodipodi:namedview>
<metadata
id="metadata7">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(0,-1030.3622)">
<g
id="g7616"
transform="translate(0.37499988,12.0625)">
<circle
r="0.77277893"
cy="1036.3622"
cx="3.0000002"
id="path3626"
style="fill:#da4453;fill-opacity:1;fill-rule:evenodd;stroke:#da4453;stroke-width:1.45444238;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
inkscape:connector-curvature="0"
id="path7403"
d="m 3.0000002,1033.3622 v 6"
style="fill:none;fill-rule:evenodd;stroke:#da4453;stroke-width:1.00000012;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</g>
<g
id="g7616-1"
transform="translate(4.1249999,11.125)">
<circle
r="0.77277893"
cy="1036.3622"
cx="3.0000002"
id="path3626-0"
style="fill:#da4453;fill-opacity:1;fill-rule:evenodd;stroke:#da4453;stroke-width:1.45444238;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
inkscape:connector-curvature="0"
id="path7403-7"
d="m 3.0000002,1033.3622 v 6"
style="fill:none;fill-rule:evenodd;stroke:#da4453;stroke-width:1.00000012;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</g>
<g
id="g7616-1-8"
transform="translate(7.8749999,12.0625)">
<circle
r="0.77277893"
cy="1036.3622"
cx="3.0000002"
id="path3626-0-7"
style="fill:#da4453;fill-opacity:1;fill-rule:evenodd;stroke:#da4453;stroke-width:1.45444238;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
inkscape:connector-curvature="0"
id="path7403-7-3"
d="m 3.0000002,1033.3622 v 6"
style="fill:none;fill-rule:evenodd;stroke:#da4453;stroke-width:1.00000012;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</g>
<g
id="g7616-1-8-3"
transform="translate(10.6875,4.9999999)">
<circle
r="0.77277893"
cy="1036.3622"
cx="3.0000002"
id="path3626-0-7-5"
style="fill:#da4453;fill-opacity:1;fill-rule:evenodd;stroke:#da4453;stroke-width:1.45444238;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
inkscape:connector-curvature="0"
id="path7403-7-3-8"
d="m 3.0000002,1033.3622 v 6"
style="fill:none;fill-rule:evenodd;stroke:#da4453;stroke-width:1.00000012;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</g>
<g
id="g7616-1-8-5"
transform="translate(13.5,-0.12499951)">
<circle
r="0.77277893"
cy="1036.3622"
cx="3.0000002"
id="path3626-0-7-6"
style="fill:#da4453;fill-opacity:1;fill-rule:evenodd;stroke:#da4453;stroke-width:1.45444238;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
inkscape:connector-curvature="0"
id="path7403-7-3-7"
d="m 3.0000002,1033.3622 v 6"
style="fill:none;fill-rule:evenodd;stroke:#da4453;stroke-width:1.00000012;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</g>
<g
id="g7616-1-8-2"
transform="translate(17.25,-1.9999995)">
<circle
r="0.77277893"
cy="1036.3622"
cx="3.0000002"
id="path3626-0-7-60"
style="fill:#da4453;fill-opacity:1;fill-rule:evenodd;stroke:#da4453;stroke-width:1.45444238;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
inkscape:connector-curvature="0"
id="path7403-7-3-0"
d="m 3.0000002,1033.3622 v 6"
style="fill:none;fill-rule:evenodd;stroke:#da4453;stroke-width:1.00000012;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</g>
<text
xml:space="preserve"
style="font-size:15.00000002px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;stroke-width:0.9375;"
x="3"
y="1042.3622"
id="text4610"><tspan
sodipodi:role="line"
id="tspan4608"
x="3"
y="1064.4813"
style="stroke-width:0.9375;font-size:15.00000002px;" /></text>
<text
xml:space="preserve"
style="font-size:12.50000001px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;stroke-width:0.9375;"
x="1.9999999"
y="1050.3622"
id="text4614"><tspan
sodipodi:role="line"
id="tspan4612"
x="1.9999999"
y="1072.4813"
style="stroke-width:0.9375;font-size:12.50000001px;" /></text>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:15px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;stroke-width:0.9375"
x="-0.53466797"
y="1042.3309"
id="text4618"><tspan
sodipodi:role="line"
id="tspan4616"
x="-0.53466797"
y="1042.3309"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:15px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.9375">P</tspan></text>
<path
style="fill:none;stroke:#000000;stroke-width:0.9375px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 16.21875,1045.3622 4,3 -4,3 v 0"
id="path4624"
inkscape:connector-curvature="0" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 8.1 KiB

Binary file not shown.

View File

@ -0,0 +1,180 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
sodipodi:docname="varEdit-dark.svg"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
version="1.1"
id="svg2"
viewBox="0 0 22.000001 22"
height="23.466667"
width="23.466667">
<defs
id="defs4" />
<sodipodi:namedview
inkscape:document-rotation="0"
inkscape:showpageshadow="false"
borderlayer="true"
showguides="true"
inkscape:snap-grids="true"
inkscape:window-maximized="1"
inkscape:window-y="0"
inkscape:window-x="0"
inkscape:window-height="1010"
inkscape:window-width="1920"
units="pt"
showgrid="true"
inkscape:current-layer="layer1"
inkscape:document-units="px"
inkscape:cy="11.674682"
inkscape:cx="5.4476376"
inkscape:zoom="31.054545"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
borderopacity="1.0"
bordercolor="#666666"
pagecolor="#ffffff"
id="base">
<inkscape:grid
spacingy="1"
spacingx="1"
originy="0"
originx="0"
id="grid5486"
type="xygrid" />
</sodipodi:namedview>
<metadata
id="metadata7">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
transform="translate(0,-1030.3622)"
id="layer1"
inkscape:groupmode="layer"
inkscape:label="Layer 1">
<g
transform="translate(0.37499988,12.0625)"
id="g7616">
<circle
style="fill:#da4453;fill-opacity:1;fill-rule:evenodd;stroke:#da4453;stroke-width:1.45444238;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path3626"
cx="3.0000002"
cy="1036.3622"
r="0.77277893" />
<path
style="fill:none;fill-rule:evenodd;stroke:#da4453;stroke-width:1.00000012;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 3.0000002,1033.3622 v 6"
id="path7403"
inkscape:connector-curvature="0" />
</g>
<g
transform="translate(4.1249999,11.125)"
id="g7616-1">
<circle
style="fill:#da4453;fill-opacity:1;fill-rule:evenodd;stroke:#da4453;stroke-width:1.45444238;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path3626-0"
cx="3.0000002"
cy="1036.3622"
r="0.77277893" />
<path
style="fill:none;fill-rule:evenodd;stroke:#da4453;stroke-width:1.00000012;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 3.0000002,1033.3622 v 6"
id="path7403-7"
inkscape:connector-curvature="0" />
</g>
<g
transform="translate(7.8749999,12.0625)"
id="g7616-1-8">
<circle
style="fill:#da4453;fill-opacity:1;fill-rule:evenodd;stroke:#da4453;stroke-width:1.45444238;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path3626-0-7"
cx="3.0000002"
cy="1036.3622"
r="0.77277893" />
<path
style="fill:none;fill-rule:evenodd;stroke:#da4453;stroke-width:1.00000012;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 3.0000002,1033.3622 v 6"
id="path7403-7-3"
inkscape:connector-curvature="0" />
</g>
<g
transform="translate(10.6875,4.9999999)"
id="g7616-1-8-3">
<circle
style="fill:#da4453;fill-opacity:1;fill-rule:evenodd;stroke:#da4453;stroke-width:1.45444238;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path3626-0-7-5"
cx="3.0000002"
cy="1036.3622"
r="0.77277893" />
<path
style="fill:none;fill-rule:evenodd;stroke:#da4453;stroke-width:1.00000012;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 3.0000002,1033.3622 v 6"
id="path7403-7-3-8"
inkscape:connector-curvature="0" />
</g>
<g
transform="translate(13.5,-0.12499951)"
id="g7616-1-8-5">
<circle
style="fill:#da4453;fill-opacity:1;fill-rule:evenodd;stroke:#da4453;stroke-width:1.45444238;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path3626-0-7-6"
cx="3.0000002"
cy="1036.3622"
r="0.77277893" />
<path
style="fill:none;fill-rule:evenodd;stroke:#da4453;stroke-width:1.00000012;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 3.0000002,1033.3622 v 6"
id="path7403-7-3-7"
inkscape:connector-curvature="0" />
</g>
<g
transform="translate(17.25,-1.9999995)"
id="g7616-1-8-2">
<circle
style="fill:#da4453;fill-opacity:1;fill-rule:evenodd;stroke:#da4453;stroke-width:1.45444238;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path3626-0-7-60"
cx="3.0000002"
cy="1036.3622"
r="0.77277893" />
<path
style="fill:none;fill-rule:evenodd;stroke:#da4453;stroke-width:1.00000012;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 3.0000002,1033.3622 v 6"
id="path7403-7-3-0"
inkscape:connector-curvature="0" />
</g>
<text
id="text4610"
y="1042.3622"
x="3"
style="font-size:15px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;stroke-width:0.9375"
xml:space="preserve" />
<text
id="text4614"
y="1050.3622"
x="1.9999999"
style="font-size:12.5px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;stroke-width:0.9375"
xml:space="preserve" />
<path
inkscape:connector-curvature="0"
id="path4624"
d="m 16.21875,1045.3622 4,3 -4,3 v 0"
style="fill:none;stroke:#f2f2f2;stroke-width:0.9375px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
id="path2280"
d="m 1,1038.3622 h 2 l 2,5 4,-12 6,0"
style="fill:none;stroke:#f2f2f2;stroke-width:0.9375px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 6.9 KiB

Some files were not shown because too many files have changed in this diff Show More