added mupp. Currently only build with cmake.

This commit is contained in:
suter_a 2018-06-11 11:23:40 +02:00
parent d832676494
commit c2353fab7d
105 changed files with 15876 additions and 1 deletions

View File

@ -1,7 +1,7 @@
# - musrfit
cmake_minimum_required(VERSION 3.6)
project(musrfit VERSION 1.3.0 LANGUAGES C CXX)
project(musrfit VERSION 1.4.0 LANGUAGES C CXX)
#--- musrfit specific options -------------------------------------------------
option(nexus "build optional NeXus support. Needed for ISIS" OFF)

View File

@ -9,3 +9,4 @@ configure_file(
add_subdirectory(musredit)
add_subdirectory(musrStep)
add_subdirectory(musrWiz)
add_subdirectory(mupp)

View File

@ -0,0 +1,88 @@
#--- mupp for Qt > 5.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 0.9.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)
qt5_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(SOURCE_FILES
mupp.cpp
PmuppAdmin.cpp
Pmupp.cpp
PmuppScript.cpp
PmuppGui.cpp
)
if (APPLE)
set(RESOURCE_FILES icons/mupp.icns)
add_executable(mupp
MACOSX_BUNDLE ${GENERATED_HEADER_FILES} ${SOURCE_FILES}
qrc_mupp.cpp ${RESOURCE_FILES}
)
else (APPLE)
add_executable(mupp ${GENERATED_HEADER_FILES} ${SOURCE_FILES} qrc_mupp.cpp)
endif (APPLE)
#--- use the Widgets and XML modules from Qt5 ---------------------------------
target_link_libraries(mupp Qt5::Widgets Qt5::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 ${CMAKE_INSTALL_PREFIX})
else (APPLE)
install(TARGETS mupp DESTINATION ${CMAKE_INSTALL_PREFIX}/bin)
endif (APPLE)

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,151 @@
/***************************************************************************
Pmupp.h
Author: Andreas Suter
e-mail: andreas.suter@psi.ch
***************************************************************************/
/***************************************************************************
* Copyright (C) 2007-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 _PMUPP_H_
#define _PMUPP_H_
#include <QObject>
#include <QString>
#include <QVector>
#include <QStringList>
#include <QProcess>
#define MUPP_UNDEF 1.0e99
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;
double fValue;
double fPosErr;
double fNegErr;
};
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;
QVector<PmuppParam> fParam;
};
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;
QString fName;
QVector<PmuppRun> fRun;
};
class PParamDataHandler : public QObject {
Q_OBJECT
public:
PParamDataHandler() {}
int GetNoOfCollections() { return fCollection.size(); }
void NewCollection(const QString name);
bool ReadParamFile(const QStringList fln);
PmuppCollection ReadDbFile(const QString fln, bool &valid);
PmuppCollection ReadColumnParamFile(const QString fln, bool &valid);
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;
QVector<PmuppCollection> fCollection;
bool analyzeFileList(const QStringList &fln, QString &collectionName, QStringList &arg, QString &workDir);
private slots:
void readFromStdOut();
void readFromStdErr();
void processDone(int, QProcess::ExitStatus);
};
#endif // _PMUPP_H_

View File

@ -0,0 +1,500 @@
/****************************************************************************
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>
using namespace std;
#include <QMessageBox>
#include <QString>
#include <QFile>
#include <QTextStream>
#include <QVector>
#include <QDir>
#include <QProcessEnvironment>
#include <QSysInfo>
#include <QtDebug>
#include "PmuppAdmin.h"
//--------------------------------------------------------------------------
// implementation of PmuppColor class
//--------------------------------------------------------------------------
/**
* @brief PmuppColor::PmuppColor
*/
PmuppColor::PmuppColor()
{
fName = "UnDef";
fRed = -1;
fGreen = -1;
fBlue = -1;
}
//--------------------------------------------------------------------------
/**
* @brief PmuppColor::setRGB
* @param r
* @param g
* @param b
*/
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(PmuppAdmin *admin) : fAdmin(admin)
{
fKeyWord = eEmpty;
}
//--------------------------------------------------------------------------
/**
* <p>Routine called at the beginning of the XML parsing process.
*/
bool PmuppAdminXMLParser::startDocument()
{
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.
*
* \param qName name of the XML tag.
*/
bool PmuppAdminXMLParser::startElement( const QString&, const QString&,
const QString& qName,
const QXmlAttributes& )
{
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.
*
* \param qName name of the element.
*/
bool PmuppAdminXMLParser::endElement( const QString&, const QString&, const QString& )
{
fKeyWord = eEmpty;
return true;
}
//--------------------------------------------------------------------------
/**
* <p>This routine delivers the content of an XML tag. It fills the
* content into the load data structure.
*
* \param str keeps the content of the XML tag.
*/
bool PmuppAdminXMLParser::characters(const QString& str)
{
bool ok;
int ival, r, g, b;
double dval;
QString name("");
QStringList tok;
switch (fKeyWord) {
case eMarker:
tok = str.split(",", QString::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(",", QString::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;
}
//--------------------------------------------------------------------------
/**
* <p>Report XML warnings.
*
* \param exception holds the information of the XML warning
*/
bool PmuppAdminXMLParser::warning( const QXmlParseException & exception )
{
QString msg;
msg = QString("**WARNING** while parsing mupp_startup.xml in line no %1\n").arg(exception.lineNumber());
msg += QString("**WARNING MESSAGE** ") + exception.message();
qWarning() << endl << msg << endl;
QMessageBox::warning(0, "WARNING", msg, QMessageBox::Ok, QMessageBox::NoButton);
return true;
}
//--------------------------------------------------------------------------
/**
* <p>Report recoverable XML errors.
*
* \param exception holds the information of the XML recoverable errors.
*/
bool PmuppAdminXMLParser::error( const QXmlParseException & exception )
{
QString msg;
msg = QString("**ERROR** while parsing mupp_startup.xml in line no %1\n").arg(exception.lineNumber());
msg += QString("**ERROR MESSAGE** ") + exception.message();
qWarning() << endl << msg << endl;
QMessageBox::critical(0, "ERROR", msg, QMessageBox::Ok, QMessageBox::NoButton);
return true;
}
//--------------------------------------------------------------------------
/**
* <p>Report fatal XML errors.
*
* \param exception holds the information of the XML fatal errors.
*/
bool PmuppAdminXMLParser::fatalError( const QXmlParseException & exception )
{
QString msg;
msg = QString("**FATAL ERROR** while parsing mupp_startup.xml in line no %1\n").arg(exception.lineNumber());
msg += QString("**FATAL ERROR MESSAGE** ") + exception.message();
qWarning() << endl << msg << endl;
QMessageBox::critical(0, "FATAL ERROR", msg, QMessageBox::Ok, QMessageBox::NoButton);
return true;
}
//--------------------------------------------------------------------------
// implementation of PmuppAdmin class
//--------------------------------------------------------------------------
/**
* <p>Initializes that PmuppAdmin object, and calls the XML parser which feeds
* the object variables.
*/
PmuppAdmin::PmuppAdmin() : QObject()
{
// 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(this);
QFile xmlFile(pathFln);
QXmlInputSource source( &xmlFile );
QXmlSimpleReader reader;
reader.setContentHandler( &handler );
reader.setErrorHandler( &handler );
if (!reader.parse( source )) {
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()
{
// nothing to be done for now
}
//--------------------------------------------------------------------------
/**
* @brief PmuppAdmin::getMarker
* @param idx
* @return
*/
PmuppMarker PmuppAdmin::getMarker(int idx) {
PmuppMarker marker;
if (idx >= fMarker.size())
return marker;
return fMarker[idx];
}
//--------------------------------------------------------------------------
/**
* @brief PmuppAdmin::getColor
* @param name
* @param r
* @param g
* @param b
*/
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
* @param idx
* @param r
* @param g
* @param b
*/
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
* @param marker
* @param 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
* @param r
* @param g
* @param b
* @param 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);
}
//--------------------------------------------------------------------------
/**
* @brief PmuppAdmin::createMuppStartupFile
*/
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 << endl;
}
file.close();
fres.close();
}
//--------------------------------------------------------------------------
// END
//--------------------------------------------------------------------------

View File

@ -0,0 +1,151 @@
/****************************************************************************
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 <QtXml>
class PmuppAdmin;
//---------------------------------------------------------------------------
/**
* @brief The PmuppColor class
*/
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
*/
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 QXmlDefaultHandler
{
public:
PmuppAdminXMLParser(PmuppAdmin*);
virtual ~PmuppAdminXMLParser() {}
private:
enum EAdminKeyWords {eEmpty, eMarker, eColor};
bool startDocument();
bool startElement( const QString&, const QString&, const QString& ,
const QXmlAttributes& );
bool endElement( const QString&, const QString&, const QString& );
bool characters(const QString&);
bool endDocument();
bool warning( const QXmlParseException & exception );
bool error( const QXmlParseException & exception );
bool fatalError( const QXmlParseException & exception );
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();
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);
void setMarker(int marker, double size);
void setColor(int r, int g, int b, QString name="");
private:
friend class PmuppAdminXMLParser;
QVector<PmuppMarker> fMarker;
QVector<PmuppColor> fColor;
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,215 @@
/***************************************************************************
PmuppGui.h
Author: Andreas Suter
e-mail: andreas.suter@psi.ch
***************************************************************************/
/***************************************************************************
* Copyright (C) 2007-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 _PMUPPGUI_H_
#define _PMUPPGUI_H_
#include <QMainWindow>
#include <QVector>
#include <QString>
#include <QWidget>
#include <QBoxLayout>
#include <QGridLayout>
#include <QLabel>
#include <QSplitter>
#include <QListWidget>
#include <QPushButton>
#include <QLineEdit>
#include <QEvent>
#include <QProcess>
#include "PmuppAdmin.h"
#include "Pmupp.h"
#include "mupp.h"
//----------------------------------------------------------------------------------------------
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();
};
//----------------------------------------------------------------------------------------------
// Layout Scheme of PmuppGui:
// |--------------------------------------------------------------------|
// | Main |
// | |----------------------------------------------------------------| |
// | | Top | |
// | | |----------------------------| |-----------------------------| | |
// | | | Grid Left (2 cols, 3 rows) | | Grid Right (2 cols, 6 rows) | | |
// | | | +++++++++ | | ++++++++++ | | |
// | | | | | | | |
// | | |----------------------------| |-----------------------------| | |
// | |----------------------------------------------------------------| |
// | |
// | |----------------------------------------------------------------| |
// | | 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, QWidget *parent = 0, Qt::WindowFlags f = 0);
virtual ~PmuppGui();
public slots:
void aboutToQuit();
void fileOpen();
void fileExit();
void toolDumpCollections();
void toolDumpXY();
void helpCmds();
void helpAbout();
void helpAboutQt();
protected:
bool eventFilter(QObject *o, QEvent *e);
private:
enum EAxis {kXaxis, kYaxis};
PmuppAdmin *fAdmin;
bool fDarkTheme;
bool fDarkToolBarIcon;
uint fDatime;
PParamDataHandler *fParamDataHandler;
QVector<PmuppXY> fXY;
QString fMacroPath;
QString fMacroName;
QWidget *fCentralWidget;
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;
QLineEdit *fCmdLine;
QPushButton *fExitButton;
QVector<QString> fCmdHistory;
QProcess *fMuppPlot;
void setupFileActions();
void setupToolActions();
void setupHelpActions();
void getTheme();
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);
private slots:
void refresh();
void remove();
void addX();
void addY();
void removeX();
void removeY();
void addDitto();
void createMacro();
void plot();
void handleCmds();
void handleNewData();
void updateCollectionList();
void updateParamList(int currentRow);
void updateXYList(int idx);
void updateXYListGui();
void editCollName(QListWidgetItem *item);
void dropOnViewX(QListWidgetItem *item);
void dropOnViewY(QListWidgetItem *item);
void refreshY();
bool findValue(PmuppRun &run, EAxis tag);
bool allXYEqual();
bool indexAlreadyPresent(int idx);
void replaceIndex(PmuppXY &data, const int idx);
void startMuppPlot();
};
#endif // _PMUPPGUI_H_

View File

@ -0,0 +1,706 @@
/***************************************************************************
PmuppScript.cpp
Author: Andreas Suter
e-mail: andreas.suter@psi.ch
***************************************************************************/
/***************************************************************************
* Copyright (C) 2007-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 <iostream>
using namespace std;
#include <QProcessEnvironment>
#include <QString>
#include <QFile>
#include <QTextStream>
#include <QDateTime>
#include <QProcess>
#include "PmuppScript.h"
//--------------------------------------------------------------------------
/**
* @brief PmuppScript::PmuppScript
* @param script
*/
PmuppScript::PmuppScript(QStringList script) :
fScript(script)
{
fParamDataHandler = 0;
fLoadPath = QString("./");
fSavePath = QString("./");
fSelected = -2; // nothing selected
fAdmin = new PmuppAdmin();
}
//--------------------------------------------------------------------------
/**
* @brief PmuppScript::~PmuppScript
*/
PmuppScript::~PmuppScript()
{
if (fParamDataHandler) {
delete fParamDataHandler;
fParamDataHandler = 0;
}
if (fAdmin) {
delete fAdmin;
fAdmin = 0;
}
}
//--------------------------------------------------------------------------
/**
* @brief PmuppScript::executeScript
* @return
*/
int PmuppScript::executeScript()
{
fParamDataHandler = new PParamDataHandler();
if (fParamDataHandler == 0) {
cerr << endl << "**ERROR** couldn't invoke data handler ..." << endl << endl;
return -1;
}
QString cmd;
int status=0;
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("addX")) {
status = addX(cmd);
} else if (cmd.startsWith("addY")) {
status = addY(cmd);
} else if (cmd.startsWith("plot")) {
status = plot(cmd);
} else if (cmd.startsWith("macro")) {
status = macro(cmd);
} else {
cerr << "**ERROR** found unkown script command '" << cmd.toLatin1().constData() << "'." << endl << endl;
status = -2;
}
// check for errors
if (status != 0) {
emit finished();
return status;
}
}
emit finished();
return 0;
}
//--------------------------------------------------------------------------
/**
* @brief PmuppScript::setLoadPath
* @param cmd
*/
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("/", QString::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
* @param cmd
*/
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("/", QString::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
* @param str
* @return
*/
int PmuppScript::loadCollection(const QString str)
{
QString fln = str;
fln = fln.remove("load ");
fln = fln.trimmed();
fln = fln.prepend(fLoadPath);
QStringList flnList;
flnList << fln;
fParamDataHandler->ReadParamFile(flnList);
return 0;
}
//--------------------------------------------------------------------------
/**
* @brief PmuppScript::select
* @param str
* @return
*/
int PmuppScript::select(const QString str)
{
QString cmd = str;
QStringList tok = cmd.split(' ', QString::SkipEmptyParts);
if (tok.size() != 2) {
cerr << endl << "**ERROR** wrong 'select' command syntax." << endl << endl;
return -1;
}
bool ok;
int ival = tok[1].toInt(&ok);
if (ok) { // collection index given
if (ival >= fParamDataHandler->GetNoOfCollections()) {
cerr << endl << "**ERROR** try to select a collection with index " << ival << ", which is >= # collections (" << fParamDataHandler->GetNoOfCollections() << ")." << endl << endl;
return -2;
}
fSelected = ival;
} else { // assume that a collection name is given
ival = fParamDataHandler->GetCollectionIndex(tok[1]);
if (ival == -1) {
cerr << endl << "**ERROR** couldn't find collection '" << tok[1].toLatin1().constData() << "'." << endl << endl;
return -3;
}
if (ival >= fParamDataHandler->GetNoOfCollections()) {
cerr << endl << "**ERROR** try to select a collection with index " << ival << ", which is >= # collections (" << fParamDataHandler->GetNoOfCollections() << ")." << endl << endl;
return -2;
}
fSelected = ival;
}
return 0;
}
//--------------------------------------------------------------------------
/**
* @brief PmuppScript::selectAll
* @return
*/
int PmuppScript::selectAll()
{
int noColl = fParamDataHandler->GetNoOfCollections();
if ( noColl > 0) {
fSelected = -1; // all collections are selected
} else {
cerr << endl << "**ERROR** no collections present, hence it is not possible to select them." << endl << endl;
return -1;
}
return 0;
}
//--------------------------------------------------------------------------
/**
* @brief PmuppScript::addX
* @param str
* @return
*/
int PmuppScript::addX(const QString str)
{
QString cmd = str, label;
QStringList tok = cmd.split(' ', QString::SkipEmptyParts);
if (tok.size() != 2) {
cerr << endl << "**ERROR** in addX: number of tokens missmatch." << endl << endl;
return -1;
}
label = tok[1].trimmed();
PmuppCollection *coll=0;
if (fSelected == -2) { // no selection -> error
cerr << endl << "**ERROR** in addX. addX called without previous 'select' command." << endl << 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
for (int i=0; i<fParamDataHandler->GetNoOfCollections(); i++) {
coll = fParamDataHandler->GetCollection(i);
if (!foundLabel(coll, label)) { // label not found
cerr << endl << "**ERROR** couldn't find '" << label.toLatin1().constData() << "' in collection '" << coll->GetName().toLatin1().constData() << "'" << endl << 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
coll = fParamDataHandler->GetCollection(fSelected);
if (coll == 0) {
cerr << endl << "**ERROR** in addX: selected collection couldn't be found ..." << endl << endl;
return -3;
}
if (!foundLabel(coll, label)) { // label not found
cerr << endl << "**ERROR** couldn't find '" << label.toLatin1().constData() << "' in collection '" << coll->GetName().toLatin1().constData() << "'" << endl << endl;
return -4;
}
// feed plot entry
fPlotEntry.collIdx = fSelected;
fPlotEntry.xLabel = label;
}
return 0;
}
//--------------------------------------------------------------------------
/**
* @brief PmuppScript::addY
* @param str
* @return
*/
int PmuppScript::addY(const QString str)
{
QString cmd = str;
QVector<QString> label;
QStringList tok = cmd.split(' ', QString::SkipEmptyParts);
if (tok.size() < 2) {
cerr << endl << "**ERROR** in addY: number of tokens < 2." << endl << 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
cerr << endl << "**ERROR** in addY. addY called without previous 'select' command." << endl << endl;
return -2;
} else if (fSelected == -1) { // i.e. select ALL
// make sure that label(s) is/are found in ALL collections
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
cerr << endl << "**ERROR** couldn't find '" << label[j].toLatin1().constData() << "' in collection '" << coll->GetName().toLatin1().constData() << "'" << endl << 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
coll = fParamDataHandler->GetCollection(fSelected);
if (coll == 0) {
cerr << endl << "**ERROR** in addY: selected collection couldn't be found ..." << endl << endl;
return -3;
}
for (int i=0; i<label.size(); i++) {
if (!foundLabel(coll, label[i])) { // label not found
cerr << endl << "**ERROR** couldn't find '" << label[i].toLatin1().constData() << "' in collection '" << coll->GetName().toLatin1().constData() << "'" << endl << endl;
return -4;
}
}
fPlotEntry.yLabel = label;
// add plot entry
fPlotInfo.push_back(fPlotEntry);
}
return 0;
}
//--------------------------------------------------------------------------
/**
* @brief PmuppScript::plot
* @param str
* @return
*/
int PmuppScript::plot(const QString str)
{
QString cmd = str;
QStringList tok = cmd.split(' ', QString::SkipEmptyParts);
if (tok.size() != 2) {
cerr << endl << "**ERROR** in plot: number of tokens != 2." << endl << endl;
return -1;
}
QString flnOut = fSavePath + tok[1];
QString macroOut = fSavePath + "__out.C";
if (macro(QString("macro " + macroOut), flnOut) != 0) {
cerr << endl << "**ERROR** temporary macro generation failed." << endl << endl;
return -1;
}
// call root via batch
QProcess *proc = new QProcess(this);
if (proc == nullptr) {
cerr << endl << "**ERROR** couldn't invoke root.exe in batch mode." << endl << 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()) {
cerr << endl << "**ERROR** Could not execute the output command: " << exec_cmd.toLatin1().constData() << endl << endl;
QFile::remove(macroOut);
return -3;
}
proc->waitForFinished();
QFile::remove(macroOut);
return 0;
}
//--------------------------------------------------------------------------
/**
* @brief PmuppScript::macro
* @param str
* @param plotFln
* @return
*/
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(' ', QString::SkipEmptyParts);
if (tok.size() != 2) {
cerr << endl << "**ERROR** macro command with wrong number of arguments (" << tok.size() << ")." << endl << endl;
return -1;
}
QString macroName = tok[1].trimmed();
QString fln = fSavePath + macroName;
QFile file(fln);
if (!file.open(QIODevice::WriteOnly | QIODevice::Text)) {
cerr << endl << "**ERROR** Couldn't open macro file for writting." << endl << endl;
return -2;
}
QTextStream fout(&file);
// write header
fout << "// --------------------------" << endl;
fout << "// " << fln.toLatin1().constData() << endl;
fout << "// " << QDateTime::currentDateTime().toString("yy/MM/dd - HH:mm:ss") << endl;
fout << "// --------------------------" << endl;
fout << "{" << endl;
fout << " gROOT->Reset();" << endl;
fout << endl;
fout << " gStyle->SetOptTitle(0);" << endl;
fout << " gStyle->SetOptDate(0);" << endl;
fout << " gStyle->SetPadColor(TColor::GetColor(255,255,255)); // pad bkg to white" << endl;
fout << " gStyle->SetCanvasColor(TColor::GetColor(255,255,255)); // canvas bkg to white" << endl;
fout << endl;
fout << " Int_t nn=0, i=0;" << endl;
fout << " Double_t null[512];" << endl;
fout << " Double_t xx[512];" << endl;
fout << " Double_t yy[512];" << endl;
fout << " Double_t yyPosErr[512];" << endl;
fout << " Double_t yyNegErr[512];" << endl;
fout << 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;
for (int i=0; i<fPlotInfo.size(); i++) {
// get collection name
collName = fParamDataHandler->GetCollectionName(i);
xx = fParamDataHandler->GetValues(collName, fPlotInfo[i].xLabel);
// 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]);
// 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" << endl;
fout << " nn = " << xx.size() << ";" << endl;
fout << " // null-values" << endl;
for (int k=0; k<xx.size(); k++) {
fout << " null[" << k << "]=0.0;" << endl;
}
fout << " // x-values" << endl;
for (int k=0; k<xx.size(); k++) {
fout << " xx[" << k << "]=" << xx[k] << ";" << endl;
}
fout << " // y-values" << endl;
for (int k=0; k<yy.size(); k++) {
fout << " yy[" << k << "]=" << yy[k] << ";" << endl;
}
fout << " // yyNegErr-values" << endl;
for (int k=0; k<yyNegErr.size(); k++) {
fout << " yyNegErr[" << k << "]=" << fabs(yyNegErr[k]) << ";" << endl;
}
fout << " // yyPosErr-values" << endl;
for (int k=0; k<yyPosErr.size(); k++) {
fout << " yyPosErr[" << k << "]=" << yyPosErr[k] << ";" << endl;
}
fout << endl;
fout << " TGraphAsymmErrors *g_" << i << "_" << j << " = new TGraphAsymmErrors(nn, xx, yy, null, null, yyNegErr, yyPosErr);" << endl;
fout << 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;
// plotting
fout << " //**********" << endl;
fout << " // plotting " << endl;
fout << " //**********" << endl;
fout << " TCanvas *c1 = new TCanvas(\"c1\", \"" << macroName.toLatin1().constData() << "\", 10, 10, 600, 700);" << endl;
fout << 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() << ");" << endl;
fout << " g_" << i << "_" << j << "->SetMarkerSize(" << marker[count].getMarkerSize() << ");" << endl;
color[count].getRGB(rr, gg, bb);
fout << " g_" << i << "_" << j << "->SetMarkerColor(TColor::GetColor(" << rr << "," << gg << "," << bb << "));" << endl;
fout << " g_" << i << "_" << j << "->SetLineColor(TColor::GetColor(" << rr << "," << gg << "," << bb << "));" << endl;
} else {
fout << " g_" << i << "_" << j << "->SetMarkerStyle(20);" << endl;
fout << " g_" << i << "_" << j << "->SetMarkerSize(1.3);" << endl;
fout << " g_" << i << "_" << j << "->SetMarkerColor(TColor::GetColor(0,0,0));" << endl;
fout << " g_" << i << "_" << j << "->SetLineColor(TColor::GetColor(0,0,0));" << endl;
}
fout << " g_" << i << "_" << j << "->SetFillColor(kWhite);" << endl;
fout << " g_" << i << "_" << j << "->GetXaxis()->SetTitle(\"" << getNicerLabel(fPlotInfo[0].xLabel).toLatin1().data() << "\");" << endl;
fout << " g_" << i << "_" << j << "->GetXaxis()->SetTitleSize(0.05);" << endl;
fout << " g_" << i << "_" << j << "->GetXaxis()->SetDecimals(kTRUE);" << endl;
fout << " g_" << i << "_" << j << "->GetXaxis()->SetLimits(" << x_min << "," << x_max << ");" << endl;
fout << " g_" << i << "_" << j << "->GetYaxis()->SetTitle(\"" << getNicerLabel(fPlotInfo[0].yLabel[0]).toLatin1().data() << "\");" << endl;
fout << " g_" << i << "_" << j << "->GetYaxis()->SetTitleSize(0.05);" << endl;
fout << " g_" << i << "_" << j << "->GetYaxis()->SetTitleOffset(1.30);" << endl;
fout << " g_" << i << "_" << j << "->GetYaxis()->SetRangeUser(" << y_min << "," << y_max << ");" << endl;
fout << " g_" << i << "_" << j << "->Draw(\"AP\");" << endl;
} else {
if (count < marker.size()) {
fout << " g_" << i << "_" << j << "->SetMarkerStyle(" << marker[count].getMarker() << ");" << endl;
fout << " g_" << i << "_" << j << "->SetMarkerSize(" << marker[count].getMarkerSize() << ");" << endl;
color[count].getRGB(rr, gg, bb);
fout << " g_" << i << "_" << j << "->SetMarkerColor(TColor::GetColor(" << rr << "," << gg << "," << bb << "));" << endl;
fout << " g_" << i << "_" << j << "->SetLineColor(TColor::GetColor(" << rr << "," << gg << "," << bb << "));" << endl;
} else {
fout << " g_" << i << "_" << j << "->SetMarkerStyle(20);" << endl;
fout << " g_" << i << "_" << j << "->SetMarkerSize(1.3);" << endl;
fout << " g_" << i << "_" << j << "->SetMarkerColor(TColor::GetColor(0,0,0));" << endl;
fout << " g_" << i << "_" << j << "->SetLineColor(TColor::GetColor(0,0,0));" << endl;
}
fout << " g_" << i << "_" << j << "->SetFillColor(kWhite);" << endl;
fout << " g_" << i << "_" << j << "->Draw(\"Psame\");" << endl;
}
count++;
}
}
fout << " c1->SetMargin(0.15, 0.05, 0.12, 0.05);" << endl;
fout << " c1->Update();" << endl;
if (!plotFln.isEmpty()) {
fout << endl;
fout << " c1->SaveAs(\"" << plotFln.toLatin1().constData() << "\");" << endl;
}
fout << "}" << endl;
return 0;
}
//--------------------------------------------------------------------------
/**
* @brief PmuppScript::foundLabel
* @param coll
* @return
*/
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::minMax
* @param min
* @param max
*/
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
* @param label
* @return
*/
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))
nice = "#sigma (1/#mus)";
else if (!label.compare("lambda", Qt::CaseInsensitive))
nice = "#lambda (1/#mus)";
else if (!label.compare("rate", Qt::CaseInsensitive))
nice = "Rate (1/#mus)";
else if (!label.compare("alpha_LR", Qt::CaseInsensitive))
nice = "#alpha_{LR}";
else if (!label.compare("alpha_TB", Qt::CaseInsensitive))
nice = "#alpha_{TB}";
return nice;
}

