work on the scripting part of mupp. Preparing for the step of parameter transformation.

This commit is contained in:
2020-04-23 16:35:55 +02:00
parent 83c4bff123
commit 32ed8d4df2
8 changed files with 220 additions and 69 deletions

View File

@@ -9,8 +9,8 @@ load YBCO-40nm-T120K-FC150mT-Escan.db
selectAll
addX dataE
addY Field
x dataE
y Field
savePath ./
plot FieldVsEnergy.pdf

View File

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

View File

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