View File

@ -0,0 +1,91 @@
/***************************************************************************
PmuppScript.h
Author: Andreas Suter
e-mail: andreas.suter@psi.ch
***************************************************************************/
/***************************************************************************
* Copyright (C) 2007-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 _PMUPPSCRIPT_H_
#define _PMUPPSCRIPT_H_
#include <QString>
#include <QStringList>
#include "PmuppAdmin.h"
#include "Pmupp.h"
typedef struct {
int collIdx;
QString xLabel;
QVector<QString> yLabel;
} PmuppPlotEntry;
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="");
public slots:
int executeScript();
signals:
void finished();
private:
PmuppAdmin *fAdmin;
QStringList fScript;
PParamDataHandler *fParamDataHandler;
int fSelected; ///< -2=nothing selected, -1=all selected, >=0 is the index if the selected collection
PmuppPlotEntry fPlotEntry;
QVector<PmuppPlotEntry> fPlotInfo;
QString fLoadPath;
QString fSavePath;
bool foundLabel(PmuppCollection *coll, const QString label);
void minMax(QVector<double> dvec, double &min, double &max);
QString getNicerLabel(const QString label);
};
#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 "beta - @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 $HOME/Apps/mupp/examples
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
addX dataE
addY Field
savePath ./
plot FieldVsEnergy.pdf
macro FieldVsEnergy.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,436 @@
/***************************************************************************
mupp.cpp
Author: Andreas Suter
e-mail: andreas.suter@psi.ch
***************************************************************************/
/***************************************************************************
* Copyright (C) 2007-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 <iostream>
using namespace std;
#include <QObject>
#include <QScopedPointer>
#include <QApplication>
#include <QCoreApplication>
#include <QFile>
#include <QString>
#include <QStringList>
#include "mupp_version.h"
#include "PmuppScript.h"
#include "PmuppGui.h"
//------------------------------------------------------------------------
/**
* @brief mupp_syntax
*/
void mupp_syntax()
{
cout << endl;
cout << "usage: mupp [OPTIONS] [[--path <fit-param-path>] <fit-param-file-names>]" << endl;
cout << endl;
cout << "OPTIONS:" << endl;
cout << " -h, --help: this help" << endl;
cout << " -v, --version: current mupp version" << endl;
cout << " -s <fln>, --script <fln>: <fln> being a mupp script." << endl;
cout << " --path <fit-param-path>: path where to look for the <fit-param-file-names>" << endl;
cout << " <fit-param-file-names>: list of file name(s) to be loaded." << endl;
cout << " allowed formats are: db, dat, msr" << endl << endl;
cout << "SCRIPT COMMANDS:" << endl;
cout << " Lines starting with '#', '%', or '//' are comments and will be ignored." << endl;
cout << " The same is true for empty lines. Comments are also allowed at the end" << endl;
cout << " for a command, i.e. loadPath ./ # the best place ever." << endl;
cout << endl;
cout << " loadPath <dir> : set the load path to <dir>. Bash variables like" << endl;
cout << " $HOME are accepted." << endl;
cout << " load <coll> : will load a collection <coll>. Currently *.db and *.dat" << endl;
cout << " are handled." << endl;
cout << " selectAll : will select all loaded collections. Thie means every plot" << endl;
cout << " of variable x/y will be carried out to ALL collections." << endl;
cout << " select <nn> : selects collection <nn>, where <nn> is either the number" << endl;
cout << " of the collections, or its name, e.g. " << endl;
cout << " select YBCO-40nm-T5K-FC150mT-Escan.db" << endl;
cout << " addX <label> : add <label> as a x-variable. Only one is allowed." << endl;
cout << " addY <label(s)>: add <label(s)> as y-variable. Multiple labls are possible." << endl;
cout << " savePath <dir> : set the save path to <dir>. The place where the macros," << endl;
cout << " and/or the plot output will be saved." << endl;
cout << " plot <fln> : where <fln> is the file name with extension under which" << endl;
cout << " the plot should be saved." << endl;
cout << " macro <fln> : where <fln> is the file name under which the root macro" << endl;
cout << " should be saved." << endl;
cout << endl;
}
//------------------------------------------------------------------------
/**
* @brief mupp_scrript_read
* @param fln
* @param list
* @return
*/
int mupp_script_read(const char *fln, QStringList &list)
{
QFile file(fln);
if (!file.open(QIODevice::ReadOnly | QIODevice::Text)) {
cerr << endl;
cerr << "*********" << endl;
cerr << "**ERROR** couldn't open '" << fln << "'." << endl;
cerr << "*********" << endl;
return -1;
}
QTextStream fin(&file);
QString line;
int pos;
while (!fin.atEnd()) {
line = fin.readLine();
line = line.simplified();
if (line.isEmpty())
continue;
if (line.startsWith("#") || line.startsWith("%") || line.startsWith("//"))
continue;
// remove all potentially present trailing comments
pos = line.indexOf("#");
if (pos != -1)
line.remove(pos, line.length()-pos);
pos = line.indexOf("%");
if (pos != -1)
line.remove(pos, line.length()-pos);
pos = line.indexOf("//");
if (pos != -1)
line.remove(pos, line.length()-pos);
line = line.simplified();
// feed script list
list << line;
}
return 0;
}
//------------------------------------------------------------------------
/**
* @brief mupp_bash_variable_exists
* @param str
* @return
*/
bool mupp_bash_variable_exists(const QString str)
{
QString var = str;
var.remove("$");
QProcessEnvironment procEnv = QProcessEnvironment::systemEnvironment();
QString varExpanded = procEnv.value(var, "");
if (!varExpanded.isEmpty())
return true;
return false;
}
//------------------------------------------------------------------------
/**
* @brief mupp_script_syntax_check
* @param list
* @return
*/
int mupp_script_syntax_check(QStringList &list)
{
QString str;
QStringList tok;
for (int i=0; i<list.size(); i++) {
tok.clear();
str = list.at(i);
if (str.startsWith("loadPath")) {
tok = str.split(' ', QString::SkipEmptyParts);
if (tok.size() < 2) {
cerr << endl;
cerr << "****************" << endl;
cerr << "**SYNTAX ERROR** found '" << str.toLatin1().constData() << "'. <path> is missing." << endl;
cerr << "****************" << endl;
return -1;
}
tok.clear();
// check if bash variables are present, and if yes try to resolve them making sure they or NOT empty.
str = str.remove("loadPath ");
tok = str.split('/');
for (int i=0; i<tok.size(); i++) {
if (tok.at(i).startsWith("$")) {
if (!mupp_bash_variable_exists(tok.at(i))) {
cerr << endl;
cerr << "****************" << endl;
cerr << "**SYNTAX ERROR** found in command '" << list.at(i).toLatin1().constData() << "' an empty bash variable '" << tok.at(i).toLatin1().constData() << "'." << endl;
cerr << "****************" << endl;
return -2;
}
}
}
} else if (str.startsWith("load")) {
tok = str.split(' ', QString::SkipEmptyParts);
if (tok.size() < 2) {
cerr << endl;
cerr << "****************" << endl;
cerr << "**SYNTAX ERROR** found '" << str.toLatin1().constData() << "'. At least one collection file name is expected." << endl;
cerr << "****************" << endl;
return -1;
}
} else if (str.startsWith("addX")) {
tok = str.split(' ', QString::SkipEmptyParts);
if (tok.size() != 2) {
cerr << endl;
cerr << "****************" << endl;
cerr << "**SYNTAX ERROR** found '" << str.toLatin1().constData() << "'. Only one variable name is accepted." << endl;
cerr << "****************" << endl;
return -1;
}
} else if (str.startsWith("addY")) {
tok = str.split(' ', QString::SkipEmptyParts);
if (tok.size() < 2) {
cerr << endl;
cerr << "****************" << endl;
cerr << "**SYNTAX ERROR** found '" << str.toLatin1().constData() << "'. At least one variable name is needed." << endl;
cerr << "****************" << endl;
return -1;
}
} else if (str.startsWith("select ")) {
tok = str.split(' ', QString::SkipEmptyParts);
if (tok.size() != 2) {
cerr << endl;
cerr << "****************" << endl;
cerr << "**SYNTAX ERROR** found '" << str.toLatin1().constData() << "'. Only one row-number of collection name is accepted." << endl;
cerr << "****************" << endl;
return -1;
}
} else if (str.startsWith("selectAll")) {
if (str.compare("selectAll")) {
cerr << endl;
cerr << "****************" << endl;
cerr << "**SYNTAX ERROR** found '" << str.toLatin1().constData() << "'. selectAll doesn't accept any options." << endl;
cerr << "****************" << endl;
return -1;
}
} else if (str.startsWith("savePath")) {
tok = str.split(' ', QString::SkipEmptyParts);
if (tok.size() != 2) {
cerr << endl;
cerr << "****************" << endl;
cerr << "**SYNTAX ERROR** found '" << str.toLatin1().constData() << "'. Only one save path is accepted." << endl;
cerr << "****************" << endl;
return -1;
}
} else if (str.startsWith("plot")) {
tok = str.split(' ', QString::SkipEmptyParts);
if (tok.size() != 2) {
cerr << endl;
cerr << "****************" << endl;
cerr << "**SYNTAX ERROR** found '" << str.toLatin1().constData() << "'. Only one file name is accepted." << endl;
cerr << "****************" << endl;
return -1;
}
// check extension
tok.clear();
tok = str.split('.', QString::SkipEmptyParts);
QString ext = tok.at(tok.size()-1);
ext = ext.toLower();
if ((ext != "pdf") && (ext != "jpg") && (ext != "png") && (ext != "svg") && (ext != "gif")) {
cerr << endl;
cerr << "****************" << endl;
cerr << "**SYNTAX ERROR** found extension " << ext.toLatin1().constData() << " in '" << str.toLatin1().constData() << "' which is not supported." << endl;
cerr << " Currently only: pdf, jpg, png, svg, and gif are supported." << endl;
cerr << "****************" << endl;
return -2;
}
} else if (str.startsWith("macro")) {
tok = str.split(' ', QString::SkipEmptyParts);
if (tok.size() != 2) {
cerr << endl;
cerr << "****************" << endl;
cerr << "**SYNTAX ERROR** found '" << str.toLatin1().constData() << "'. Only one file name is accepted." << endl;
cerr << "****************" << endl;
return -1;
}
// check extension
tok.clear();
tok = str.split('.', QString::SkipEmptyParts);
QString ext = tok.at(tok.size()-1);
ext = ext.toLower();
if (ext != "c") {
cerr << endl;
cerr << "****************" << endl;
cerr << "**SYNTAX ERROR** found extension " << ext.toLatin1().constData() << " in '" << str.toLatin1().constData() << "' which is not supported." << endl;
cerr << " Currently only: C are supported." << endl;
cerr << "****************" << endl;
return -2;
}
} else {
cerr << endl;
cerr << "*********" << endl;
cerr << "**ERROR** found unrecognized script command: '" << str.toLatin1().constData() << "'." << endl;
cerr << "*********" << endl;
cerr << " Currently supported:" << endl;
cerr << " load <coll(s)>, where <coll(s)> is a file-name-list of collections (*.db, *.dat)" << endl;
cerr << " loadPath <path>, where <path> is the load path accepting bash variables like $HOME, etc." << endl;
cerr << " addX <var-name>, where <var-name> is a data tag of the db/dat-file." << endl;
cerr << " addY <var-name>, where <var-name> is a data tag of the db/dat-file." << endl;
cerr << " select <nn>, where <nn> is the row-number or collection name of the collection to be selected." << endl;
cerr << " selectAll, i.e. already set addX, addY will apply to ALL collections present." << endl;
cerr << " savePath <path>, where <path> is the save path accepting bash variables like $HOME, etc." << endl;
cerr << " plot <fln>, where <fln> is the file name with extension under which the plot should be saved." << endl;
cerr << " macro <fln>, where <fln> is the file name under which the root macro should be saved." << endl;
cerr << endl;
return -3;
}
}
return 0;
}
//------------------------------------------------------------------------
/**
* @brief createApplication
* @param argc
* @param argv
* @param gui
* @return
*/
QCoreApplication* createApplication(int &argc, char *argv[], bool gui)
{
if (gui)
return new QApplication(argc, argv);
else
return new QCoreApplication(argc, argv);
}
//------------------------------------------------------------------------
/**
* @brief main
* @param argc
* @param argv
* @return
*/
int main(int argc, char *argv[])
{
Q_INIT_RESOURCE(mupp);
QStringList fln;
QStringList script;
if (argc > 1) {
if (!qstrcmp(argv[1], "-h") || !qstrcmp(argv[1], "--help")) {
mupp_syntax();
return 0;
} else if (!qstrcmp(argv[1], "-v") || !qstrcmp(argv[1], "--version")) {
cout << endl << "mupp git-branch " << GIT_BRANCH << ", git-revision: " << GIT_COMMIT_HASH << ", version: " << MUPP_VERSION << endl << endl;
return 0;
} else if (!qstrcmp(argv[1], "-s") || !qstrcmp(argv[1], "--script")) {
if (argc != 3) {
cerr << endl;
cerr << "*********" << endl;
cerr << "**ERROR** the script option cannot be combined with something else." << endl;
cerr << "*********" << endl;
mupp_syntax();
return -1;
}
// make sure that the script file exists
if (!QFile::exists(argv[2])) {
cerr << endl;
cerr << "*********" << endl;
cerr << "**ERROR** the script file '" << argv[2] << "' doesn't exist." << endl;
cerr << "*********" << endl << endl;
return -1;
}
// read script file
if (mupp_script_read(argv[2], script) != 0) {
cerr << endl;
cerr << "*********" << endl;
cerr << "**ERROR** couldn't read script '" << argv[2] << "'" << endl;
cerr << "*********" << endl;
return -1;
}
// check syntax of the script
if (mupp_script_syntax_check(script) != 0) {
return -1;
}
} else if (argc >= 2) { // assume it should be a fit-param-file-name list
// check if a path is given
int start=1;
QString path="";
if (!qstrcmp(argv[1], "--path")) {
if (argc < 4) {
cerr << endl;
cerr << "*********" << endl;
cerr << "**ERROR** tag '--path' needs to be followed by a <fit-param-path> and at least one <fit-param-file-name>" << endl;
cerr << "*********" << endl;
mupp_syntax();
return -1;
}
path = argv[2];
start = 3;
}
for (int i=start; i<argc; i++) {
fln.push_back(argv[i]);
}
if (!path.isEmpty()) {
for (int i=0; i<fln.size(); i++) {
fln[i].prepend(path+"/");
}
}
}
}
bool guiFlag=true;
if (script.size() > 0) { // script
guiFlag = false;
}
QCoreApplication *app = createApplication(argc, argv, guiFlag);
if (qobject_cast<QApplication *>(app)) { // GUI
PmuppGui *gui = new PmuppGui(fln);
gui->setWindowTitle( "muSR Parameter Plotter" );
gui->resize( 800, 500 );
gui->show();
app->connect( app, SIGNAL( lastWindowClosed() ), app, SLOT( quit() ) );
app->connect( app, SIGNAL( aboutToQuit() ), gui, SLOT( aboutToQuit() ) );
} else { // scripting
PmuppScript *mupp_script = new PmuppScript(script);
if (mupp_script == 0) {
cerr << endl;
cerr << "*********" << endl;
cerr << "**ERROR** couldn't invoke script class..." << endl;
cerr << "*********" << endl;
return -1;
}
// This will cause the application to exit when the task signals finished.
QObject::connect( mupp_script, SIGNAL( finished() ), app, SLOT( quit() ) );
// This will run the task from the application event loop.
QTimer::singleShot(0, mupp_script, SLOT( executeScript() ) );
}
return app->exec();
}

View File

@ -0,0 +1,45 @@
/***************************************************************************
mupp.h
Author: Andreas Suter
e-mail: andreas.suter@psi.ch
***************************************************************************/
/***************************************************************************
* Copyright (C) 2007-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 _MUPP_H_
#define _MUPP_H_
#include <sys/types.h>
#include <sys/ipc.h>
#include <sys/msg.h>
#include <sys/stat.h>
#define PMUPP_MAX_MTEXT 512
struct mbuf {
long mtype; // message type
char mtext[PMUPP_MAX_MTEXT]; // message body
};
#endif // _MUPP_H_

View File

@ -0,0 +1,11 @@
<RCC>
<qresource prefix="/">
<file>icons/mupp-plain.svg</file>
<file>icons/mupp-dark.svg</file>
<file>icons/document-open-plain.svg</file>
<file>icons/document-open-dark.svg</file>
<file>icons/mupp.icns</file>
<file>mupp_startup.xml.in</file>
</qresource>
</RCC>

View File

@ -0,0 +1,40 @@
<?xml version="1.0" encoding="UTF-8"?>
<mupp xmlns="http://lmu.web.psi.ch/musrfit/user/MUSR/WebHome.html">
<comment>
Defines default settings for the mupp helper program for musrfit
</comment>
<root_settings>
<marker_list>
<!-- Root marker numbers -->
<marker>20,1.3</marker> <!-- full circle -->
<marker>21,1.3</marker> <!-- full square -->
<marker>22,1.5</marker> <!-- full triangle -->
<marker>23,1.5</marker> <!-- full triangle down -->
<marker>34,1.3</marker> <!-- full cross -->
<marker>47,1.3</marker> <!-- full cross at 45° -->
<marker>24,1.3</marker> <!-- open circle -->
<marker>25,1.3</marker> <!-- open square -->
<marker>26,1.5</marker> <!-- open triangle -->
<marker>27,1.5</marker> <!-- open diamond -->
<marker>28,1.5</marker> <!-- open cross -->
<marker>29,1.5</marker> <!-- full star -->
<marker>30,1.5</marker> <!-- open star -->
<marker>2,1.5</marker> <!-- thin cross -->
<marker>3,1.5</marker> <!-- thin star -->
<marker>5,1.5</marker> <!-- thin x -->
</marker_list>
<color_list>
<!-- Color as RGB coded string -->
<color>0,0,0,kBlack</color>
<color>255,0,0,kRed</color>
<color>0,0,255,kBlue</color>
<color>0,255,0,kGreen</color>
<color>255,0,255,kMagenta</color>
<color>0,255,255,kCyan</color>
<color>153,0,255,kViolet-3</color>
<color>102,102,51,kYellow-1</color>
<color>51,102,51,kGreen-1,</color>
<color>153,0,0,kRed+2</color>
</color_list>
</root_settings>
</mupp>

View File

@ -0,0 +1,67 @@
#--- mupp_plotter -------------------------------------------------------------
message("-- Handle the plotter part of mupp")
#--- instruct cmake NOT to run moc automatically when needed anymore ----------
set(CMAKE_AUTOMOC OFF)
#--- headers ------------------------------------------------------------------
set(HEADER
mupp_plot.h
PMuppCanvas.h
PMuppCanvasLinkDef.h
PMuppStartupHandler.h
PMuppStartupHandlerLinkDef.h
)
#--- sources ------------------------------------------------------------------
set(SOURCE
mupp_plot.cpp
PMuppCanvas.cpp
PMuppStartupHandler.cpp
)
#--- dictionary generated sources ---------------------------------------------
set ( PLOT_DIR
${CMAKE_CURRENT_BINARY_DIR}
)
#--- generate necessary dictionaries ------------------------------------------
root_generate_dictionary(
PMuppCanvasDict
-I${CMAKE_CURRENT_SOURCE_DIR}
-I${CMAKE_CURRENT_SOURCE_DIR}/..
PMuppCanvas.h
LINKDEF PMuppCanvasLinkDef.h
)
root_generate_dictionary(
PMuppStartupHandlerDict
-I${CMAKE_CURRENT_SOURCE_DIR}
-I${CMAKE_CURRENT_SOURCE_DIR}/..
PMuppStartupHandler.h
LINKDEF PMuppStartupHandlerLinkDef.h
)
#--- define all the dictonary cxx ---------------------------------------------
set(DICT
${PLOT_DIR}/PMuppCanvasDict.cxx
${PLOT_DIR}/PMuppStartupHandlerDict.cxx
)
#--- define executable --------------------------------------------------------
add_executable(mupp_plot ${SOURCE} ${DICT})
#--- add all needed include directories ---------------------------------------
target_include_directories(mupp_plot
PRIVATE
${ROOT_INCLUDE_DIRS}
${CMAKE_CURRENT_BINARY_DIR}
${CMAKE_CURRENT_BINARY_DIR}/..
${CMAKE_CURRENT_SOURCE_DIR}
${CMAKE_CURRENT_SOURCE_DIR}/..
)
#--- define all to be linked libs ---------------------------------------------
target_link_libraries(mupp_plot ${ROOT_LIBRARIES})
#--- install ------------------------------------------------------------------
install(TARGETS mupp_plot DESTINATION bin)

View File

@ -0,0 +1,656 @@
/***************************************************************************
PMuppCanvas.cpp
Author: Andreas Suter
e-mail: andreas.suter@psi.ch
***************************************************************************/
/***************************************************************************
* Copyright (C) 2007-2018 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 <fstream>
using namespace std;
#include <TColor.h>
#include <TROOT.h>
#include <TGFileDialog.h>
#include <TGMsgBox.h>
#include <TString.h>
#include <TObjArray.h>
#include <TObjString.h>
#include <TRandom.h>
#include <TAxis.h>
#include "PMuppCanvas.h"
static const char *gFiletypes[] = { "Data files", "*.dat",
"All files", "*",
0, 0 };
ClassImpQ(PMuppCanvas)
//--------------------------------------------------------------------------
// Constructor
//--------------------------------------------------------------------------
/**
* @brief PMuppCanvas::PMuppCanvas
*/
PMuppCanvas::PMuppCanvas()
{
fFtokName = TString("");
fCheckMsgQueue = 0;
fStyle = 0;
fImp = 0;
fBar = 0;
fPopupMain = 0;
fMainCanvas = 0;
fMultiGraph = 0;
gStyle->SetHistMinimumZero(kTRUE); // needed to enforce proper bar option handling
}
//--------------------------------------------------------------------------
// Constructor
//--------------------------------------------------------------------------
/**
* @brief PMuppCanvas::PMuppCanvas
* @param title
* @param wtopx
* @param wtopy
* @param ww
* @param wh
* @param markerSytleList
* @param markerSizeList
* @param colorList
*/
PMuppCanvas::PMuppCanvas(const Char_t *title, Int_t wtopx, Int_t wtopy,
Int_t ww, Int_t wh, const PIntVector markerSytleList,
const PDoubleVector markerSizeList, const PIntVector colorList) :
fMarkerStyleList(markerSytleList),
fMarkerSizeList(markerSizeList),
fColorList(colorList)
{
fValid = true;
fFtokName = TString("");
fCheckMsgQueue = 0;
// install IPC message queue timer
fCheckMsgQueue = new TTimer();
if (fCheckMsgQueue == 0) {
fValid = false;
cerr << "**ERROR** couldn't start IPC message queue timer..." << endl;
return;
}
fCheckMsgQueue->Connect("Timeout()", "PMuppCanvas", this, "CheckIPCMsgQueue()");
fCheckMsgQueue->Start(200, kFALSE);
CreateStyle();
InitMuppCanvas(title, wtopx, wtopy, ww, wh);
}
//--------------------------------------------------------------------------
// Destructor
//--------------------------------------------------------------------------
/**
* @brief PMuppCanvas::~PMuppCanvas
*/
PMuppCanvas::~PMuppCanvas()
{
if (fMainCanvas) {
delete fMainCanvas;
}
if (fMultiGraph) {
delete fMultiGraph;
}
if (fStyle) {
delete fStyle;
}
}
//--------------------------------------------------------------------------
// Done (SIGNAL)
//--------------------------------------------------------------------------
/**
* <p>Signal emitted that the user wants to terminate the application.
*
* \param status Status info
*/
void PMuppCanvas::Done(Int_t status)
{
Emit("Done(Int_t)", status);
}
//--------------------------------------------------------------------------
// HandleCmdKey (SLOT)
//--------------------------------------------------------------------------
/**
* <p>Filters keyboard events, and if they are a command key (see below) carries out the
* necessary actions.
* <p>Currently implemented command keys:
* - 'q' quit mupp_plot
*
* \param event event type
* \param x character key
* \param y not used
* \param selected not used
*/
void PMuppCanvas::HandleCmdKey(Int_t event, Int_t x, Int_t y, TObject *selected)
{
if (event != kKeyPress)
return;
// handle keys and popup menu entries
if (x == 'q') { // quit
Done(0);
} else if (x == 'b') { // about
new TGMsgBox(gClient->GetRoot(), 0, "About mupp", "created by Andreas Suter\nPSI/NUM/LMU/LEM\n2018", kMBIconAsterisk);
}
}
//--------------------------------------------------------------------------
// HandleMenuPopup (SLOT)
//--------------------------------------------------------------------------
/**
* <p>Handles the mupp menu.
*
* \param id identification key of the selected menu
*/
void PMuppCanvas::HandleMenuPopup(Int_t id)
{
if (id == P_MENU_ID_EXPORT) {
ExportData();
} else if (id == P_MENU_ID_ABOUT) {
new TGMsgBox(gClient->GetRoot(), 0, "About mupp", "created by Andreas Suter\nPSI/NUM/LMU/LEM\n2017", kMBIconAsterisk);
}
}
//--------------------------------------------------------------------------
// LastCanvasClosed (SLOT)
//--------------------------------------------------------------------------
/**
* <p>Slot called when the last canvas has been closed. Will emit Done(0) which will
* terminate the application.
*/
void PMuppCanvas::LastCanvasClosed()
{
// cout << endl << ">> in last canvas closed check ...";
if (gROOT->GetListOfCanvases()->IsEmpty()) {
Done(0);
}
}
//--------------------------------------------------------------------------
// WindowClosed (SLOT)
//--------------------------------------------------------------------------
/**
* <p>Slot called when the canvas is closed. Seems to be necessary on some systems.
*/
void PMuppCanvas::WindowClosed()
{
gROOT->GetListOfCanvases()->Remove(fMainCanvas);
LastCanvasClosed();
}
//--------------------------------------------------------------------------
// CreateStyle (private)
//--------------------------------------------------------------------------
/**
* <p> Set styles for the canvas. Perhaps one could transfer them to the startup-file in the future.
*/
void PMuppCanvas::CreateStyle()
{
TString muppStyle("muppStyle");
fStyle = new TStyle(muppStyle, muppStyle);
fStyle->SetOptStat(0); // no statistics options
fStyle->SetOptTitle(0); // no title
// set margins
fStyle->SetPadLeftMargin(0.15);
fStyle->SetPadRightMargin(0.05);
fStyle->SetPadBottomMargin(0.12);
fStyle->SetPadTopMargin(0.05);
fStyle->cd();
}
//--------------------------------------------------------------------------
/**
* @brief PMuppCanvas::InitMuppCanvas
* @param title
* @param wtopx
* @param wtopy
* @param ww
* @param wh
*/
void PMuppCanvas::InitMuppCanvas(const Char_t *title, Int_t wtopx, Int_t wtopy, Int_t ww, Int_t wh)
{
fValid = false;
// invoke canvas
TString canvasName = TString("fMuppCanvas");
fMainCanvas = new TCanvas(canvasName.Data(), title, wtopx, wtopy, ww, wh);
if (fMainCanvas == 0) {
cerr << endl << ">> PMuppCanvas::InitMuppCanvas(): **PANIC ERROR** Couldn't invoke " << canvasName.Data();
cerr << endl;
return;
}
fMainCanvas->SetFillColor(0);
fMultiGraph = 0;
fImp = (TRootCanvas*)fMainCanvas->GetCanvasImp();
fImp->Connect("CloseWindow()", "PMuppCanvas", this, "WindowClosed()");
fBar = fImp->GetMenuBar();
fPopupMain = fBar->AddPopup("&Mupp");
fPopupMain->AddEntry("Export &Data", P_MENU_ID_EXPORT);
fPopupMain->AddSeparator();
fPopupMain->AddEntry("A&bout", P_MENU_ID_ABOUT);
fBar->MapSubwindows();
fBar->Layout();
fPopupMain->Connect("TGPopupMenu", "Activated(Int_t)", "PMuppCanvas", this, "HandleMenuPopup(Int_t)");
fValid = true;
fMainCanvas->cd();
fMainCanvas->Show();
fMainCanvas->Connect("ProcessedEvent(Int_t,Int_t,Int_t,TObject*)", "PMuppCanvas",
this, "HandleCmdKey(Int_t,Int_t,Int_t,TObject*)");
}
//--------------------------------------------------------------------------
/**
* @brief PMuppCanvas::CheckIPCMsgQueue
*/
void PMuppCanvas::CheckIPCMsgQueue()
{
int msqid, flags, type, key, status;
ssize_t msgLen;
struct mbuf msg;
char str[1024];
// get msqid
if (fFtokName.IsWhitespace()) {
strncpy(str, getenv("HOME"), sizeof(str)-1);
if (strlen(str) == 0) {
cerr << endl;
cerr << "**ERROR** couldn't get value of the environment variable HOME." << endl << endl;
return;
}
strncat(str, "/.musrfit/mupp/_mupp_ftok.dat", sizeof(str)-1);
ifstream fin(str, ifstream::in);
if (!fin.is_open()) {
cerr << endl;
cerr << "**ERROR** couldn't open " << str << endl;
return;
}
fin.getline(str, 1024);
fin.close();
fFtokName = str;
}
key = ftok(fFtokName.Data(), 1);
flags = IPC_CREAT;
msqid = msgget(key, flags | S_IRUSR | S_IWUSR);
if (msqid == -1) {
cerr << endl;
cerr << "**ERROR** couldn't get msqid." << endl << endl;
return;
}
// get message
flags = IPC_NOWAIT;
type = 1;
msgLen = msgrcv(msqid, &msg, PMUPP_MAX_MTEXT, type, flags);
if (msgLen > 0) {
status = ReadPlotData(msg.mtext);
if (status != 0) {
cerr << "**ERROR** reading " << msg.mtext << endl;
}
}
}
//--------------------------------------------------------------------------
/**
* @brief PMuppCanvas::ReadPlotData
* @param fln
* @return
*/
int PMuppCanvas::ReadPlotData(const Char_t *fln)
{
ifstream fin(fln, ifstream::in);
char line[1024];
if (!fin.is_open()) {
cerr << "**ERROR** Couldn't open " << fln << endl;
return -1;
}
TString str;
TObjArray *tok;
TObjString *ostr;
Ssiz_t idx;
Int_t noOfDataTokens=0;
PDataCollection data;
PDataPoint dataPoint;
fPlotData.clear();
while (fin.good()) {
fin.getline(line, 1024);
if (line[0] == '%') {
if (strstr(line, "% collName")) {
noOfDataTokens = 0;
InitDataCollection(data); // make sure that one starts with a fresh collection
str = line;
idx = str.First("=");
str = str.Remove(0,idx+2);
data.name = str;
} else if (strstr(line, "% end")) {
fPlotData.push_back(data);
}
} else if (strlen(line) == 0) { // ignore empty lines
continue;
} else if (strstr(line, "xLabel:")) { // header information
str = line;
tok = str.Tokenize(":,");
if (tok == 0) {
cerr << "**ERROR** Couldn't tokenize the label line." << endl;
fin.close();
return -2;
}
if (tok->GetEntries() < 4) {
cerr << "**ERROR** label line doesn't contain sufficient information." << endl;
fin.close();
return -3;
}
ostr = dynamic_cast<TObjString*>(tok->At(1));
data.xLabel = ostr->GetString();
noOfDataTokens++;
for (Int_t i=3; i<tok->GetEntries(); i+=2) {
ostr = dynamic_cast<TObjString*>(tok->At(i));
data.yLabel.push_back(ostr->GetString());
noOfDataTokens++;
}
// clean up
delete tok;
tok = 0;
} else { // data lines
str = line;
tok = str.Tokenize(", ");
if (tok == 0) {
cerr << "**ERROR** Couldn't tokenize data line." << endl;
fin.close();
return -4;
}
if (tok->GetEntries() != (noOfDataTokens-1)*3+1) {
cerr << "**ERROR** number of token in data line (" << tok->GetEntries() << ") is inconsistent with no of labels (" << noOfDataTokens << ")." << endl;
fin.close();
return -4;
}
// resize y-value vector properly
data.yValue.resize(noOfDataTokens-1);
// raw data point
// x-value
ostr = dynamic_cast<TObjString*>(tok->At(0));
str = ostr->GetString();
if (!str.IsFloat()) {
cerr << "**ERROR** token found in data line is not a number (" << str << ")." << endl;
fin.close();
return -5;
}
data.xValue.push_back(str.Atof());
// y-value(s)
Int_t idx=0;
for (Int_t i=1; i<tok->GetEntries(); i+=3) {
// y-value
ostr = dynamic_cast<TObjString*>(tok->At(i));
str = ostr->GetString();
if (!str.IsFloat()) {
cerr << "**ERROR** token found in data line is not a number (" << str << ")." << endl;
fin.close();
return -5;
}
dataPoint.y = str.Atof();
// pos y error-value
ostr = dynamic_cast<TObjString*>(tok->At(i+1));
str = ostr->GetString();
if (!str.IsFloat()) {
cerr << "**ERROR** token found in data line is not a number (" << str << ")." << endl;
fin.close();
return -5;
}
dataPoint.eYpos = str.Atof();
// neg y error-value
ostr = dynamic_cast<TObjString*>(tok->At(i+2));
str = ostr->GetString();
if (!str.IsFloat()) {
cerr << "**ERROR** token found in data line is not a number (" << str << ")." << endl;
fin.close();
return -5;
}
dataPoint.eYneg = str.Atof();
// push dataPoint back into data structure
data.yValue[idx].push_back(dataPoint);
idx++;
}
// clean up
delete tok;
tok = 0;
}
}
fin.close();
// check if data structure makes sense
for (UInt_t i=0; i<fPlotData.size(); i++) {
cerr << "debug> collection " << i << endl;
cerr << "debug> name : " << fPlotData[i].name << endl;
cerr << "debug> x-label : " << fPlotData[i].xLabel << endl;
cerr << "debug> x-vales : " << endl;
cerr << "debug> ";
for (UInt_t j=0; j<fPlotData[i].xValue.size(); j++) {
cerr << fPlotData[i].xValue[j] << ", ";
}
cerr << endl;
for (UInt_t j=0; j<fPlotData[i].yValue.size(); j++) {
cerr << "debug> y-label : " << fPlotData[i].yLabel[j] << endl;
cerr << "debug> y-values " << j << ": " << endl;
for (UInt_t k=0; k<fPlotData[i].yValue[j].size(); k++) {
cerr << "debug> " << k << ": " << fPlotData[i].yValue[j][k].y << "(" << fPlotData[i].yValue[j][k].eYneg << "/" << fPlotData[i].yValue[j][k].eYpos << ")" << endl;
}
}
cerr << endl;
}
// feed graph objects
UpdateGraphs();
return 0;
}
//--------------------------------------------------------------------------
/**
* @brief PMuppCanvas::InitDataCollection
* @param coll
*/
void PMuppCanvas::InitDataCollection(PDataCollection &coll)
{
coll.name = TString("");
coll.xLabel = TString("");
coll.yLabel.clear();
coll.xValue.clear();
coll.yValue.clear();
}
//--------------------------------------------------------------------------
/**
* @brief PMuppCanvas::UpdateGraphs
*/
void PMuppCanvas::UpdateGraphs()
{
// first: get rid of all previous plots
for (UInt_t i=0; i<fGraphE.size(); i++) {
delete fGraphE[i];
}
fGraphE.clear();
if (fMultiGraph) {
delete fMultiGraph;
fMultiGraph = 0;
}
// second: create all the necessary graphs
TGraphAsymmErrors *gg = 0;
UInt_t idxS = 0, idxC = 0;
Int_t color;
TString str;
if (fMultiGraph == 0) { // first time called
for (UInt_t i=0; i<fPlotData.size(); i++) { // loop over all collections
for (UInt_t j=0; j<fPlotData[i].yValue.size(); j++) { // loop over all graph's within the collection
gg = new TGraphAsymmErrors(fPlotData[i].xValue.size());
for (UInt_t k=0; k<fPlotData[i].yValue[j].size(); k++) {
gg->SetPoint(k, fPlotData[i].xValue[k], fPlotData[i].yValue[j][k].y);
gg->SetPointError(k, 0.0, 0.0, fabs(fPlotData[i].yValue[j][k].eYneg), fPlotData[i].yValue[j][k].eYpos);
// set marker style and size
if (idxS < fMarkerStyleList.size()) {
gg->SetMarkerStyle(fMarkerStyleList[idxS]);
gg->SetMarkerSize(fMarkerSizeList[idxS]);
} else { // random choice of the marker
// still missing as35
}
// set color
if (idxC < fColorList.size()) {
gg->SetMarkerColor(fColorList[idxC]);
gg->SetLineColor(fColorList[idxC]);
gg->SetFillColor(kWhite);
} else { // random choise of the color
TRandom rand(i+j+k);
color = TColor::GetColor((Int_t)rand.Integer(255), (Int_t)rand.Integer(255), (Int_t)rand.Integer(255));
gg->SetMarkerColor(color);
gg->SetLineColor(color);
gg->SetFillColor(kWhite);
}
}
idxS++;
idxC++;
// set name
str = fPlotData[i].yLabel[j];
if (fPlotData[i].yValue.size() > 1) {
str += "-";
str += j;
}
gg->SetName(str);
gg->SetTitle(str);
// set x-axis title
gg->GetXaxis()->SetTitle(fPlotData[i].xLabel);
// set y-axis title
gg->GetYaxis()->SetTitle(fPlotData[i].yLabel[j]);
fGraphE.push_back(gg);
}
}
fMultiGraph = new TMultiGraph();
if (fMultiGraph == 0) {
cerr << "**ERROR** couldn't create necessary TMultiGraph object." << endl;
return;
}
if (fGraphE.size() == 0) {
cerr << "**ERROR** NO graphs present! This should never happen." << endl;
return;
}
for (UInt_t i=0; i<fGraphE.size(); i++) {
fMultiGraph->Add(fGraphE[i], "p");
}
fMultiGraph->Draw("a");
// set x-axis limits. This is needed that the graphs x-axis starts at 0.0
Double_t xmin=fMultiGraph->GetXaxis()->GetXmin();
Double_t xmax=fMultiGraph->GetXaxis()->GetXmax();
if (xmin > 0.0) {
fMultiGraph->GetXaxis()->SetLimits(0.0, xmax);
}
// set fMultiGraph x/y-axis title
if (fGraphE.size() == 1) { // only one data set
fMultiGraph->GetXaxis()->SetTitle(fGraphE[0]->GetXaxis()->GetTitle());
fMultiGraph->GetXaxis()->SetTitleSize(0.05);
fMultiGraph->GetYaxis()->SetTitle(fGraphE[0]->GetYaxis()->GetTitle());
fMultiGraph->GetYaxis()->SetTitleOffset(1.25);
fMultiGraph->GetYaxis()->SetTitleSize(0.05);
fMultiGraph->GetYaxis()->SetLabelOffset(0.01);
fMultiGraph->GetYaxis()->SetDecimals();
} else { // multiple data sets
fMultiGraph->GetXaxis()->SetTitle(fGraphE[0]->GetXaxis()->GetTitle()); // need a better solution, as35
fMultiGraph->GetXaxis()->SetTitleSize(0.05);
fMultiGraph->GetYaxis()->SetTitle(fGraphE[0]->GetYaxis()->GetTitle()); // need a better solution, as35
fMultiGraph->GetYaxis()->SetTitleOffset(1.25);
fMultiGraph->GetYaxis()->SetTitleSize(0.05);
fMultiGraph->GetYaxis()->SetLabelOffset(0.01);
fMultiGraph->GetYaxis()->SetDecimals();
}
gPad->Modified();
fMainCanvas->cd();
fMainCanvas->Update();
} else { // update of the graphs
// still missing, as35
}
}
//--------------------------------------------------------------------------
/**
* @brief PMuppCanvas::ExportData
*/
void PMuppCanvas::ExportData()
{
static TString dir(".");
TGFileInfo fi;
fi.fFileTypes = gFiletypes;
fi.fIniDir = StrDup(dir);
fi.fOverwrite = true;
new TGFileDialog(0, fImp, kFDSave, &fi);
if (fi.fFilename && strlen(fi.fFilename)) {
// still missing, as35
new TGMsgBox(gClient->GetRoot(), 0, "ExportData", "NOT YET IMPLEMENTED", kMBIconAsterisk);
}
}

View File

@ -0,0 +1,126 @@
/***************************************************************************
PMuppCanvas.h
Author: Andreas Suter
e-mail: andreas.suter@psi.ch
***************************************************************************/
/***************************************************************************
* Copyright (C) 2007-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 _PMUPPCANVAS_H_
#define _PMUPPCANVAS_H_
#include <vector>
using namespace std;
#include <TObject.h>
#include <TQObject.h>
#include <TStyle.h>
#include <TRootCanvas.h>
#include <TGMenu.h>
#include <TCanvas.h>
#include <TMultiGraph.h>
#include <TGraphAsymmErrors.h>
#include <TTimer.h>
#include "mupp_plot.h"
#include "mupp.h"
// Canvas menu id's
#define P_MENU_ID_EXPORT 10001
#define P_MENU_ID_ABOUT 10002
//--------------------------------------------------------------------------
typedef struct {
Double_t y;
Double_t eYpos;
Double_t eYneg;
} PDataPoint;
//--------------------------------------------------------------------------
typedef struct {
TString name; // collection name
TString xLabel;
PStringVector yLabel;
PDoubleVector xValue;
vector< vector<PDataPoint> > yValue;
} PDataCollection;
//--------------------------------------------------------------------------
class PMuppCanvas : public TObject, public TQObject
{
public:
PMuppCanvas();
PMuppCanvas(const Char_t* title,
Int_t wtopx, Int_t wtopy, Int_t ww, Int_t wh,
const PIntVector markerSytleList, const PDoubleVector markerSizeList,
const PIntVector colorList);
virtual ~PMuppCanvas();
virtual Bool_t IsValid() { return fValid; }
virtual void Done(Int_t status=0); // *SIGNAL*
virtual void HandleCmdKey(Int_t event, Int_t x, Int_t y, TObject *selected); // SLOT
virtual void HandleMenuPopup(Int_t id); // SLOT
virtual void LastCanvasClosed(); // SLOT
virtual void WindowClosed(); // SLOT
virtual void CheckIPCMsgQueue();
private:
Bool_t fValid;
TString fFtokName;
TTimer *fCheckMsgQueue; ///< timer needed to check if a message in the IPC message queue is pending
vector<PDataCollection> fPlotData;
TStyle *fStyle; ///< A collection of all graphics attributes
// canvas menu related variables
TRootCanvas *fImp; ///< ROOT native GUI version of main window with menubar and drawing area
TGMenuBar *fBar; ///< menu bar
TGPopupMenu *fPopupMain; ///< popup menu mupp in the main menu bar
// canvas related variables
TCanvas *fMainCanvas; ///< main canvas
TMultiGraph *fMultiGraph; ///< main multi graph
vector<TGraphAsymmErrors*> fGraphE; ///< all error graphs
// perdefined markers, colors
PIntVector fMarkerStyleList;
PDoubleVector fMarkerSizeList;
PIntVector fColorList;
virtual void CreateStyle();
virtual void InitMuppCanvas(const Char_t* title, Int_t wtopx, Int_t wtopy, Int_t ww, Int_t wh);
virtual int ReadPlotData(const Char_t *fln);
virtual void InitDataCollection(PDataCollection &coll);
virtual void UpdateGraphs();
virtual void ExportData();
ClassDef(PMuppCanvas, 1)
};
#endif // _PMUPPCANVAS_H_

View File

@ -0,0 +1,38 @@
/***************************************************************************
PMuppCanvasLinkDef.h
Author: Andreas Suter
e-mail: andreas.suter@psi.ch
***************************************************************************/
/***************************************************************************
* Copyright (C) 2007-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. *
***************************************************************************/
#ifdef __CINT__
#pragma link off all globals;
#pragma link off all classes;
#pragma link off all functions;
#pragma link C++ class PMuppCanvas+;
#endif

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