First step in reorganizing the installation of the musrfit documentation (further commits will follow)
This commit is contained in:
15
src/external/BMWtools/TTrimSPDataHandler.cpp
vendored
15
src/external/BMWtools/TTrimSPDataHandler.cpp
vendored
@ -42,7 +42,7 @@ using namespace std;
|
||||
// Constructor of the TrimSPData class -- reading all available trim.SP-rge-files with a given name into std::vectors
|
||||
//--------------------
|
||||
|
||||
TTrimSPData::TTrimSPData(const string &path, map<double, string> &energies, bool debug) {
|
||||
TTrimSPData::TTrimSPData(const string &path, map<double, string> &energies, bool debug, unsigned int highRes) {
|
||||
|
||||
// sort the energies in ascending order - this might be useful for later applications (energy-interpolations etc.)
|
||||
// after the change from the vector to the map this is not necessary any more - since maps are always ordered!
|
||||
@ -101,6 +101,12 @@ TTrimSPData::TTrimSPData(const string &path, map<double, string> &energies, bool
|
||||
vnzz.clear();
|
||||
goodFile = false;
|
||||
|
||||
fIsNormalized.push_back(false);
|
||||
|
||||
if (highRes) {
|
||||
UseHighResolution(iter->first);
|
||||
}
|
||||
|
||||
} else {
|
||||
cerr << "TTrimSPData::TTrimSPData: " << energyStr << " does not seem to be a valid unmodified TRIM.SP output file!" << endl;
|
||||
continue;
|
||||
@ -113,9 +119,6 @@ TTrimSPData::TTrimSPData(const string &path, map<double, string> &energies, bool
|
||||
|
||||
fOrigDataNZ = fDataNZ;
|
||||
|
||||
for(unsigned int i(0); i<fEnergy.size();++i)
|
||||
fIsNormalized.push_back(false);
|
||||
|
||||
fEnergyIter = fEnergy.end();
|
||||
}
|
||||
|
||||
@ -146,7 +149,7 @@ void TTrimSPData::UseHighResolution(double e) {
|
||||
}
|
||||
fDataZ[i] = vecZ;
|
||||
fDataNZ[i] = vecNZ;
|
||||
fOrigDataNZ[i] = vecNZ;
|
||||
//fOrigDataNZ[i] = vecNZ;
|
||||
fDZ[i] = 1.;
|
||||
fIsNormalized[i] = false;
|
||||
return;
|
||||
@ -494,7 +497,7 @@ void TTrimSPData::ConvolveGss(double w, double e) const {
|
||||
if(fEnergyIter != fEnergy.end()) {
|
||||
unsigned int i(fEnergyIter - fEnergy.begin());
|
||||
z = fDataZ[i];
|
||||
nz = fOrigDataNZ[i];
|
||||
nz = fDataNZ[i];
|
||||
|
||||
for(unsigned int k(0); k<z.size(); k++) {
|
||||
gss.push_back(exp(-z[k]*z[k]/200.0/w/w));
|
||||
|
3
src/external/BMWtools/TTrimSPDataHandler.h
vendored
3
src/external/BMWtools/TTrimSPDataHandler.h
vendored
@ -43,7 +43,7 @@ class TTrimSPData {
|
||||
|
||||
public:
|
||||
|
||||
TTrimSPData(const string&, map<double, string>&, bool debug = false);
|
||||
TTrimSPData(const string&, map<double, string>&, bool debug = false, unsigned int highRes = 0);
|
||||
|
||||
~TTrimSPData() {
|
||||
fDataZ.clear();
|
||||
@ -60,6 +60,7 @@ public:
|
||||
vector<double> OrigDataNZ(double) const;
|
||||
double DataDZ(double) const;
|
||||
void UseHighResolution(double);
|
||||
void SetOriginal() {fOrigDataNZ = fDataNZ;}
|
||||
void WeightLayers(double, const vector<double>&, const vector<double>&) const;
|
||||
double LayerFraction(double, unsigned int, const vector<double>&) const;
|
||||
double GetNofZ(double, double) const;
|
||||
|
@ -33,6 +33,7 @@
|
||||
#include <functional>
|
||||
#include <string>
|
||||
#include <iostream>
|
||||
#include <fstream>
|
||||
using namespace std;
|
||||
|
||||
#include <TSAXParser.h>
|
||||
@ -257,7 +258,7 @@ TMeanFieldsForScBilayer::TMeanFieldsForScBilayer() {
|
||||
string rge_path(startupHandler->GetDataPath());
|
||||
map<double, string> energy_vec(startupHandler->GetEnergies());
|
||||
|
||||
fImpProfile = new TTrimSPData(rge_path, energy_vec, startupHandler->GetDebug());
|
||||
fImpProfile = new TTrimSPData(rge_path, energy_vec, startupHandler->GetDebug(), 1);
|
||||
|
||||
// clean up
|
||||
if (saxParser) {
|
||||
@ -272,10 +273,16 @@ TMeanFieldsForScBilayer::TMeanFieldsForScBilayer() {
|
||||
}
|
||||
|
||||
// Operator-method that returns the mean field for a given implantation energy
|
||||
// Parameters: field, deadlayer, layer1, layer2, lambda1, lambda2, weight1 (deadlayer), weight2, weight3, weight4 (substrate)
|
||||
// Parameters: field, deadlayer, layer1, layer2, lambda1, lambda2, weight1 (deadlayer), weight2, weight3, weight4 (substrate),
|
||||
// [Gss width for profile convolution]
|
||||
|
||||
double TMeanFieldsForScBilayer::operator()(double E, const vector<double> &par_vec) const{
|
||||
|
||||
|
||||
double width(0.0);
|
||||
if (par_vec.size() == 11) {
|
||||
width = par_vec[10];
|
||||
}
|
||||
|
||||
vector<double> interfaces;
|
||||
interfaces.push_back(par_vec[1]);
|
||||
interfaces.push_back(par_vec[1]+par_vec[2]);
|
||||
@ -299,12 +306,12 @@ double TMeanFieldsForScBilayer::operator()(double E, const vector<double> &par_v
|
||||
energyIter = find(energies.begin(), energies.end(), E);
|
||||
|
||||
if (energyIter != energies.end()) { // implantation profile found - no interpolation needed
|
||||
return CalcMeanB(E, interfaces, weights, BofZ);
|
||||
return CalcMeanB(E, interfaces, weights, BofZ, width);
|
||||
} else {
|
||||
if (E < energies.front())
|
||||
return CalcMeanB(energies.front(), interfaces, weights, BofZ);
|
||||
return CalcMeanB(energies.front(), interfaces, weights, BofZ, width);
|
||||
if (E > energies.back())
|
||||
return CalcMeanB(energies.back(), interfaces, weights, BofZ);
|
||||
return CalcMeanB(energies.back(), interfaces, weights, BofZ, width);
|
||||
|
||||
energyIter = find_if(energies.begin(), energies.end(), bind2nd( greater<double>(), E));
|
||||
// cout << *(energyIter - 1) << " " << *(energyIter) << endl;
|
||||
@ -312,22 +319,32 @@ double TMeanFieldsForScBilayer::operator()(double E, const vector<double> &par_v
|
||||
double E1(*(energyIter - 1));
|
||||
double E2(*(energyIter));
|
||||
|
||||
double B1(CalcMeanB(E1, interfaces, weights, BofZ));
|
||||
double B2(CalcMeanB(E2, interfaces, weights, BofZ));
|
||||
double B1(CalcMeanB(E1, interfaces, weights, BofZ, width));
|
||||
double B2(CalcMeanB(E2, interfaces, weights, BofZ, width));
|
||||
|
||||
return B1 + (B2-B1)/(E2-E1)*(E-E1);
|
||||
}
|
||||
}
|
||||
|
||||
double TMeanFieldsForScBilayer::CalcMeanB (double E, const vector<double>& interfaces, const vector<double>& weights, const TLondon1D_2L& BofZ) const {
|
||||
//calcData->UseHighResolution(E);
|
||||
double TMeanFieldsForScBilayer::CalcMeanB (double E, const vector<double>& interfaces, const vector<double>& weights, const TLondon1D_2L& BofZ, double width=0.0) const {
|
||||
//fImpProfile->UseHighResolution(E);
|
||||
//fImpProfile->ConvolveGss(width, E);
|
||||
//fImpProfile->SetOriginal();
|
||||
fImpProfile->WeightLayers(E, interfaces, weights);
|
||||
fImpProfile->ConvolveGss(width, E);
|
||||
fImpProfile->Normalize(E);
|
||||
|
||||
vector<double> z(fImpProfile->DataZ(E));
|
||||
vector<double> nz(fImpProfile->DataNZ(E));
|
||||
double dz(fImpProfile->DataDZ(E));
|
||||
|
||||
if (E==20.0){
|
||||
ofstream of("Implantation-profile-normal.dat");
|
||||
for (unsigned int i(0); i<z.size(); i++) {
|
||||
of << z[i] << " " << nz[i] << endl;
|
||||
}
|
||||
of.close();
|
||||
}
|
||||
// calculate mean field
|
||||
|
||||
double meanB(0.);
|
||||
|
@ -85,7 +85,7 @@ public:
|
||||
virtual Bool_t GlobalPartIsValid() const { return true; }
|
||||
|
||||
double operator()(double, const vector<double>&) const;
|
||||
double CalcMeanB (double, const vector<double>&, const vector<double>&, const TLondon1D_2L&) const;
|
||||
double CalcMeanB (double, const vector<double>&, const vector<double>&, const TLondon1D_2L&, double) const;
|
||||
|
||||
private:
|
||||
TTrimSPData *fImpProfile;
|
||||
|
@ -1,103 +0,0 @@
|
||||
sample XYZ
|
||||
###############################################################
|
||||
FITPARAMETER
|
||||
# No Name Value Step Pos_Error Boundaries
|
||||
1 NormUp 4500 5 none 0 none
|
||||
2 BgUp 200 1 none 0 none
|
||||
3 PhaseUp 15 1 none
|
||||
|
||||
4 NormDown 4500 5 none 0 none
|
||||
5 BgDown 200 1 none 0 none
|
||||
6 PhaseDown 195 1 none
|
||||
|
||||
7 NormRight 600 5 none 0 none
|
||||
8 BgRight 40 1 none 0 none
|
||||
9 PhaseRight 285 1 none
|
||||
|
||||
10 AsymSig1 0.17 0.01 none 0 0.33
|
||||
11 RateSig1 2.5 0.1 none 0 none
|
||||
12 FieldSig1 100 1 none
|
||||
|
||||
13 AsymSig2 0.02 0.01 none 0 0.33
|
||||
14 RateSig2 0.5 0.1 none
|
||||
15 FieldSig2 150 1 none
|
||||
|
||||
###############################################################
|
||||
THEORY
|
||||
asymmetry 10
|
||||
simplExpo 11 (rate)
|
||||
TFieldCos map1 fun1 (phase frequency)
|
||||
+
|
||||
asymmetry 13
|
||||
simpleGss 14 (rate)
|
||||
TFieldCos map1 fun2 (phase frequency)
|
||||
|
||||
###############################################################
|
||||
FUNCTIONS
|
||||
fun1 = gamma_mu * par12
|
||||
fun2 = gamma_mu * par15
|
||||
|
||||
###############################################################
|
||||
RUN data/deltat_pta_gps_3110 PIM3 PSI PSI-BIN (name beamline institute data-file-format)
|
||||
fittype 0 (single histogram fit)
|
||||
norm 1
|
||||
backgr.fit 2
|
||||
lifetimecorrection
|
||||
map 3 0 0 0 0 0 0 0 0 0
|
||||
forward 3
|
||||
data 1 8000
|
||||
t0 1
|
||||
fit 0 4.9
|
||||
packing 20
|
||||
|
||||
RUN data/deltat_pta_gps_3110 PIM3 PSI PSI-BIN (name beamline institute data-file-format)
|
||||
fittype 0 (single histogram fit)
|
||||
norm 4
|
||||
backgr.fit 5
|
||||
lifetimecorrection
|
||||
map 6 0 0 0 0 0 0 0 0 0
|
||||
forward 4
|
||||
data 1 7999
|
||||
t0 1
|
||||
fit 0 4.9
|
||||
packing 20
|
||||
|
||||
RUN data/deltat_pta_gps_3110 PIM3 PSI PSI-BIN (name beamline institute data-file-format)
|
||||
fittype 0 (single histogram fit)
|
||||
norm 7
|
||||
backgr.fit 8
|
||||
#lifetimecorrection
|
||||
map 9 0 0 0 0 0 0 0 0 0
|
||||
forward 5
|
||||
data 1 8003
|
||||
t0 1
|
||||
fit 0 4.9
|
||||
packing 20
|
||||
|
||||
###############################################################
|
||||
COMMANDS
|
||||
MINIMIZE
|
||||
MINOS
|
||||
SAVE
|
||||
|
||||
###############################################################
|
||||
FOURIER
|
||||
units Gauss # units either 'Gauss', 'MHz', or 'Mc/s'
|
||||
fourier_power 10
|
||||
apodization WEAK # NONE, WEAK, MEDIUM, STRONG
|
||||
plot POWER # REAL, IMAG, REAL_AND_IMAG, POWER, PHASE
|
||||
phase par3
|
||||
range 0.0 600.0
|
||||
|
||||
###############################################################
|
||||
PLOT 0 (single histo plot)
|
||||
runs 1 2
|
||||
range 0 4 -0.2 0.2
|
||||
|
||||
PLOT 0 (single histo plot)
|
||||
runs 3
|
||||
use_fit_ranges
|
||||
|
||||
###############################################################
|
||||
STATISTIC --- 2011-07-09 10:58:44
|
||||
chisq = 1348.1764586409397, NDF = 1146, chisq/NDF = 1.1764192483777833
|
Binary file not shown.
@ -1,26 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<nonlocal xmlns="http://nemu.web.psi.ch/musrfit/nonlocal">
|
||||
<comment>
|
||||
$Id: nonlocal_startup.xml 4047 2009-07-02 13:36:18Z nemu $
|
||||
</comment>
|
||||
<nonlocal_par>
|
||||
<fourier_points>262144</fourier_points>
|
||||
</nonlocal_par>
|
||||
<trim_sp_part>
|
||||
<data_path>profiles/Sn_E</data_path>
|
||||
<energy_list>
|
||||
<energy>1000</energy>
|
||||
<energy>2000</energy>
|
||||
<energy>4000</energy>
|
||||
<energy>6000</energy>
|
||||
<energy>8000</energy>
|
||||
<energy>10000</energy>
|
||||
<energy>12000</energy>
|
||||
<energy>14100</energy>
|
||||
<energy>18000</energy>
|
||||
<energy>22000</energy>
|
||||
<energy>25000</energy>
|
||||
<energy>27300</energy>
|
||||
</energy_list>
|
||||
</trim_sp_part>
|
||||
</nonlocal>
|
@ -1,63 +0,0 @@
|
||||
DEPTH PARTICLES
|
||||
4. 1094
|
||||
12. 2457
|
||||
20. 3130
|
||||
28. 3821
|
||||
36. 4153
|
||||
44. 4406
|
||||
52. 4581
|
||||
60. 4679
|
||||
68. 4829
|
||||
76. 4832
|
||||
84. 4636
|
||||
92. 4435
|
||||
100. 4199
|
||||
108. 4001
|
||||
116. 3697
|
||||
124. 3299
|
||||
132. 3075
|
||||
140. 2601
|
||||
148. 2388
|
||||
156. 2053
|
||||
164. 1802
|
||||
172. 1471
|
||||
180. 1142
|
||||
188. 936
|
||||
196. 747
|
||||
204. 590
|
||||
212. 463
|
||||
220. 305
|
||||
228. 233
|
||||
236. 169
|
||||
244. 148
|
||||
252. 85
|
||||
260. 63
|
||||
268. 33
|
||||
276. 21
|
||||
284. 12
|
||||
292. 5
|
||||
300. 4
|
||||
308. 5
|
||||
316. 3
|
||||
324. 1
|
||||
332. 0
|
||||
340. 0
|
||||
348. 1
|
||||
356. 0
|
||||
364. 0
|
||||
372. 0
|
||||
380. 0
|
||||
388. 0
|
||||
396. 0
|
||||
404. 0
|
||||
412. 0
|
||||
420. 0
|
||||
428. 0
|
||||
436. 0
|
||||
444. 0
|
||||
452. 0
|
||||
460. 0
|
||||
468. 0
|
||||
476. 0
|
||||
484. 0
|
||||
492. 0
|
@ -1,93 +0,0 @@
|
||||
DEPTH PARTICLES
|
||||
6. 57
|
||||
18. 167
|
||||
30. 222
|
||||
42. 265
|
||||
54. 274
|
||||
66. 318
|
||||
78. 345
|
||||
90. 379
|
||||
102. 414
|
||||
114. 443
|
||||
126. 476
|
||||
138. 528
|
||||
150. 552
|
||||
162. 654
|
||||
174. 623
|
||||
186. 669
|
||||
198. 690
|
||||
210. 764
|
||||
222. 793
|
||||
234. 869
|
||||
246. 904
|
||||
258. 905
|
||||
270. 1004
|
||||
282. 1098
|
||||
294. 1160
|
||||
306. 1120
|
||||
318. 1282
|
||||
330. 1332
|
||||
342. 1428
|
||||
354. 1463
|
||||
366. 1616
|
||||
378. 1635
|
||||
390. 1719
|
||||
402. 1732
|
||||
414. 1834
|
||||
426. 2012
|
||||
438. 1995
|
||||
450. 2175
|
||||
462. 2214
|
||||
474. 2326
|
||||
486. 2315
|
||||
498. 2557
|
||||
510. 2548
|
||||
522. 2589
|
||||
534. 2651
|
||||
546. 2584
|
||||
558. 2765
|
||||
570. 2755
|
||||
582. 2730
|
||||
594. 2655
|
||||
606. 2727
|
||||
618. 2625
|
||||
630. 2560
|
||||
642. 2574
|
||||
654. 2431
|
||||
666. 2228
|
||||
678. 2083
|
||||
690. 2034
|
||||
702. 1793
|
||||
714. 1546
|
||||
726. 1385
|
||||
738. 1188
|
||||
750. 986
|
||||
762. 833
|
||||
774. 639
|
||||
786. 491
|
||||
798. 330
|
||||
810. 232
|
||||
822. 159
|
||||
834. 93
|
||||
846. 43
|
||||
858. 27
|
||||
870. 12
|
||||
882. 6
|
||||
894. 2
|
||||
906. 1
|
||||
918. 2
|
||||
930. 0
|
||||
942. 0
|
||||
954. 0
|
||||
966. 0
|
||||
978. 0
|
||||
990. 0
|
||||
1002. 0
|
||||
1014. 0
|
||||
1026. 0
|
||||
1038. 0
|
||||
1050. 0
|
||||
1062. 0
|
||||
1074. 0
|
||||
1086. 0
|
||||
1098. 0
|
@ -1,101 +0,0 @@
|
||||
DEPTH PARTICLES
|
||||
6. 52
|
||||
18. 97
|
||||
30. 133
|
||||
42. 181
|
||||
54. 215
|
||||
66. 233
|
||||
78. 226
|
||||
90. 286
|
||||
102. 301
|
||||
114. 305
|
||||
126. 331
|
||||
138. 364
|
||||
150. 414
|
||||
162. 383
|
||||
174. 475
|
||||
186. 475
|
||||
198. 493
|
||||
210. 477
|
||||
222. 534
|
||||
234. 498
|
||||
246. 660
|
||||
258. 588
|
||||
270. 631
|
||||
282. 699
|
||||
294. 800
|
||||
306. 767
|
||||
318. 812
|
||||
330. 839
|
||||
342. 889
|
||||
354. 977
|
||||
366. 1061
|
||||
378. 1140
|
||||
390. 1119
|
||||
402. 1161
|
||||
414. 1242
|
||||
426. 1248
|
||||
438. 1356
|
||||
450. 1513
|
||||
462. 1514
|
||||
474. 1589
|
||||
486. 1630
|
||||
498. 1683
|
||||
510. 1830
|
||||
522. 1872
|
||||
534. 1990
|
||||
546. 1964
|
||||
558. 2015
|
||||
570. 2069
|
||||
582. 2317
|
||||
594. 2243
|
||||
606. 2253
|
||||
618. 2361
|
||||
630. 2432
|
||||
642. 2459
|
||||
654. 2599
|
||||
666. 2451
|
||||
678. 2501
|
||||
690. 2520
|
||||
702. 2534
|
||||
714. 2492
|
||||
726. 2467
|
||||
738. 2348
|
||||
750. 2257
|
||||
762. 2211
|
||||
774. 2192
|
||||
786. 1971
|
||||
798. 1825
|
||||
810. 1694
|
||||
822. 1509
|
||||
834. 1333
|
||||
846. 1173
|
||||
858. 948
|
||||
870. 795
|
||||
882. 683
|
||||
894. 502
|
||||
906. 382
|
||||
918. 273
|
||||
930. 148
|
||||
942. 109
|
||||
954. 92
|
||||
966. 39
|
||||
978. 22
|
||||
990. 15
|
||||
1002. 1
|
||||
1014. 2
|
||||
1026. 1
|
||||
1038. 0
|
||||
1050. 0
|
||||
1062. 0
|
||||
1074. 0
|
||||
1086. 0
|
||||
1098. 0
|
||||
1110. 0
|
||||
1122. 0
|
||||
1134. 0
|
||||
1146. 0
|
||||
1158. 0
|
||||
1170. 0
|
||||
1182. 0
|
||||
1194. 0
|
@ -1,101 +0,0 @@
|
||||
DEPTH PARTICLES
|
||||
6. 40
|
||||
18. 80
|
||||
30. 105
|
||||
42. 113
|
||||
54. 136
|
||||
66. 138
|
||||
78. 166
|
||||
90. 202
|
||||
102. 181
|
||||
114. 215
|
||||
126. 255
|
||||
138. 257
|
||||
150. 271
|
||||
162. 254
|
||||
174. 296
|
||||
186. 324
|
||||
198. 343
|
||||
210. 337
|
||||
222. 348
|
||||
234. 397
|
||||
246. 426
|
||||
258. 407
|
||||
270. 456
|
||||
282. 457
|
||||
294. 499
|
||||
306. 509
|
||||
318. 587
|
||||
330. 632
|
||||
342. 637
|
||||
354. 688
|
||||
366. 689
|
||||
378. 679
|
||||
390. 795
|
||||
402. 755
|
||||
414. 833
|
||||
426. 891
|
||||
438. 888
|
||||
450. 897
|
||||
462. 968
|
||||
474. 1074
|
||||
486. 1127
|
||||
498. 1148
|
||||
510. 1162
|
||||
522. 1296
|
||||
534. 1343
|
||||
546. 1396
|
||||
558. 1441
|
||||
570. 1563
|
||||
582. 1524
|
||||
594. 1591
|
||||
606. 1697
|
||||
618. 1684
|
||||
630. 1795
|
||||
642. 1841
|
||||
654. 1893
|
||||
666. 1934
|
||||
678. 1945
|
||||
690. 2051
|
||||
702. 2154
|
||||
714. 2230
|
||||
726. 2123
|
||||
738. 2273
|
||||
750. 2294
|
||||
762. 2410
|
||||
774. 2435
|
||||
786. 2286
|
||||
798. 2380
|
||||
810. 2337
|
||||
822. 2286
|
||||
834. 2222
|
||||
846. 2254
|
||||
858. 2259
|
||||
870. 2137
|
||||
882. 2049
|
||||
894. 1976
|
||||
906. 1747
|
||||
918. 1577
|
||||
930. 1506
|
||||
942. 1350
|
||||
954. 1194
|
||||
966. 1042
|
||||
978. 904
|
||||
990. 689
|
||||
1002. 561
|
||||
1014. 447
|
||||
1026. 363
|
||||
1038. 254
|
||||
1050. 170
|
||||
1062. 128
|
||||
1074. 70
|
||||
1086. 51
|
||||
1098. 23
|
||||
1110. 11
|
||||
1122. 8
|
||||
1134. 6
|
||||
1146. 1
|
||||
1158. 4
|
||||
1170. 0
|
||||
1182. 0
|
||||
1194. 0
|
@ -1,101 +0,0 @@
|
||||
DEPTH PARTICLES
|
||||
8. 25
|
||||
24. 83
|
||||
40. 89
|
||||
56. 105
|
||||
72. 152
|
||||
88. 143
|
||||
104. 160
|
||||
120. 173
|
||||
136. 198
|
||||
152. 196
|
||||
168. 200
|
||||
184. 213
|
||||
200. 251
|
||||
216. 255
|
||||
232. 276
|
||||
248. 301
|
||||
264. 305
|
||||
280. 328
|
||||
296. 360
|
||||
312. 374
|
||||
328. 406
|
||||
344. 422
|
||||
360. 480
|
||||
376. 413
|
||||
392. 504
|
||||
408. 550
|
||||
424. 538
|
||||
440. 614
|
||||
456. 626
|
||||
472. 699
|
||||
488. 685
|
||||
504. 772
|
||||
520. 818
|
||||
536. 774
|
||||
552. 877
|
||||
568. 914
|
||||
584. 984
|
||||
600. 1034
|
||||
616. 1093
|
||||
632. 1236
|
||||
648. 1273
|
||||
664. 1336
|
||||
680. 1405
|
||||
696. 1489
|
||||
712. 1494
|
||||
728. 1602
|
||||
744. 1642
|
||||
760. 1779
|
||||
776. 1900
|
||||
792. 1977
|
||||
808. 2080
|
||||
824. 2014
|
||||
840. 2215
|
||||
856. 2311
|
||||
872. 2381
|
||||
888. 2431
|
||||
904. 2550
|
||||
920. 2636
|
||||
936. 2698
|
||||
952. 2786
|
||||
968. 2794
|
||||
984. 2817
|
||||
1000. 2853
|
||||
1016. 2858
|
||||
1032. 2850
|
||||
1048. 2742
|
||||
1064. 2656
|
||||
1080. 2496
|
||||
1096. 2384
|
||||
1112. 2286
|
||||
1128. 2091
|
||||
1144. 1935
|
||||
1160. 1762
|
||||
1176. 1471
|
||||
1192. 1256
|
||||
1208. 1045
|
||||
1224. 819
|
||||
1240. 649
|
||||
1256. 459
|
||||
1272. 308
|
||||
1288. 207
|
||||
1304. 122
|
||||
1320. 71
|
||||
1336. 40
|
||||
1352. 11
|
||||
1368. 3
|
||||
1384. 5
|
||||
1400. 1
|
||||
1416. 1
|
||||
1432. 0
|
||||
1448. 0
|
||||
1464. 0
|
||||
1480. 0
|
||||
1496. 0
|
||||
1512. 0
|
||||
1528. 0
|
||||
1544. 0
|
||||
1560. 0
|
||||
1576. 0
|
||||
1592. 0
|
@ -1,73 +0,0 @@
|
||||
DEPTH PARTICLES
|
||||
4. 324
|
||||
12. 859
|
||||
20. 1200
|
||||
28. 1491
|
||||
36. 1650
|
||||
44. 1963
|
||||
52. 2150
|
||||
60. 2361
|
||||
68. 2708
|
||||
76. 2611
|
||||
84. 2857
|
||||
92. 3074
|
||||
100. 3249
|
||||
108. 3281
|
||||
116. 3338
|
||||
124. 3453
|
||||
132. 3555
|
||||
140. 3550
|
||||
148. 3586
|
||||
156. 3608
|
||||
164. 3611
|
||||
172. 3440
|
||||
180. 3226
|
||||
188. 3115
|
||||
196. 2998
|
||||
204. 2780
|
||||
212. 2571
|
||||
220. 2276
|
||||
228. 1999
|
||||
236. 1770
|
||||
244. 1530
|
||||
252. 1309
|
||||
260. 1127
|
||||
268. 902
|
||||
276. 723
|
||||
284. 575
|
||||
292. 448
|
||||
300. 311
|
||||
308. 273
|
||||
316. 174
|
||||
324. 124
|
||||
332. 85
|
||||
340. 59
|
||||
348. 41
|
||||
356. 23
|
||||
364. 16
|
||||
372. 9
|
||||
380. 5
|
||||
388. 5
|
||||
396. 2
|
||||
404. 0
|
||||
412. 0
|
||||
420. 0
|
||||
428. 0
|
||||
436. 0
|
||||
444. 0
|
||||
452. 0
|
||||
460. 0
|
||||
468. 0
|
||||
476. 0
|
||||
484. 0
|
||||
492. 0
|
||||
500. 0
|
||||
508. 0
|
||||
516. 0
|
||||
524. 0
|
||||
532. 0
|
||||
540. 0
|
||||
548. 0
|
||||
556. 0
|
||||
564. 0
|
||||
572. 0
|
@ -1,97 +0,0 @@
|
||||
DEPTH PARTICLES
|
||||
10. 33
|
||||
30. 57
|
||||
50. 88
|
||||
70. 99
|
||||
90. 93
|
||||
110. 122
|
||||
130. 130
|
||||
150. 145
|
||||
170. 160
|
||||
190. 208
|
||||
210. 224
|
||||
230. 212
|
||||
250. 214
|
||||
270. 232
|
||||
290. 234
|
||||
310. 268
|
||||
330. 271
|
||||
350. 311
|
||||
370. 345
|
||||
390. 346
|
||||
410. 355
|
||||
430. 417
|
||||
450. 405
|
||||
470. 449
|
||||
490. 428
|
||||
510. 508
|
||||
530. 550
|
||||
550. 560
|
||||
570. 581
|
||||
590. 649
|
||||
610. 646
|
||||
630. 707
|
||||
650. 751
|
||||
670. 810
|
||||
690. 836
|
||||
710. 964
|
||||
730. 1051
|
||||
750. 1063
|
||||
770. 1135
|
||||
790. 1193
|
||||
810. 1294
|
||||
830. 1334
|
||||
850. 1464
|
||||
870. 1487
|
||||
890. 1624
|
||||
910. 1686
|
||||
930. 1733
|
||||
950. 1895
|
||||
970. 1891
|
||||
990. 2150
|
||||
1010. 2192
|
||||
1030. 2369
|
||||
1050. 2459
|
||||
1070. 2599
|
||||
1090. 2713
|
||||
1110. 2733
|
||||
1130. 2907
|
||||
1150. 2929
|
||||
1170. 2986
|
||||
1190. 3080
|
||||
1210. 3084
|
||||
1230. 3088
|
||||
1250. 3159
|
||||
1270. 3197
|
||||
1290. 3052
|
||||
1310. 2920
|
||||
1330. 2749
|
||||
1350. 2600
|
||||
1370. 2389
|
||||
1390. 2232
|
||||
1410. 1976
|
||||
1430. 1651
|
||||
1450. 1285
|
||||
1470. 1046
|
||||
1490. 827
|
||||
1510. 607
|
||||
1530. 341
|
||||
1550. 213
|
||||
1570. 120
|
||||
1590. 47
|
||||
1610. 22
|
||||
1630. 6
|
||||
1650. 1
|
||||
1670. 1
|
||||
1690. 0
|
||||
1710. 0
|
||||
1730. 0
|
||||
1750. 0
|
||||
1770. 0
|
||||
1790. 0
|
||||
1810. 0
|
||||
1830. 0
|
||||
1850. 0
|
||||
1870. 0
|
||||
1890. 0
|
||||
1910. 0
|
@ -1,101 +0,0 @@
|
||||
DEPTH PARTICLES
|
||||
10. 23
|
||||
30. 45
|
||||
50. 70
|
||||
70. 64
|
||||
90. 74
|
||||
110. 93
|
||||
130. 103
|
||||
150. 113
|
||||
170. 102
|
||||
190. 122
|
||||
210. 127
|
||||
230. 135
|
||||
250. 145
|
||||
270. 159
|
||||
290. 155
|
||||
310. 188
|
||||
330. 190
|
||||
350. 203
|
||||
370. 187
|
||||
390. 231
|
||||
410. 251
|
||||
430. 259
|
||||
450. 286
|
||||
470. 280
|
||||
490. 321
|
||||
510. 328
|
||||
530. 343
|
||||
550. 336
|
||||
570. 366
|
||||
590. 407
|
||||
610. 435
|
||||
630. 417
|
||||
650. 468
|
||||
670. 498
|
||||
690. 525
|
||||
710. 546
|
||||
730. 601
|
||||
750. 629
|
||||
770. 629
|
||||
790. 749
|
||||
810. 742
|
||||
830. 866
|
||||
850. 810
|
||||
870. 895
|
||||
890. 998
|
||||
910. 1028
|
||||
930. 1044
|
||||
950. 1090
|
||||
970. 1212
|
||||
990. 1270
|
||||
1010. 1374
|
||||
1030. 1369
|
||||
1050. 1544
|
||||
1070. 1555
|
||||
1090. 1671
|
||||
1110. 1709
|
||||
1130. 1730
|
||||
1150. 1880
|
||||
1170. 2004
|
||||
1190. 2111
|
||||
1210. 2147
|
||||
1230. 2294
|
||||
1250. 2437
|
||||
1270. 2431
|
||||
1290. 2612
|
||||
1310. 2564
|
||||
1330. 2749
|
||||
1350. 2725
|
||||
1370. 2847
|
||||
1390. 2970
|
||||
1410. 2896
|
||||
1430. 2977
|
||||
1450. 2943
|
||||
1470. 2890
|
||||
1490. 2795
|
||||
1510. 2720
|
||||
1530. 2552
|
||||
1550. 2427
|
||||
1570. 2148
|
||||
1590. 2062
|
||||
1610. 1775
|
||||
1630. 1536
|
||||
1650. 1302
|
||||
1670. 994
|
||||
1690. 792
|
||||
1710. 558
|
||||
1730. 401
|
||||
1750. 269
|
||||
1770. 182
|
||||
1790. 78
|
||||
1810. 30
|
||||
1830. 18
|
||||
1850. 3
|
||||
1870. 1
|
||||
1890. 1
|
||||
1910. 0
|
||||
1930. 0
|
||||
1950. 0
|
||||
1970. 0
|
||||
1990. 0
|
@ -1,80 +0,0 @@
|
||||
DEPTH PARTICLES
|
||||
15. 44
|
||||
45. 75
|
||||
75. 88
|
||||
105. 112
|
||||
135. 128
|
||||
165. 142
|
||||
195. 147
|
||||
225. 173
|
||||
255. 176
|
||||
285. 187
|
||||
315. 198
|
||||
345. 243
|
||||
375. 224
|
||||
405. 241
|
||||
435. 312
|
||||
465. 342
|
||||
495. 328
|
||||
525. 375
|
||||
555. 381
|
||||
585. 433
|
||||
615. 411
|
||||
645. 493
|
||||
675. 542
|
||||
705. 592
|
||||
735. 615
|
||||
765. 705
|
||||
795. 713
|
||||
825. 818
|
||||
855. 867
|
||||
885. 940
|
||||
915. 1045
|
||||
945. 1163
|
||||
975. 1282
|
||||
1005. 1325
|
||||
1035. 1439
|
||||
1065. 1537
|
||||
1095. 1729
|
||||
1125. 1870
|
||||
1155. 2026
|
||||
1185. 2086
|
||||
1215. 2254
|
||||
1245. 2420
|
||||
1275. 2727
|
||||
1305. 2742
|
||||
1335. 2994
|
||||
1365. 3144
|
||||
1395. 3381
|
||||
1425. 3666
|
||||
1455. 3717
|
||||
1485. 3911
|
||||
1515. 4053
|
||||
1545. 4093
|
||||
1575. 4045
|
||||
1605. 4095
|
||||
1635. 4120
|
||||
1665. 3817
|
||||
1695. 3589
|
||||
1725. 3286
|
||||
1755. 2787
|
||||
1785. 2240
|
||||
1815. 1803
|
||||
1845. 1254
|
||||
1875. 878
|
||||
1905. 473
|
||||
1935. 231
|
||||
1965. 97
|
||||
1995. 30
|
||||
2025. 4
|
||||
2055. 0
|
||||
2085. 1
|
||||
2115. 0
|
||||
2145. 0
|
||||
2175. 0
|
||||
2205. 0
|
||||
2235. 0
|
||||
2265. 0
|
||||
2295. 0
|
||||
2325. 0
|
||||
2355. 0
|
@ -1,91 +0,0 @@
|
||||
DEPTH PARTICLES
|
||||
4. 103
|
||||
12. 348
|
||||
20. 466
|
||||
28. 581
|
||||
36. 688
|
||||
44. 760
|
||||
52. 826
|
||||
60. 891
|
||||
68. 1036
|
||||
76. 1031
|
||||
84. 1096
|
||||
92. 1181
|
||||
100. 1268
|
||||
108. 1317
|
||||
116. 1343
|
||||
124. 1546
|
||||
132. 1633
|
||||
140. 1662
|
||||
148. 1781
|
||||
156. 1903
|
||||
164. 1906
|
||||
172. 2032
|
||||
180. 2162
|
||||
188. 2259
|
||||
196. 2318
|
||||
204. 2289
|
||||
212. 2437
|
||||
220. 2412
|
||||
228. 2514
|
||||
236. 2634
|
||||
244. 2622
|
||||
252. 2636
|
||||
260. 2749
|
||||
268. 2704
|
||||
276. 2724
|
||||
284. 2705
|
||||
292. 2654
|
||||
300. 2480
|
||||
308. 2455
|
||||
316. 2355
|
||||
324. 2322
|
||||
332. 2299
|
||||
340. 2118
|
||||
348. 1917
|
||||
356. 1792
|
||||
364. 1596
|
||||
372. 1377
|
||||
380. 1284
|
||||
388. 1118
|
||||
396. 931
|
||||
404. 827
|
||||
412. 696
|
||||
420. 597
|
||||
428. 418
|
||||
436. 348
|
||||
444. 254
|
||||
452. 209
|
||||
460. 154
|
||||
468. 110
|
||||
476. 72
|
||||
484. 54
|
||||
492. 27
|
||||
500. 20
|
||||
508. 14
|
||||
516. 8
|
||||
524. 3
|
||||
532. 3
|
||||
540. 1
|
||||
548. 1
|
||||
556. 0
|
||||
564. 0
|
||||
572. 0
|
||||
580. 0
|
||||
588. 0
|
||||
596. 0
|
||||
604. 0
|
||||
612. 0
|
||||
620. 0
|
||||
628. 0
|
||||
636. 0
|
||||
644. 0
|
||||
652. 0
|
||||
660. 0
|
||||
668. 0
|
||||
676. 0
|
||||
684. 0
|
||||
692. 0
|
||||
700. 0
|
||||
708. 0
|
||||
716. 0
|
@ -1,101 +0,0 @@
|
||||
DEPTH PARTICLES
|
||||
4. 62
|
||||
12. 158
|
||||
20. 246
|
||||
28. 302
|
||||
36. 338
|
||||
44. 405
|
||||
52. 482
|
||||
60. 467
|
||||
68. 508
|
||||
76. 582
|
||||
84. 576
|
||||
92. 620
|
||||
100. 679
|
||||
108. 688
|
||||
116. 777
|
||||
124. 830
|
||||
132. 836
|
||||
140. 911
|
||||
148. 914
|
||||
156. 1003
|
||||
164. 957
|
||||
172. 1083
|
||||
180. 1151
|
||||
188. 1203
|
||||
196. 1226
|
||||
204. 1337
|
||||
212. 1381
|
||||
220. 1365
|
||||
228. 1516
|
||||
236. 1519
|
||||
244. 1640
|
||||
252. 1648
|
||||
260. 1644
|
||||
268. 1718
|
||||
276. 1836
|
||||
284. 1865
|
||||
292. 1933
|
||||
300. 1917
|
||||
308. 1998
|
||||
316. 2027
|
||||
324. 2095
|
||||
332. 2134
|
||||
340. 2208
|
||||
348. 2268
|
||||
356. 2278
|
||||
364. 2222
|
||||
372. 2295
|
||||
380. 2291
|
||||
388. 2216
|
||||
396. 2276
|
||||
404. 2218
|
||||
412. 2173
|
||||
420. 2101
|
||||
428. 2009
|
||||
436. 1944
|
||||
444. 1877
|
||||
452. 1813
|
||||
460. 1789
|
||||
468. 1609
|
||||
476. 1506
|
||||
484. 1423
|
||||
492. 1225
|
||||
500. 1181
|
||||
508. 1034
|
||||
516. 900
|
||||
524. 797
|
||||
532. 629
|
||||
540. 538
|
||||
548. 457
|
||||
556. 351
|
||||
564. 270
|
||||
572. 229
|
||||
580. 178
|
||||
588. 133
|
||||
596. 81
|
||||
604. 67
|
||||
612. 39
|
||||
620. 23
|
||||
628. 18
|
||||
636. 14
|
||||
644. 4
|
||||
652. 5
|
||||
660. 3
|
||||
668. 0
|
||||
676. 0
|
||||
684. 0
|
||||
692. 0
|
||||
700. 0
|
||||
708. 0
|
||||
716. 0
|
||||
724. 0
|
||||
732. 0
|
||||
740. 0
|
||||
748. 0
|
||||
756. 0
|
||||
764. 0
|
||||
772. 0
|
||||
780. 0
|
||||
788. 0
|
||||
796. 0
|
@ -1,99 +0,0 @@
|
||||
DEPTH PARTICLES
|
||||
5. 74
|
||||
15. 177
|
||||
25. 219
|
||||
35. 270
|
||||
45. 311
|
||||
55. 351
|
||||
65. 370
|
||||
75. 376
|
||||
85. 448
|
||||
95. 513
|
||||
105. 517
|
||||
115. 542
|
||||
125. 622
|
||||
135. 645
|
||||
145. 647
|
||||
155. 732
|
||||
165. 772
|
||||
175. 789
|
||||
185. 890
|
||||
195. 959
|
||||
205. 946
|
||||
215. 1043
|
||||
225. 1033
|
||||
235. 1133
|
||||
245. 1185
|
||||
255. 1278
|
||||
265. 1369
|
||||
275. 1444
|
||||
285. 1392
|
||||
295. 1505
|
||||
305. 1531
|
||||
315. 1610
|
||||
325. 1712
|
||||
335. 1751
|
||||
345. 1853
|
||||
355. 1944
|
||||
365. 1885
|
||||
375. 2097
|
||||
385. 2147
|
||||
395. 2213
|
||||
405. 2251
|
||||
415. 2276
|
||||
425. 2347
|
||||
435. 2458
|
||||
445. 2404
|
||||
455. 2500
|
||||
465. 2468
|
||||
475. 2546
|
||||
485. 2547
|
||||
495. 2451
|
||||
505. 2513
|
||||
515. 2444
|
||||
525. 2361
|
||||
535. 2337
|
||||
545. 2193
|
||||
555. 2145
|
||||
565. 1989
|
||||
575. 1862
|
||||
585. 1845
|
||||
595. 1594
|
||||
605. 1368
|
||||
615. 1289
|
||||
625. 1097
|
||||
635. 885
|
||||
645. 782
|
||||
655. 618
|
||||
665. 540
|
||||
675. 397
|
||||
685. 295
|
||||
695. 196
|
||||
705. 140
|
||||
715. 111
|
||||
725. 59
|
||||
735. 22
|
||||
745. 21
|
||||
755. 9
|
||||
765. 5
|
||||
775. 1
|
||||
785. 1
|
||||
795. 2
|
||||
805. 1
|
||||
815. 0
|
||||
825. 0
|
||||
835. 0
|
||||
845. 0
|
||||
855. 0
|
||||
865. 0
|
||||
875. 0
|
||||
885. 0
|
||||
895. 0
|
||||
905. 0
|
||||
915. 0
|
||||
925. 0
|
||||
935. 0
|
||||
945. 0
|
||||
955. 0
|
||||
965. 0
|
||||
975. 0
|
@ -1,104 +0,0 @@
|
||||
Sn-210042 B=~48(G)/1.50(A), T=3.31(K), Tr=18.02(kV), Sa=-4.70(kV), En=21.97(keV), RAL-RAR=0.09(kV), RAT-RAB=0.15(kV)
|
||||
###############################################################
|
||||
FITPARAMETER
|
||||
# Nr. Name Value Step Pos_Error Boundaries
|
||||
1 one 1 0 none
|
||||
2 zero 0 0 none
|
||||
3 Asy 0.2079 0.0066 none 0 0.33
|
||||
4 energy 22 0 none
|
||||
5 redTemp 0.8683 0 none
|
||||
6 thickness 5000 0 none
|
||||
7 ell 12000 0 none
|
||||
8 xi 94 0 none
|
||||
9 lambdaL 46.0 1.2 none
|
||||
10 Bext 47.11 0 none
|
||||
11 deadLayer 20.730 0.051 none 0 none
|
||||
12 RateSmear 0.327 0.022 none
|
||||
13 N0_L 298.0 1.3 none
|
||||
14 Bkg_L 24.58 0.12 none
|
||||
15 Phase_L 31.2 2.7 none
|
||||
16 Alpha_LR 1.0815 0.0076 none
|
||||
17 Bkg_R 27.56 0.12 none
|
||||
18 RelPhase_R 152.7 1.6 none
|
||||
|
||||
###############################################################
|
||||
THEORY
|
||||
asymmetry 3
|
||||
userFcn libPNL_PippardFitter PNL_PippardFitter 4 5 6 7 8 9 10 fun2 11
|
||||
simpleGss 12 (rate)
|
||||
|
||||
###############################################################
|
||||
FUNCTIONS
|
||||
fun1 = par13 * map1
|
||||
fun2 = par15 + map2
|
||||
|
||||
###############################################################
|
||||
RUN data/lem10_his_0825 MUE4 PSI ROOT-NPP (name beamline institute data-file-format)
|
||||
fittype 0 (single histogram fit)
|
||||
norm 13
|
||||
backgr.fit 14
|
||||
lifetimecorrection
|
||||
map 1 2 0 0 0 0 0 0 0 0
|
||||
forward 1
|
||||
data 3289 65000
|
||||
t0 3289
|
||||
fit 0.2 9.2
|
||||
packing 250
|
||||
|
||||
RUN data/lem10_his_0825 MUE4 PSI ROOT-NPP (name beamline institute data-file-format)
|
||||
fittype 0 (single histogram fit)
|
||||
norm fun1
|
||||
backgr.fit 17
|
||||
lifetimecorrection
|
||||
map 16 18 0 0 0 0 0 0 0 0
|
||||
forward 3
|
||||
data 3289 65000
|
||||
t0 3289
|
||||
fit 0.2 9.2
|
||||
packing 250
|
||||
|
||||
###############################################################
|
||||
COMMANDS
|
||||
MINIMIZE
|
||||
HESSE
|
||||
SAVE
|
||||
|
||||
###############################################################
|
||||
PLOT 0 (single histo plot)
|
||||
runs 1 2
|
||||
range 0 9 -0.3 0.3
|
||||
view_packing 500
|
||||
|
||||
###############################################################
|
||||
FOURIER
|
||||
units Gauss # units either 'Gauss', 'MHz', or 'Mc/s'
|
||||
fourier_power 10
|
||||
apodization STRONG # NONE, WEAK, MEDIUM, STRONG
|
||||
plot POWER # REAL, IMAG, REAL_AND_IMAG, POWER, PHASE
|
||||
phase 8.5
|
||||
#range_for_phase_correction 50.0 70.0
|
||||
range 0.0 200.0
|
||||
|
||||
###############################################################
|
||||
STATISTIC --- 2011-02-07 13:00:38
|
||||
chisq = 417.37802304466283, NDF = 358, chisq/NDF = 1.1658603995660972
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -1,70 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<BMW>
|
||||
<comment>
|
||||
BMW_startup.xml
|
||||
Here some external parameters used in conjunction with the BMWlibs are set.
|
||||
There are different sections:
|
||||
* Common parameters which are used for any kind of function
|
||||
* Parameters for low energy uSR data analysis with given B(z)
|
||||
* Parameters for bulk uSR data analysis (currently only four model to calculate field distributions for a triangular vortex lattice)
|
||||
* Parameters for dynamical LF relaxation functions within the BMWlibs (mainly useful for testing purposes)
|
||||
|
||||
Common parameters:
|
||||
- debug : set it to 1 in order to obtain some information what is read from the xml-file
|
||||
- wisdom : sets the path to an FFTW-wisdom file - if there is no valid wisdom at the given path, wisdom handling will be disabled
|
||||
- wisdom_float : sets the path to a float-FFTW-wisdom file - if there is no valid wisdom at the given path, wisdom handling will be disabled
|
||||
(at the moment only used for LF-relaxation functions)
|
||||
- delta_t : time resolution of P(t) in microseconds
|
||||
- delta_B : field resolution of P(B) in Gauss
|
||||
|
||||
LF-relaxation parameters:
|
||||
- delta_t_LF : time resolution of P(t) in microseconds for the Laplace transforms involved in the dynamical LF-relaxation calculations
|
||||
- N_LF : length of the Laplace transforms involved in the dynamical LF-relaxation calculations
|
||||
|
||||
LEM parameters (if the LEM tag is present it is expected that the data_path tag contains a valid path):
|
||||
- data_path, energy_list : Defines path/prefix, energy-labels and energies (keV) of TrimSP-rge-files
|
||||
The expected file-names are then: data_path + energy_label + .rge
|
||||
- N_theory : determines the number of points in "real space" where the theory function B(z) will be calculated (if necessary)
|
||||
|
||||
bulk parameters:
|
||||
- N_VortexGrid : determines the number of points used for the calculation of the vortex lattice field distribution (the grid will be N*N)
|
||||
</comment>
|
||||
<debug>0</debug>
|
||||
<wisdom>none</wisdom>
|
||||
<wisdom_float>none</wisdom_float>
|
||||
<delta_t>0.01</delta_t>
|
||||
<delta_B>0.5</delta_B>
|
||||
<VortexLattice>
|
||||
<N_VortexGrid>512</N_VortexGrid>
|
||||
</VortexLattice>
|
||||
<LFRelaxation>
|
||||
<delta_t_LF>0.00004</delta_t_LF>
|
||||
<N_LF>524288</N_LF>
|
||||
</LFRelaxation>
|
||||
<LEM>
|
||||
<data_path>profiles/TestProfile-</data_path>
|
||||
<N_theory>5000</N_theory>
|
||||
<energy_list>
|
||||
<energy_label>02_0</energy_label>
|
||||
<energy>2.0</energy>
|
||||
<energy_label>05_0</energy_label>
|
||||
<energy>5.0</energy>
|
||||
<energy_label>07_5</energy_label>
|
||||
<energy>7.5</energy>
|
||||
<energy_label>10_0</energy_label>
|
||||
<energy>10.0</energy>
|
||||
<energy_label>12_0</energy_label>
|
||||
<energy>12.0</energy>
|
||||
<energy_label>16_0</energy_label>
|
||||
<energy>16.0</energy>
|
||||
<energy_label>18_0</energy_label>
|
||||
<energy>18.0</energy>
|
||||
<energy_label>20_0</energy_label>
|
||||
<energy>20.0</energy>
|
||||
<energy_label>22_0</energy_label>
|
||||
<energy>22.0</energy>
|
||||
<energy_label>24_0</energy_label>
|
||||
<energy>24.0</energy>
|
||||
</energy_list>
|
||||
</LEM>
|
||||
</BMW>
|
@ -1,256 +0,0 @@
|
||||
TITLE
|
||||
Superconducting thin film in the Meissner state (SIMULATION)
|
||||
|
||||
Abstract
|
||||
Superconducting thin film in the Meissner state (SIMULATION)
|
||||
Thickness: 160 nm
|
||||
Lambda: 300 nm
|
||||
|
||||
LABELS
|
||||
T (K)
|
||||
mu0 H (G)
|
||||
Implantation Energy (keV)
|
||||
Transport (kV)
|
||||
phase (deg)
|
||||
Average Field (G)
|
||||
asymS
|
||||
rateS (#mus^{-1})
|
||||
asymF
|
||||
rateF (#mus^{-1})
|
||||
Norm_L
|
||||
BG_L
|
||||
Norm_R
|
||||
BG_R
|
||||
relasy_R
|
||||
relphase_R (deg)
|
||||
one
|
||||
zero
|
||||
CHISQ
|
||||
NDF
|
||||
CHISQred
|
||||
RUN
|
||||
|
||||
Data dataT dataB dataE dataTr phase field asymS rateS asymF rateF Norm_L BG_L Norm_R BG_R relasy_R relphase_R one zero CHISQ NDF CHISQred RUN
|
||||
\-e
|
||||
dataT = -999, -999, -999,\
|
||||
dataB = 95, 0, 0,\
|
||||
dataE = 2, 0, 0,\
|
||||
dataTr = -999, 0, 0,\
|
||||
phase = 19.9911, 0.548322, 0.547954,\
|
||||
field = 94.3346, 0.04165, 0.0416162,\
|
||||
asymS = 0.209439, 0.00168323, 0.00168092,\
|
||||
rateS = 0.0492202, 0.0106281, 0.0133727,\
|
||||
asymF = 0, 0, 0,\
|
||||
rateF = 0, 0, 0,\
|
||||
Norm_L = 511.948, 0.680274, 0.680392,\
|
||||
BG_L = 40.9481, 0.114178, 0.114157,\
|
||||
Norm_R = 460.477, 0.637507, 0.637296,\
|
||||
BG_R = 35.8433, 0.107165, 0.107198,\
|
||||
relasy_R = 0.981156, 0.0108653, 0.0107525,\
|
||||
relphase_R = 165.07, 0.614994, 0.615488,\
|
||||
one = 1, 0, 0,\
|
||||
zero = 0, 0, 0,\
|
||||
CHISQ = 525.76, 0, 0,\
|
||||
NDF = 496, 0, 0,\
|
||||
CHISQred = 1.06, 0, 0,\
|
||||
10,,, FakeData 10
|
||||
dataT = -999, -999, -999,\
|
||||
dataB = 95, 0, 0,\
|
||||
dataE = 5, 0, 0,\
|
||||
dataTr = -999, 0, 0,\
|
||||
phase = 18.9719, 0.547842, 0.547336,\
|
||||
field = 93.6519, 0.041079, 0.0410703,\
|
||||
asymS = 0.20767, 0.00168415, 0.00168011,\
|
||||
rateS = 0.0459694, 0.0113175, 0.0148194,\
|
||||
asymF = 0, 0, 0,\
|
||||
rateF = 0, 0, 0,\
|
||||
Norm_L = 511.668, 0.679399, 0.681331,\
|
||||
BG_L = 41.0131, 0.114346, 0.114045,\
|
||||
Norm_R = 459.84, 0.637868, 0.637406,\
|
||||
BG_R = 35.9844, 0.107249, 0.107452,\
|
||||
relasy_R = 1.01118, 0.0111212, 0.0109868,\
|
||||
relphase_R = 165.354, 0.610285, 0.610664,\
|
||||
one = 1, 0, 0,\
|
||||
zero = 0, 0, 0,\
|
||||
CHISQ = 474.812, 0, 0,\
|
||||
NDF = 496, 0, 0,\
|
||||
CHISQred = 0.957283, 0, 0,\
|
||||
11,,, 11
|
||||
dataT = -999, -999, -999,\
|
||||
dataB = 95, 0, 0,\
|
||||
dataE = 7.5, 0, 0,\
|
||||
dataTr = -999, 0, 0,\
|
||||
phase = 20.3537, 0.549168, 0.548612,\
|
||||
field = 93.1237, 0.0418215, 0.0418009,\
|
||||
asymS = 0.209176, 0.00168481, 0.00168412,\
|
||||
rateS = 0.0580576, 0.00943369, 0.0110702,\
|
||||
asymF = 0, 0, 0,\
|
||||
rateF = 0, 0, 0,\
|
||||
Norm_L = 512.885, 0.681529, 0.679975,\
|
||||
BG_L = 40.7945, 0.114086, 0.11403,\
|
||||
Norm_R = 461.784, 0.637033, 0.63885,\
|
||||
BG_R = 35.6139, 0.107146, 0.106943,\
|
||||
relasy_R = 0.990985, 0.01094, 0.0108242,\
|
||||
relphase_R = 164.176, 0.613588, 0.612287,\
|
||||
one = 1, 0, 0,\
|
||||
zero = 0, 0, 0,\
|
||||
CHISQ = 478.898, 0, 0,\
|
||||
NDF = 496, 0, 0,\
|
||||
CHISQred = 0.96552, 0, 0,\
|
||||
12,,, 12
|
||||
dataT = -999, -999, -999,\
|
||||
dataB = 95, 0, 0,\
|
||||
dataE = 10, 0, 0,\
|
||||
dataTr = -999, 0, 0,\
|
||||
phase = 20.3558, 0.548801, 0.549056,\
|
||||
field = 92.7144, 0.0410011, 0.0410277,\
|
||||
asymS = 0.208817, 0.00166938, 0.00167176,\
|
||||
rateS = 0.0368413, 0.013199, 0.0214315,\
|
||||
asymF = 0, 0, 0,\
|
||||
rateF = 0, 0, 0,\
|
||||
Norm_L = 512.164, 0.680416, 0.680467,\
|
||||
BG_L = 40.8446, 0.114026, 0.114145,\
|
||||
Norm_R = 461.033, 0.637598, 0.638407,\
|
||||
BG_R = 35.7621, 0.107242, 0.107176,\
|
||||
relasy_R = 0.985641, 0.0109102, 0.0107434,\
|
||||
relphase_R = 164.644, 0.613762, 0.612931,\
|
||||
one = 1, 0, 0,\
|
||||
zero = 0, 0, 0,\
|
||||
CHISQ = 466.476, 0, 0,\
|
||||
NDF = 496, 0, 0,\
|
||||
CHISQred = 0.940475, 0, 0,\
|
||||
13,,, 13
|
||||
dataT = -999, -999, -999,\
|
||||
dataB = 95, 0, 0,\
|
||||
dataE = 12, 0, 0,\
|
||||
dataTr = -999, 0, 0,\
|
||||
phase = 20.5737, 0.542625, 0.541999,\
|
||||
field = 92.5039, 0.0406381, 0.0406611,\
|
||||
asymS = 0.211014, 0.00167778, 0.0016758,\
|
||||
rateS = 0.0362712, 0.0133201, 0.0224154,\
|
||||
asymF = 0, 0, 0,\
|
||||
rateF = 0, 0, 0,\
|
||||
Norm_L = 512.321, 0.681227, 0.680799,\
|
||||
BG_L = 40.9476, 0.114168, 0.114277,\
|
||||
Norm_R = 460.268, 0.637275, 0.637982,\
|
||||
BG_R = 35.7985, 0.107257, 0.107136,\
|
||||
relasy_R = 0.981636, 0.0107562, 0.010656,\
|
||||
relphase_R = 163.856, 0.60798, 0.607855,\
|
||||
one = 1, 0, 0,\
|
||||
zero = 0, 0, 0,\
|
||||
CHISQ = 548.56, 0, 0,\
|
||||
NDF = 496, 0, 0,\
|
||||
CHISQred = 1.10597, 0, 0,\
|
||||
14,,, 14
|
||||
dataT = -999, -999, -999,\
|
||||
dataB = 95, 0, 0,\
|
||||
dataE = 16, 0, 0,\
|
||||
dataTr = -999, 0, 0,\
|
||||
phase = 19.648, 0.545905, 0.54508,\
|
||||
field = 92.1691, 0.0399792, 0.0400377,\
|
||||
asymS = 0.207245, 0.00153621, 0.00153789,\
|
||||
rateS = 3.15475e-05, 0.0237503, 3.15475e-05,\
|
||||
asymF = 0, 0, 0,\
|
||||
rateF = 0, 0, 0,\
|
||||
Norm_L = 511.991, 0.678127, 0.678225,\
|
||||
BG_L = 40.8879, 0.113848, 0.113782,\
|
||||
Norm_R = 460.983, 0.638321, 0.638017,\
|
||||
BG_R = 35.8284, 0.107281, 0.107261,\
|
||||
relasy_R = 1.00903, 0.0110485, 0.0109322,\
|
||||
relphase_R = 165.692, 0.607819, 0.608145,\
|
||||
one = 1, 0, 0,\
|
||||
zero = 0, 0, 0,\
|
||||
CHISQ = 478.23, 0, 0,\
|
||||
NDF = 496, 0, 0,\
|
||||
CHISQred = 0.964172, 0, 0,\
|
||||
15,,, 15
|
||||
dataT = -999, -999, -999,\
|
||||
dataB = 95, 0, 0,\
|
||||
dataE = 18, 0, 0,\
|
||||
dataTr = -999, 0, 0,\
|
||||
phase = 20.3825, 0.554629, 0.554213,\
|
||||
field = 92.112, 0.042105, 0.0421238,\
|
||||
asymS = 0.205496, 0.00168959, 0.0016866,\
|
||||
rateS = 0.0587814, 0.00935583, 0.0109373,\
|
||||
asymF = 0, 0, 0,\
|
||||
rateF = 0, 0, 0,\
|
||||
Norm_L = 511.742, 0.680607, 0.680491,\
|
||||
BG_L = 40.9695, 0.114144, 0.114166,\
|
||||
Norm_R = 460.95, 0.637808, 0.637869,\
|
||||
BG_R = 35.787, 0.107189, 0.107152,\
|
||||
relasy_R = 1.01714, 0.0112975, 0.011185,\
|
||||
relphase_R = 164.354, 0.616315, 0.616399,\
|
||||
one = 1, 0, 0,\
|
||||
zero = 0, 0, 0,\
|
||||
CHISQ = 524.027, 0, 0,\
|
||||
NDF = 496, 0, 0,\
|
||||
CHISQred = 1.05651, 0, 0,\
|
||||
16,,, 16
|
||||
dataT = -999, -999, -999,\
|
||||
dataB = 95, 0, 0,\
|
||||
dataE = 20, 0, 0,\
|
||||
dataTr = -999, 0, 0,\
|
||||
phase = 19.6406, 0.54056, 0.541186,\
|
||||
field = 92.1166, 0.0399119, 0.0398919,\
|
||||
asymS = 0.209561, 0.00153832, 0.00153834,\
|
||||
rateS = 1.15072e-05, 0.0220403, 1.15072e-05,\
|
||||
asymF = 0, 0, 0,\
|
||||
rateF = 0, 0, 0,\
|
||||
Norm_L = 511.878, 0.679053, 0.677984,\
|
||||
BG_L = 41.0016, 0.113867, 0.114042,\
|
||||
Norm_R = 460.792, 0.637537, 0.63825,\
|
||||
BG_R = 35.8446, 0.1073, 0.107141,\
|
||||
relasy_R = 0.990195, 0.0112975, 0.0107868,\
|
||||
relphase_R = 165.508, 0.607496, 0.60648,\
|
||||
one = 1, 0, 0,\
|
||||
zero = 0, 0, 0,\
|
||||
CHISQ = 510.134, 0, 0,\
|
||||
NDF = 496, 0, 0,\
|
||||
CHISQred = 1.02849, 0, 0,\
|
||||
17,,, 17
|
||||
dataT = -999, -999, -999,\
|
||||
dataB = 95, 0, 0,\
|
||||
dataE = 22, 0, 0,\
|
||||
dataTr = -999, 0, 0,\
|
||||
phase = 19.7588, 0.539725, 0.539232,\
|
||||
field = 92.2675, 0.0405621, 0.0405519,\
|
||||
asymS = 0.21133, 0.00167713, 0.00167511,\
|
||||
rateS = 0.0435813, 0.0114532, 0.0154423,\
|
||||
asymF = 0, 0, 0,\
|
||||
rateF = 0, 0, 0,\
|
||||
Norm_L = 512.261, 0.680603, 0.680661,\
|
||||
BG_L = 40.8804, 0.114102, 0.114102,\
|
||||
Norm_R = 459.983, 0.637493, 0.63749,\
|
||||
BG_R = 35.9777, 0.107233, 0.107342,\
|
||||
relasy_R = 1.00198, 0.0108701, 0.010746,\
|
||||
relphase_R = 164.95, 0.601843, 0.601722,\
|
||||
one = 1, 0, 0,\
|
||||
zero = 0, 0, 0,\
|
||||
CHISQ = 466.595, 0, 0,\
|
||||
NDF = 496, 0, 0,\
|
||||
CHISQred = 0.940715, 0, 0,\
|
||||
18,,, 18
|
||||
dataT = -999, -999, -999,\
|
||||
dataB = 95, 0, 0,\
|
||||
dataE = 24, 0, 0,\
|
||||
dataTr = -999, 0, 0,\
|
||||
phase = 19.1697, 0.541308, 0.541008,\
|
||||
field = 92.5277, 0.0414068, 0.0413834,\
|
||||
asymS = 0.211852, 0.0016875, 0.00168863,\
|
||||
rateS = 0.0577038, 0.00939834, 0.0110313,\
|
||||
asymF = 0, 0, 0,\
|
||||
rateF = 0, 0, 0,\
|
||||
Norm_L = 512.697, 0.680043, 0.681802,\
|
||||
BG_L = 40.8227, 0.114172, 0.11398,\
|
||||
Norm_R = 459.63, 0.637738, 0.637658,\
|
||||
BG_R = 36.0782, 0.107368, 0.107473,\
|
||||
relasy_R = 0.98732, 0.0108046, 0.0107028,\
|
||||
relphase_R = 166.397, 0.6065, 0.608263,\
|
||||
one = 1, 0, 0,\
|
||||
zero = 0, 0, 0,\
|
||||
CHISQ = 474.932, 0, 0,\
|
||||
NDF = 496, 0, 0,\
|
||||
CHISQred = 0.957524, 0, 0,\
|
||||
19,,, 19
|
||||
|
||||
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -1,26 +0,0 @@
|
||||
# libGapIntegrals-test.dat
|
||||
# This is a comment
|
||||
% This as well
|
||||
header
|
||||
TITLE: Test superconductor data
|
||||
X-AXIS-TITLE: T (K)
|
||||
Y-AXIS-TITLE: #lambda^{-2} (#mum^{-2})
|
||||
SETUP: H #parallel c
|
||||
FIELD: 100
|
||||
TEMP: 0.0
|
||||
ENERGY: 4200
|
||||
# here the data will follow
|
||||
data
|
||||
# x, y, error y
|
||||
0.02, 12.0, 0.5
|
||||
0.1, 11.8, 0.8
|
||||
0.2, 9.9, 0.4
|
||||
0.33, 7.2, 0.15
|
||||
0.41, 3.8, 0.38
|
||||
0.5, 2.7, 0.5
|
||||
0.64, 1.0, 0.7
|
||||
0.7, 0.1, 0.2
|
||||
0.8, 0.0, 0.8
|
||||
0.9, 0.1, 0.5
|
||||
1.2, 0.0, 0.1
|
||||
|
@ -1,101 +0,0 @@
|
||||
DEPTH PARTICLES
|
||||
2. 98
|
||||
6. 309
|
||||
10. 459
|
||||
14. 582
|
||||
18. 709
|
||||
22. 780
|
||||
26. 827
|
||||
30. 916
|
||||
34. 981
|
||||
38. 1073
|
||||
42. 1173
|
||||
46. 1228
|
||||
50. 1283
|
||||
54. 1402
|
||||
58. 1446
|
||||
62. 1594
|
||||
66. 1659
|
||||
70. 1586
|
||||
74. 1768
|
||||
78. 1796
|
||||
82. 1892
|
||||
86. 1997
|
||||
90. 2072
|
||||
94. 2087
|
||||
98. 2122
|
||||
102. 2191
|
||||
106. 2264
|
||||
110. 2274
|
||||
114. 2334
|
||||
118. 2346
|
||||
122. 2349
|
||||
126. 2414
|
||||
130. 2412
|
||||
134. 2308
|
||||
138. 2345
|
||||
142. 2379
|
||||
146. 2307
|
||||
150. 2246
|
||||
154. 2262
|
||||
158. 2017
|
||||
162. 2030
|
||||
166. 1945
|
||||
170. 1907
|
||||
174. 1821
|
||||
178. 1740
|
||||
182. 1649
|
||||
186. 1536
|
||||
190. 1327
|
||||
194. 1257
|
||||
198. 1217
|
||||
202. 1060
|
||||
206. 941
|
||||
210. 882
|
||||
214. 792
|
||||
218. 642
|
||||
222. 585
|
||||
226. 433
|
||||
230. 396
|
||||
234. 383
|
||||
238. 284
|
||||
242. 215
|
||||
246. 221
|
||||
250. 175
|
||||
254. 123
|
||||
258. 89
|
||||
262. 67
|
||||
266. 56
|
||||
270. 48
|
||||
274. 43
|
||||
278. 31
|
||||
282. 23
|
||||
286. 18
|
||||
290. 14
|
||||
294. 6
|
||||
298. 5
|
||||
302. 3
|
||||
306. 4
|
||||
310. 1
|
||||
314. 0
|
||||
318. 0
|
||||
322. 0
|
||||
326. 0
|
||||
330. 0
|
||||
334. 0
|
||||
338. 0
|
||||
342. 0
|
||||
346. 0
|
||||
350. 0
|
||||
354. 0
|
||||
358. 0
|
||||
362. 0
|
||||
366. 0
|
||||
370. 0
|
||||
374. 0
|
||||
378. 0
|
||||
382. 0
|
||||
386. 0
|
||||
390. 0
|
||||
394. 0
|
||||
398. 0
|
@ -1,101 +0,0 @@
|
||||
DEPTH PARTICLES
|
||||
2. 182
|
||||
8. 584
|
||||
12. 728
|
||||
18. 982
|
||||
22. 1084
|
||||
28. 1185
|
||||
32. 1429
|
||||
38. 1475
|
||||
42. 1627
|
||||
48. 1721
|
||||
52. 1798
|
||||
58. 1962
|
||||
62. 2037
|
||||
68. 2271
|
||||
72. 2229
|
||||
78. 2408
|
||||
82. 2634
|
||||
88. 2757
|
||||
92. 2867
|
||||
98. 2893
|
||||
102. 3067
|
||||
108. 3281
|
||||
112. 3500
|
||||
118. 3574
|
||||
122. 3765
|
||||
128. 3940
|
||||
132. 4244
|
||||
138. 4304
|
||||
142. 4651
|
||||
148. 4636
|
||||
152. 5012
|
||||
158. 5264
|
||||
162. 5337
|
||||
168. 5677
|
||||
172. 6003
|
||||
178. 6112
|
||||
182. 6484
|
||||
188. 6535
|
||||
192. 6981
|
||||
198. 7118
|
||||
202. 7415
|
||||
208. 7812
|
||||
212. 7972
|
||||
218. 8162
|
||||
222. 8478
|
||||
228. 8914
|
||||
232. 8864
|
||||
238. 9238
|
||||
242. 9469
|
||||
248. 9683
|
||||
252. 9711
|
||||
258. 9893
|
||||
262. 10199
|
||||
268. 10321
|
||||
272. 10575
|
||||
278. 10582
|
||||
282. 10614
|
||||
288. 10444
|
||||
292. 10626
|
||||
298. 10572
|
||||
302. 10568
|
||||
308. 10343
|
||||
312. 10201
|
||||
318. 10019
|
||||
322. 9669
|
||||
328. 9471
|
||||
332. 9077
|
||||
338. 8624
|
||||
342. 8304
|
||||
348. 7758
|
||||
352. 7279
|
||||
358. 6744
|
||||
362. 6397
|
||||
368. 5689
|
||||
372. 4986
|
||||
378. 4565
|
||||
382. 4078
|
||||
388. 3488
|
||||
392. 3028
|
||||
398. 2589
|
||||
402. 2140
|
||||
408. 1723
|
||||
412. 1385
|
||||
418. 1028
|
||||
422. 891
|
||||
428. 667
|
||||
432. 512
|
||||
438. 363
|
||||
442. 239
|
||||
448. 187
|
||||
452. 117
|
||||
458. 76
|
||||
462. 48
|
||||
468. 23
|
||||
472. 24
|
||||
478. 11
|
||||
482. 7
|
||||
488. 1
|
||||
492. 3
|
||||
498. 2
|
@ -1,101 +0,0 @@
|
||||
DEPTH PARTICLES
|
||||
4. 36
|
||||
10. 100
|
||||
18. 129
|
||||
24. 152
|
||||
32. 161
|
||||
38. 204
|
||||
46. 246
|
||||
52. 231
|
||||
60. 261
|
||||
66. 273
|
||||
74. 296
|
||||
80. 315
|
||||
88. 329
|
||||
94. 397
|
||||
102. 383
|
||||
108. 390
|
||||
116. 442
|
||||
122. 480
|
||||
130. 469
|
||||
136. 537
|
||||
144. 545
|
||||
150. 538
|
||||
158. 639
|
||||
164. 658
|
||||
172. 679
|
||||
178. 695
|
||||
186. 772
|
||||
192. 832
|
||||
200. 817
|
||||
206. 915
|
||||
214. 926
|
||||
220. 1056
|
||||
228. 1093
|
||||
234. 1101
|
||||
242. 1187
|
||||
248. 1233
|
||||
256. 1252
|
||||
262. 1297
|
||||
270. 1426
|
||||
276. 1508
|
||||
284. 1565
|
||||
290. 1609
|
||||
298. 1656
|
||||
304. 1903
|
||||
312. 1904
|
||||
318. 1826
|
||||
326. 2005
|
||||
332. 2089
|
||||
340. 2266
|
||||
346. 2263
|
||||
354. 2292
|
||||
360. 2425
|
||||
368. 2414
|
||||
374. 2421
|
||||
382. 2442
|
||||
388. 2578
|
||||
396. 2600
|
||||
402. 2644
|
||||
410. 2483
|
||||
416. 2479
|
||||
424. 2469
|
||||
430. 2504
|
||||
438. 2398
|
||||
444. 2348
|
||||
452. 2208
|
||||
458. 2093
|
||||
466. 1936
|
||||
472. 1879
|
||||
480. 1625
|
||||
486. 1546
|
||||
494. 1342
|
||||
500. 1129
|
||||
508. 962
|
||||
514. 836
|
||||
522. 698
|
||||
528. 553
|
||||
536. 426
|
||||
542. 292
|
||||
550. 234
|
||||
556. 177
|
||||
564. 87
|
||||
570. 68
|
||||
578. 42
|
||||
584. 25
|
||||
592. 12
|
||||
598. 6
|
||||
606. 2
|
||||
612. 2
|
||||
620. 0
|
||||
626. 1
|
||||
634. 2
|
||||
640. 0
|
||||
648. 0
|
||||
654. 0
|
||||
662. 0
|
||||
668. 0
|
||||
676. 0
|
||||
682. 0
|
||||
690. 0
|
||||
696. 0
|
@ -1,101 +0,0 @@
|
||||
DEPTH PARTICLES
|
||||
4. 31
|
||||
14. 80
|
||||
22. 114
|
||||
32. 121
|
||||
40. 145
|
||||
50. 167
|
||||
58. 174
|
||||
68. 192
|
||||
76. 220
|
||||
86. 232
|
||||
94. 230
|
||||
104. 278
|
||||
112. 283
|
||||
122. 317
|
||||
130. 334
|
||||
140. 354
|
||||
148. 408
|
||||
158. 369
|
||||
166. 410
|
||||
176. 455
|
||||
184. 486
|
||||
194. 505
|
||||
202. 521
|
||||
212. 608
|
||||
220. 596
|
||||
230. 641
|
||||
238. 774
|
||||
248. 748
|
||||
256. 813
|
||||
266. 837
|
||||
274. 826
|
||||
284. 934
|
||||
292. 984
|
||||
302. 1130
|
||||
310. 1118
|
||||
320. 1204
|
||||
328. 1325
|
||||
338. 1364
|
||||
346. 1404
|
||||
356. 1502
|
||||
364. 1527
|
||||
374. 1697
|
||||
382. 1735
|
||||
392. 1907
|
||||
400. 2023
|
||||
410. 2084
|
||||
418. 2166
|
||||
428. 2231
|
||||
436. 2435
|
||||
446. 2470
|
||||
454. 2653
|
||||
464. 2637
|
||||
472. 2708
|
||||
482. 2724
|
||||
490. 2806
|
||||
500. 3046
|
||||
508. 2918
|
||||
518. 2933
|
||||
526. 2988
|
||||
536. 2935
|
||||
544. 2886
|
||||
554. 2780
|
||||
562. 2708
|
||||
572. 2537
|
||||
580. 2424
|
||||
590. 2129
|
||||
598. 1916
|
||||
608. 1817
|
||||
616. 1542
|
||||
626. 1330
|
||||
634. 1012
|
||||
644. 806
|
||||
652. 578
|
||||
662. 439
|
||||
670. 315
|
||||
680. 186
|
||||
688. 126
|
||||
698. 82
|
||||
706. 37
|
||||
716. 9
|
||||
724. 5
|
||||
734. 1
|
||||
742. 0
|
||||
752. 0
|
||||
760. 0
|
||||
770. 0
|
||||
778. 0
|
||||
788. 0
|
||||
796. 0
|
||||
806. 0
|
||||
814. 0
|
||||
824. 0
|
||||
832. 0
|
||||
842. 0
|
||||
850. 0
|
||||
860. 0
|
||||
868. 0
|
||||
878. 0
|
||||
886. 0
|
||||
896. 0
|
@ -1,85 +0,0 @@
|
||||
DEPTH PARTICLES
|
||||
6. 188
|
||||
18. 439
|
||||
30. 563
|
||||
42. 673
|
||||
54. 783
|
||||
66. 832
|
||||
78. 924
|
||||
90. 1041
|
||||
102. 1034
|
||||
114. 1255
|
||||
126. 1328
|
||||
138. 1444
|
||||
150. 1524
|
||||
162. 1761
|
||||
174. 1895
|
||||
186. 2007
|
||||
198. 2082
|
||||
210. 2305
|
||||
222. 2477
|
||||
234. 2662
|
||||
246. 2957
|
||||
258. 3226
|
||||
270. 3485
|
||||
282. 3732
|
||||
294. 3857
|
||||
306. 4316
|
||||
318. 4695
|
||||
330. 4932
|
||||
342. 5411
|
||||
354. 5845
|
||||
366. 6470
|
||||
378. 6693
|
||||
390. 7404
|
||||
402. 7961
|
||||
414. 8278
|
||||
426. 8997
|
||||
438. 9667
|
||||
450. 10434
|
||||
462. 11124
|
||||
474. 11716
|
||||
486. 12617
|
||||
498. 13272
|
||||
510. 13988
|
||||
522. 14638
|
||||
534. 15671
|
||||
546. 16467
|
||||
558. 16918
|
||||
570. 17409
|
||||
582. 17906
|
||||
594. 18317
|
||||
606. 18387
|
||||
618. 18326
|
||||
630. 18095
|
||||
642. 17590
|
||||
654. 16622
|
||||
666. 15555
|
||||
678. 14443
|
||||
690. 12993
|
||||
702. 10881
|
||||
714. 9249
|
||||
726. 7195
|
||||
738. 5399
|
||||
750. 3728
|
||||
762. 2539
|
||||
774. 1549
|
||||
786. 863
|
||||
798. 376
|
||||
810. 146
|
||||
822. 81
|
||||
834. 29
|
||||
846. 7
|
||||
858. 2
|
||||
870. 0
|
||||
882. 0
|
||||
894. 0
|
||||
906. 0
|
||||
918. 0
|
||||
930. 0
|
||||
942. 0
|
||||
954. 0
|
||||
966. 0
|
||||
978. 0
|
||||
990. 0
|
||||
1002. 0
|
@ -1,78 +0,0 @@
|
||||
DEPTH PARTICLES
|
||||
8. 179
|
||||
24. 338
|
||||
40. 508
|
||||
56. 561
|
||||
72. 664
|
||||
88. 662
|
||||
104. 758
|
||||
120. 841
|
||||
136. 951
|
||||
152. 982
|
||||
168. 1135
|
||||
184. 1147
|
||||
200. 1370
|
||||
216. 1425
|
||||
232. 1562
|
||||
248. 1729
|
||||
264. 1930
|
||||
280. 2031
|
||||
296. 2198
|
||||
312. 2295
|
||||
328. 2616
|
||||
344. 2783
|
||||
360. 3120
|
||||
376. 3374
|
||||
392. 3643
|
||||
408. 4084
|
||||
424. 4286
|
||||
440. 4794
|
||||
456. 5126
|
||||
472. 5690
|
||||
488. 6197
|
||||
504. 6788
|
||||
520. 7328
|
||||
536. 8073
|
||||
552. 8628
|
||||
568. 9419
|
||||
584. 10135
|
||||
600. 11344
|
||||
616. 12099
|
||||
632. 12931
|
||||
648. 14107
|
||||
664. 15078
|
||||
680. 16160
|
||||
696. 17173
|
||||
712. 18350
|
||||
728. 19257
|
||||
744. 20247
|
||||
760. 20878
|
||||
776. 21354
|
||||
792. 21704
|
||||
808. 21793
|
||||
824. 21467
|
||||
840. 20407
|
||||
856. 19029
|
||||
872. 17035
|
||||
888. 14785
|
||||
904. 12301
|
||||
920. 9530
|
||||
936. 6773
|
||||
952. 4344
|
||||
968. 2635
|
||||
984. 1368
|
||||
1000. 584
|
||||
1016. 213
|
||||
1032. 49
|
||||
1048. 11
|
||||
1064. 4
|
||||
1080. 1
|
||||
1096. 0
|
||||
1112. 0
|
||||
1128. 0
|
||||
1144. 0
|
||||
1160. 0
|
||||
1176. 0
|
||||
1192. 0
|
||||
1208. 0
|
||||
1224. 0
|
@ -1,80 +0,0 @@
|
||||
DEPTH PARTICLES
|
||||
8. 136
|
||||
26. 287
|
||||
42. 393
|
||||
60. 454
|
||||
76. 532
|
||||
94. 597
|
||||
110. 642
|
||||
128. 713
|
||||
144. 727
|
||||
162. 789
|
||||
178. 887
|
||||
196. 1015
|
||||
212. 1058
|
||||
230. 1155
|
||||
246. 1281
|
||||
264. 1365
|
||||
280. 1449
|
||||
298. 1546
|
||||
314. 1759
|
||||
332. 1860
|
||||
348. 2058
|
||||
366. 2136
|
||||
382. 2398
|
||||
400. 2694
|
||||
416. 2872
|
||||
434. 3114
|
||||
450. 3411
|
||||
468. 3754
|
||||
484. 4001
|
||||
502. 4612
|
||||
518. 4810
|
||||
536. 5144
|
||||
552. 5695
|
||||
570. 6134
|
||||
586. 6840
|
||||
604. 7359
|
||||
620. 8136
|
||||
638. 8824
|
||||
654. 9768
|
||||
672. 10429
|
||||
688. 11260
|
||||
706. 12020
|
||||
722. 13243
|
||||
740. 14336
|
||||
756. 15119
|
||||
774. 16321
|
||||
790. 17337
|
||||
808. 18484
|
||||
824. 19400
|
||||
842. 20479
|
||||
858. 20968
|
||||
876. 21610
|
||||
892. 22026
|
||||
910. 21576
|
||||
926. 21309
|
||||
944. 20338
|
||||
960. 18771
|
||||
978. 16933
|
||||
994. 14245
|
||||
1012. 11922
|
||||
1028. 8964
|
||||
1046. 6234
|
||||
1062. 3905
|
||||
1080. 2260
|
||||
1096. 1055
|
||||
1114. 394
|
||||
1130. 108
|
||||
1148. 41
|
||||
1164. 9
|
||||
1182. 0
|
||||
1198. 0
|
||||
1216. 0
|
||||
1232. 0
|
||||
1250. 0
|
||||
1266. 0
|
||||
1284. 0
|
||||
1300. 0
|
||||
1318. 0
|
||||
1334. 0
|
@ -1,78 +0,0 @@
|
||||
DEPTH PARTICLES
|
||||
10. 27
|
||||
28. 52
|
||||
48. 70
|
||||
66. 85
|
||||
86. 96
|
||||
104. 90
|
||||
124. 130
|
||||
142. 119
|
||||
162. 138
|
||||
180. 152
|
||||
200. 151
|
||||
218. 204
|
||||
238. 181
|
||||
256. 192
|
||||
276. 214
|
||||
294. 273
|
||||
314. 257
|
||||
332. 283
|
||||
352. 320
|
||||
370. 301
|
||||
390. 354
|
||||
408. 430
|
||||
428. 451
|
||||
446. 490
|
||||
466. 503
|
||||
484. 605
|
||||
504. 665
|
||||
522. 749
|
||||
542. 763
|
||||
560. 813
|
||||
580. 934
|
||||
598. 984
|
||||
618. 1162
|
||||
636. 1230
|
||||
656. 1256
|
||||
674. 1481
|
||||
694. 1620
|
||||
712. 1796
|
||||
732. 1823
|
||||
750. 2036
|
||||
770. 2319
|
||||
788. 2476
|
||||
808. 2737
|
||||
826. 3005
|
||||
846. 3076
|
||||
864. 3589
|
||||
884. 3626
|
||||
902. 3942
|
||||
922. 4078
|
||||
940. 4197
|
||||
960. 4537
|
||||
978. 4601
|
||||
998. 4665
|
||||
1016. 4543
|
||||
1036. 4486
|
||||
1054. 4169
|
||||
1074. 3809
|
||||
1092. 3309
|
||||
1112. 2771
|
||||
1130. 2154
|
||||
1150. 1469
|
||||
1168. 962
|
||||
1188. 496
|
||||
1206. 214
|
||||
1226. 96
|
||||
1244. 23
|
||||
1264. 4
|
||||
1282. 1
|
||||
1302. 1
|
||||
1320. 0
|
||||
1340. 0
|
||||
1358. 0
|
||||
1378. 0
|
||||
1396. 0
|
||||
1416. 0
|
||||
1434. 0
|
||||
1454. 0
|
@ -1,85 +0,0 @@
|
||||
DEPTH PARTICLES
|
||||
10. 106
|
||||
28. 193
|
||||
48. 270
|
||||
66. 351
|
||||
86. 380
|
||||
104. 444
|
||||
124. 464
|
||||
142. 471
|
||||
162. 525
|
||||
180. 611
|
||||
200. 652
|
||||
218. 662
|
||||
238. 732
|
||||
256. 779
|
||||
276. 885
|
||||
294. 949
|
||||
314. 990
|
||||
332. 1082
|
||||
352. 1172
|
||||
370. 1223
|
||||
390. 1294
|
||||
408. 1506
|
||||
428. 1528
|
||||
446. 1674
|
||||
466. 1818
|
||||
484. 2052
|
||||
504. 2075
|
||||
522. 2336
|
||||
542. 2558
|
||||
560. 2735
|
||||
580. 3090
|
||||
598. 3245
|
||||
618. 3601
|
||||
636. 3874
|
||||
656. 4238
|
||||
674. 4565
|
||||
694. 5017
|
||||
712. 5501
|
||||
732. 5902
|
||||
750. 6488
|
||||
770. 7077
|
||||
788. 7857
|
||||
808. 8458
|
||||
826. 9169
|
||||
846. 10016
|
||||
864. 10829
|
||||
884. 11645
|
||||
902. 12778
|
||||
922. 13889
|
||||
940. 15076
|
||||
960. 15665
|
||||
978. 17100
|
||||
998. 18165
|
||||
1016. 19343
|
||||
1036. 20112
|
||||
1054. 20965
|
||||
1074. 21802
|
||||
1092. 22088
|
||||
1112. 22031
|
||||
1130. 21927
|
||||
1150. 20944
|
||||
1168. 19797
|
||||
1188. 17779
|
||||
1206. 15378
|
||||
1226. 12323
|
||||
1244. 9713
|
||||
1264. 6617
|
||||
1282. 4166
|
||||
1302. 2235
|
||||
1320. 1063
|
||||
1340. 382
|
||||
1358. 124
|
||||
1378. 32
|
||||
1396. 5
|
||||
1416. 0
|
||||
1434. 0
|
||||
1454. 0
|
||||
1472. 0
|
||||
1492. 0
|
||||
1510. 0
|
||||
1530. 0
|
||||
1548. 0
|
||||
1568. 0
|
||||
1586. 0
|
@ -1,87 +0,0 @@
|
||||
DEPTH PARTICLES
|
||||
10. 67
|
||||
30. 203
|
||||
50. 250
|
||||
70. 311
|
||||
90. 341
|
||||
110. 368
|
||||
130. 407
|
||||
150. 417
|
||||
170. 480
|
||||
190. 503
|
||||
210. 501
|
||||
230. 601
|
||||
250. 626
|
||||
270. 649
|
||||
290. 728
|
||||
310. 745
|
||||
330. 853
|
||||
350. 940
|
||||
370. 991
|
||||
390. 1003
|
||||
410. 1096
|
||||
430. 1156
|
||||
450. 1305
|
||||
470. 1431
|
||||
490. 1462
|
||||
510. 1653
|
||||
530. 1799
|
||||
550. 1911
|
||||
570. 2068
|
||||
590. 2259
|
||||
610. 2468
|
||||
630. 2693
|
||||
650. 2822
|
||||
670. 3137
|
||||
690. 3340
|
||||
710. 3643
|
||||
730. 4002
|
||||
750. 4422
|
||||
770. 4817
|
||||
790. 5262
|
||||
810. 5769
|
||||
830. 6278
|
||||
850. 6810
|
||||
870. 7301
|
||||
890. 8018
|
||||
910. 8853
|
||||
930. 9542
|
||||
950. 10168
|
||||
970. 11224
|
||||
990. 11998
|
||||
1010. 13103
|
||||
1030. 14122
|
||||
1050. 15211
|
||||
1070. 16324
|
||||
1090. 17470
|
||||
1110. 18769
|
||||
1130. 19661
|
||||
1150. 20576
|
||||
1170. 21591
|
||||
1190. 21861
|
||||
1210. 22502
|
||||
1230. 22082
|
||||
1250. 21624
|
||||
1270. 20635
|
||||
1290. 18931
|
||||
1310. 16919
|
||||
1330. 13954
|
||||
1350. 11140
|
||||
1370. 8098
|
||||
1390. 5322
|
||||
1410. 3039
|
||||
1430. 1504
|
||||
1450. 622
|
||||
1470. 185
|
||||
1490. 40
|
||||
1510. 19
|
||||
1530. 4
|
||||
1550. 0
|
||||
1570. 0
|
||||
1590. 0
|
||||
1610. 0
|
||||
1630. 0
|
||||
1650. 0
|
||||
1670. 0
|
||||
1690. 0
|
||||
1710. 0
|
@ -1,40 +0,0 @@
|
||||
Test libCalcMeanFieldsLEM (SC film), DB data file
|
||||
###############################################################
|
||||
FITPARAMETER
|
||||
# Nr. Name Value Step Pos_Error Boundaries
|
||||
1 B0 95 0 none
|
||||
2 deadlayer 3.71915 0.639931 none 1 10
|
||||
3 SCthickness 157.461 2.37233 none 5 200
|
||||
4 lambda 305.142 5.23327 none 1 none
|
||||
5 weight 1 0 none 0 1
|
||||
|
||||
###############################################################
|
||||
THEORY
|
||||
userFcn libCalcMeanFieldsLEM TMeanFieldsForScSingleLayer 1 2 3 4 5 5 5
|
||||
|
||||
###############################################################
|
||||
#FUNCTIONS
|
||||
|
||||
###############################################################
|
||||
RUN data/Meissner-1L_160nm_TF95G_h12 MUE4 PSI DB (name beamline institute data-file-format)
|
||||
fittype 8 (non muSR fit)
|
||||
map 0 0 0 0 0 0 0 0 0 0
|
||||
xy-data dataE field
|
||||
fit 0.00 30.00
|
||||
packing 1
|
||||
|
||||
###############################################################
|
||||
COMMANDS
|
||||
MINIMIZE
|
||||
HESSE
|
||||
#MINOS
|
||||
SAVE
|
||||
|
||||
###############################################################
|
||||
PLOT 8 (non muSR plot)
|
||||
runs 1
|
||||
range 0.00 30.00
|
||||
|
||||
###############################################################
|
||||
STATISTIC --- 2010-02-23 19:51:25
|
||||
chisq = 3.78008788, NDF = 7, chisq/NDF = 0.540012554
|
@ -1,90 +0,0 @@
|
||||
Test libTFitPofB SC Abrikosov state, single histogram plot, PSI-BIN data file
|
||||
###############################################################
|
||||
FITPARAMETER
|
||||
# No Name Value Step Pos_Error Boundaries
|
||||
1 phase 1.58223 0.000213227 none
|
||||
2 field 107.087 1.21372 none
|
||||
3 lambda 180.575 0.00184102 none 1 none
|
||||
4 xi 4 0 none 0 10
|
||||
|
||||
5 asym1 0.210949 1.67583e-05 none 0 0.3
|
||||
6 rate1 0.533587 0.00012763 none
|
||||
7 asymBg 0 0 none 0 0.3
|
||||
8 rateBg 0 0 none 0 none
|
||||
|
||||
9 N01 3307.96 0.000213383 none 0 none
|
||||
10 bg1 69.1907 0.000213247 none 0 none
|
||||
11 N02 3586.08 0.000213383 none 0 none
|
||||
12 bg2 69.0577 0.000213254 none 0 none
|
||||
13 relphase 182.101 0.00487066 none 150 210
|
||||
14 zero 0 0 none
|
||||
15 relasy 1.0211 0.000114228 none
|
||||
16 one 1 0 none
|
||||
|
||||
###############################################################
|
||||
THEORY
|
||||
asymmetry fun3
|
||||
simpleGss 6 (rate)
|
||||
userFcn libFitPofB TBulkTriVortexML fun2 2 3 4
|
||||
+
|
||||
asymmetry fun4
|
||||
simpleGss 8 (rate)
|
||||
TFieldCos fun2 fun1 (phase frequency)
|
||||
|
||||
###############################################################
|
||||
FUNCTIONS
|
||||
fun1 = par2 * gamma_mu
|
||||
fun2 = par1 + map1
|
||||
fun3 = par5 * map2
|
||||
fun4 = par7 * map2
|
||||
|
||||
###############################################################
|
||||
RUN data/deltat_pta_gps_3093 PIM3 PSI PSI-BIN (name beamline institute data-file-format)
|
||||
fittype 0 (single histogram fit)
|
||||
map 14 16 0 0 0 0 0 0 0 0
|
||||
forward 3
|
||||
norm 9
|
||||
lifetimecorrection
|
||||
backgr.fit 10
|
||||
t0 125
|
||||
data 128 8001
|
||||
fit 0.00 8.00
|
||||
packing 30
|
||||
|
||||
RUN data/deltat_pta_gps_3093 PIM3 PSI PSI-BIN (name beamline institute data-file-format)
|
||||
fittype 0 (single histogram fit)
|
||||
map 13 15 0 0 0 0 0 0 0 0
|
||||
forward 4
|
||||
norm 11
|
||||
lifetimecorrection
|
||||
backgr.fit 12
|
||||
t0 124
|
||||
data 127 8000
|
||||
fit 0.00 8.00
|
||||
packing 30
|
||||
|
||||
###############################################################
|
||||
COMMANDS
|
||||
#MINIMIZE
|
||||
MIGRAD
|
||||
HESSE
|
||||
#MINOS
|
||||
SAVE
|
||||
|
||||
###############################################################
|
||||
FOURIER
|
||||
units Gauss # units either 'Gauss', 'MHz', or 'Mc/s'
|
||||
fourier_power 9
|
||||
apodization NONE # NONE, WEAK, MEDIUM, STRONG
|
||||
plot POWER # REAL, IMAG, REAL_AND_IMAG, POWER, PHASE
|
||||
phase par1
|
||||
range 0.00 500.00
|
||||
|
||||
###############################################################
|
||||
PLOT 0 (single histo plot)
|
||||
runs 1 2
|
||||
range 0.00 4.00 -0.25 0.25
|
||||
|
||||
###############################################################
|
||||
STATISTIC --- 2010-01-08 14:34:28
|
||||
chisq = 546.920845, NDF = 415, chisq/NDF = 1.31788155
|
@ -1,90 +0,0 @@
|
||||
Test libTFitPofB SC Meissner state, single histogram plot, ROOT data file
|
||||
###############################################################
|
||||
FITPARAMETER
|
||||
# No Name Value Step Pos_Error Boundaries
|
||||
1 field 94.717 0 none
|
||||
2 deadlayer 10.5 0 none
|
||||
3 lambda 115.947 -0.91963 none
|
||||
|
||||
# E = 22keV
|
||||
|
||||
4 phase22 25.4956 0 none
|
||||
5 asym22 0.104724 -0.00293244 none 0 0.3
|
||||
6 rate22 0.558459 -0.0323891 none
|
||||
7 NormL22 753.067 -0.86835 none
|
||||
8 BGL22 51.0796 -0.132894 none
|
||||
9 NormR22 545.968 -0.762193 none
|
||||
10 BGR22 38.5992 -0.115679 none
|
||||
11 relasyR22 1.0697 -0.0377904 none 0.2 2
|
||||
12 relphaR22 162.711 -1.53722 none 110 210
|
||||
13 energy22 22 0 none
|
||||
|
||||
14 one 1 0 none
|
||||
15 zero 0 0 none
|
||||
|
||||
###############################################################
|
||||
THEORY
|
||||
asymmetry fun1
|
||||
simpleGss map3 (rate)
|
||||
userFcn libFitPofB TLondon1DHS fun2 map6 1 2 3
|
||||
|
||||
###############################################################
|
||||
FUNCTIONS
|
||||
fun1 = map2 * map4
|
||||
fun2 = map1 + map5
|
||||
fun3 = par1 * gamma_mu
|
||||
|
||||
###############################################################
|
||||
RUN data/lem09_his_0916 MUE4 PSI ROOT-NPP (name beamline institute data-file-format)
|
||||
fittype 0 (single histogram fit)
|
||||
norm 7
|
||||
backgr.fit 8
|
||||
lifetimecorrection
|
||||
map 4 5 6 14 15 13 0 0 0 0
|
||||
forward 1
|
||||
background 65000 66500
|
||||
data 3419 63000
|
||||
t0 3419
|
||||
fit 0.15 10.00
|
||||
packing 150
|
||||
|
||||
RUN data/lem09_his_0916 MUE4 PSI ROOT-NPP (name beamline institute data-file-format)
|
||||
fittype 0 (single histogram fit)
|
||||
norm 9
|
||||
backgr.fit 10
|
||||
lifetimecorrection
|
||||
map 4 5 6 11 12 13 0 0 0 0
|
||||
forward 3
|
||||
background 65000 66500
|
||||
data 3419 63000
|
||||
t0 3419
|
||||
fit 0.15 10.00
|
||||
packing 150
|
||||
|
||||
###############################################################
|
||||
COMMANDS
|
||||
MINIMIZE
|
||||
#HESSE
|
||||
#MINOS
|
||||
#SCAN 3
|
||||
CONTOURS 2 3
|
||||
MNPLOT
|
||||
SAVE
|
||||
|
||||
###############################################################
|
||||
FOURIER
|
||||
units Gauss # units either 'Gauss', 'MHz', or 'Mc/s'
|
||||
fourier_power 10
|
||||
apodization WEAK # NONE, WEAK, MEDIUM, STRONG
|
||||
plot POWER # REAL, IMAG, REAL_AND_IMAG, POWER, PHASE
|
||||
phase par4
|
||||
range 0.00 200.00
|
||||
|
||||
###############################################################
|
||||
PLOT 0 (single histo plot)
|
||||
runs 1 2
|
||||
range 0.00 4.00 -0.25 0.25
|
||||
|
||||
###############################################################
|
||||
STATISTIC --- 2010-03-12 11:22:43
|
||||
*** FIT DID NOT CONVERGE ***
|
@ -1,39 +0,0 @@
|
||||
Test libGapIntegrals (arbitrary data), ASCII data file
|
||||
###############################################################
|
||||
FITPARAMETER
|
||||
# Nr. Name Value Step Pos_Error Boundaries
|
||||
1 lambdaInvSq0 12.7664 0.40786 none
|
||||
2 Tc 0.555355 0.0203235 none 0 2
|
||||
3 Delta0 0.110329 0.00576485 none
|
||||
|
||||
###############################################################
|
||||
THEORY
|
||||
asymmetry 1
|
||||
userFcn libGapIntegrals TGapDWave 2 3
|
||||
|
||||
###############################################################
|
||||
#FUNCTIONS
|
||||
|
||||
###############################################################
|
||||
RUN data/libGapIntegrals-test PIM3 PSI ASCII (name beamline institute data-file-format)
|
||||
fittype 8 (non muSR fit)
|
||||
map 0 0 0 0 0 0 0 0 0 0
|
||||
xy-data 1 2
|
||||
fit 0.00 10.00
|
||||
packing 1
|
||||
|
||||
###############################################################
|
||||
COMMANDS
|
||||
MINIMIZE
|
||||
HESSE
|
||||
#MINOS
|
||||
SAVE
|
||||
|
||||
###############################################################
|
||||
PLOT 8 (non muSR plot)
|
||||
runs 1
|
||||
range 0.00 1.40
|
||||
|
||||
###############################################################
|
||||
STATISTIC --- 2010-01-08 13:54:19
|
||||
chisq = 15.4862481, NDF = 8, chisq/NDF = 1.93578101
|
@ -1,77 +0,0 @@
|
||||
Test libLFRelaxation (fit is without any meaning!), MUD data file
|
||||
###############################################################
|
||||
FITPARAMETER
|
||||
# Nr. Name Value Step Pos_Error Boundaries
|
||||
1 alpha 1 0 none 0 2
|
||||
2 asy 0.179075 0.000762359 none 0 0.33
|
||||
3 field 49.5715 4.51847 none 0 none
|
||||
4 statWidth 0.28921 0.018236 none 0 none
|
||||
5 fluctRate 1.76711 0.0982698 none 0 none
|
||||
|
||||
6 one 1 0 none
|
||||
7 zero 0 0 none
|
||||
|
||||
###############################################################
|
||||
THEORY
|
||||
asymmetry fun1
|
||||
dynExpKTLF fun3 4 5 (frequency damping hopping-rate)
|
||||
+
|
||||
asymmetry fun2
|
||||
userFcn libLFRelaxation TLFDynExpKT fun3 4 5
|
||||
|
||||
###############################################################
|
||||
FUNCTIONS
|
||||
fun1 = par2 * map1
|
||||
fun2 = par2 * map2
|
||||
fun3 = par3 * gamma_mu
|
||||
|
||||
###############################################################
|
||||
RUN ../data/000100 XXXX TRIUMF MUD (name beamline institute data-file-format)
|
||||
fittype 2 (asymmetry fit)
|
||||
alpha 1
|
||||
map 6 7 0 0 0 0 0 0 0 0 0
|
||||
forward 1
|
||||
backward 2
|
||||
background 79 391 80 409
|
||||
data 438 12785 436 12787
|
||||
t0 432 431
|
||||
fit 0.00 8.00
|
||||
packing 100
|
||||
|
||||
RUN ../data/000100 XXXX TRIUMF MUD (name beamline institute data-file-format)
|
||||
fittype 2 (asymmetry fit)
|
||||
alpha 1
|
||||
map 7 6 0 0 0 0 0 0 0 0 0
|
||||
forward 1
|
||||
backward 2
|
||||
background 79 391 80 409
|
||||
data 438 12785 436 12787
|
||||
t0 432 431
|
||||
fit 0.00 8.00
|
||||
packing 100
|
||||
|
||||
###############################################################
|
||||
COMMANDS
|
||||
MINIMIZE
|
||||
#MINOS
|
||||
HESSE
|
||||
SAVE
|
||||
|
||||
###############################################################
|
||||
FOURIER
|
||||
units Gauss # units either 'Gauss', 'MHz', or 'Mc/s'
|
||||
fourier_power 9
|
||||
apodization NONE # NONE, WEAK, MEDIUM, STRONG
|
||||
plot POWER # REAL, IMAG, REAL_AND_IMAG, POWER, PHASE
|
||||
phase 0
|
||||
#range_for_phase_correction 50.0 70.0
|
||||
range 0.00 200.00
|
||||
|
||||
###############################################################
|
||||
PLOT 2 (asymmetry plot)
|
||||
runs 1 2
|
||||
range 0.00 8.00 0.00 0.25
|
||||
|
||||
###############################################################
|
||||
STATISTIC --- 2010-01-08 16:42:33
|
||||
chisq = 202.118575, NDF = 200, chisq/NDF = 1.01059287
|
@ -1,57 +0,0 @@
|
||||
Test libZFRelaxation random fields Lorentzian broadened, asymmetry plot, PSI-BIN data file
|
||||
###############################################################
|
||||
FITPARAMETER
|
||||
# No Name Value Step Pos_Error Boundaries
|
||||
1 precFrac 0.666667 0 none 0 1
|
||||
2 field 171.20 0.55 none 0 none
|
||||
3 lambdaT 1.303 0.061 none 0 none
|
||||
4 lambdaL 0.099 0.012 none 0 none
|
||||
|
||||
5 asymmetry 0.1429 0.0039 none 0 0.3
|
||||
6 alpha 0.8209 0.0027 none
|
||||
|
||||
###############################################################
|
||||
THEORY
|
||||
asymmetry 5
|
||||
userFcn libZFRelaxation ZFMagExp 1 fun1 3 4
|
||||
|
||||
###############################################################
|
||||
FUNCTIONS
|
||||
fun1 = par2 * gamma_mu
|
||||
|
||||
###############################################################
|
||||
RUN data/deltat_pta_gps_4255 PIM3 PSI PSI-BIN (name beamline institute data-file-format)
|
||||
fittype 2 (asymmetry fit)
|
||||
alpha 6
|
||||
map 0 0 0 0 0 0 0 0 0 0
|
||||
forward 2
|
||||
backward 1
|
||||
t0 125 128
|
||||
data 128 8097 131 8112
|
||||
background 45 113 40 117
|
||||
fit 0 8
|
||||
packing 30
|
||||
|
||||
###############################################################
|
||||
COMMANDS
|
||||
MINIMIZE
|
||||
HESSE
|
||||
SAVE
|
||||
|
||||
###############################################################
|
||||
FOURIER
|
||||
units Gauss # units either 'Gauss', 'MHz', or 'Mc/s'
|
||||
fourier_power 8
|
||||
apodization NONE # NONE, WEAK, MEDIUM, STRONG
|
||||
plot POWER # REAL, IMAG, REAL_AND_IMAG, POWER, PHASE
|
||||
phase 0
|
||||
range 0 500
|
||||
|
||||
###############################################################
|
||||
PLOT 2 (asymmetry plot)
|
||||
runs 1
|
||||
range 0 4 -0.25 0.25
|
||||
|
||||
###############################################################
|
||||
STATISTIC --- 2011-05-09 14:56:44
|
||||
chisq = 470.01394974044985, NDF = 208, chisq/NDF = 2.2596824506752395
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -1,55 +0,0 @@
|
||||
MgB12H12 No2 ZF T=150
|
||||
###############################################################
|
||||
FITPARAMETER
|
||||
# Nr. Name Value Step Pos_Error Boundaries
|
||||
1 alpha 1.0 0.0 none 0 2
|
||||
2 asy 0.17503 -0.00081 0.00083 0 0.33
|
||||
3 rate 0.1649 -0.0016 0.0016 0 none
|
||||
4 beta 0.892 -0.016 0.016 0.5 2
|
||||
|
||||
###############################################################
|
||||
THEORY
|
||||
asymmetry 2
|
||||
generExpo 3 4 (rate exponent)
|
||||
|
||||
###############################################################
|
||||
#FUNCTIONS
|
||||
|
||||
###############################################################
|
||||
RUN data/000100 XXXX TRIUMF MUD (name beamline institute data-file-format)
|
||||
fittype 2 (asymmetry fit)
|
||||
alpha 1
|
||||
map 0 0 0 0 0 0 0 0 0 0 0
|
||||
forward 1
|
||||
backward 2
|
||||
background 79 391 80 409
|
||||
data 438 12785 436 12787
|
||||
t0 432 431
|
||||
fit 0 8
|
||||
packing 100
|
||||
|
||||
###############################################################
|
||||
COMMANDS
|
||||
MINIMIZE
|
||||
MINOS
|
||||
#HESSE
|
||||
SAVE
|
||||
|
||||
###############################################################
|
||||
FOURIER
|
||||
units Gauss # units either 'Gauss', 'MHz', or 'Mc/s'
|
||||
fourier_power 12
|
||||
apodization NONE # NONE, WEAK, MEDIUM, STRONG
|
||||
plot POWER # REAL, IMAG, REAL_AND_IMAG, POWER, PHASE
|
||||
phase 8
|
||||
#range_for_phase_correction 50.0 70.0
|
||||
range 0 200
|
||||
|
||||
###############################################################
|
||||
PLOT 2 (asymmetry plot)
|
||||
runs 1
|
||||
range 0 8 0 0.25
|
||||
|
||||
###############################################################
|
||||
STATISTIC --- 2011-02-06 15:03:19
|
||||
chisq = 133.92904274288378, NDF = 99, chisq/NDF = 1.3528186135644826
|
@ -1,59 +0,0 @@
|
||||
Test asymmetry plot, PSI-BIN data file
|
||||
###############################################################
|
||||
FITPARAMETER
|
||||
# Nr. Name Value Step Pos_Error Boundaries
|
||||
1 alpha 0.954734 0 none 0 2
|
||||
2 asy 0.262387 0.00144114 none 0 0.33
|
||||
3 phase -0.0892349 0.327999 none
|
||||
4 field 97.9113 0.0550109 none 0 none
|
||||
5 rate 0.31646 0.00441463 none 0 none
|
||||
|
||||
###############################################################
|
||||
THEORY
|
||||
asymmetry 2
|
||||
simplExpo 5 (rate)
|
||||
TFieldCos 3 fun1 (phase frequency)
|
||||
|
||||
###############################################################
|
||||
FUNCTIONS
|
||||
fun1 = par4 * gamma_mu
|
||||
|
||||
###############################################################
|
||||
RUN data/deltat_pta_gpd_0423 PIE1 PSI PSI-BIN (name beamline institute data-file-format)
|
||||
fittype 2 (asymmetry fit)
|
||||
alpha 1
|
||||
map 0 0 0 0 0 0 0 0 0 0 0
|
||||
forward 2
|
||||
backward 1
|
||||
background 61 184 57 145
|
||||
data 207 7994 167 8009
|
||||
t0 202 162
|
||||
fit 0.00 8.00
|
||||
packing 18
|
||||
|
||||
###############################################################
|
||||
COMMANDS
|
||||
MINIMIZE
|
||||
#MINOS
|
||||
HESSE
|
||||
SAVE
|
||||
|
||||
###############################################################
|
||||
FOURIER
|
||||
units Gauss # units either 'Gauss', 'MHz', or 'Mc/s'
|
||||
fourier_power 12
|
||||
apodization NONE # NONE, WEAK, MEDIUM, STRONG
|
||||
plot POWER # REAL, IMAG, REAL_AND_IMAG, POWER, PHASE
|
||||
phase 8.50
|
||||
#range_for_phase_correction 50.0 70.0
|
||||
range 0.00 200.00
|
||||
|
||||
###############################################################
|
||||
PLOT 2 (asymmetry plot)
|
||||
runs 1
|
||||
range 0.00 8.00 -0.30 0.30
|
||||
view_packing 38
|
||||
|
||||
###############################################################
|
||||
STATISTIC --- 2010-05-26 21:27:41
|
||||
chisq = 545.990682, NDF = 351, chisq/NDF = 1.55552901
|
@ -1,74 +0,0 @@
|
||||
Temperature = 300 K, Magnetic Field = 20 Gauss, Sample = CAS
|
||||
###############################################################
|
||||
FITPARAMETER
|
||||
# No Name Value Step Pos_Error Boundaries
|
||||
1 zero 0 0 none
|
||||
2 phase 11.43 -0.35 0.34 0 100
|
||||
3 field 20.181 -0.028 0.028 0 none
|
||||
4 asym 0.1876 -0.0010 0.0010 0 0.3
|
||||
5 rate 0.1254 -0.0024 0.0024 0 100
|
||||
6 beta 1 0 none
|
||||
7 Norm_L 2863.3 -1.4 1.4
|
||||
8 BG_L 0.000000000047 -0.000000000047 0.009142577870 0 none
|
||||
9 Norm_R 2024.4 -1.1 1.2 0 none
|
||||
10 BG_R 0.0000 -0.0000 0.0017 0 none
|
||||
11 relPhase 172.23 -0.37 0.36 0 none
|
||||
|
||||
###############################################################
|
||||
THEORY
|
||||
asymmetry 4
|
||||
generExpo 5 6 (rate exponent)
|
||||
TFieldCos fun1 fun2 (phase frequency)
|
||||
|
||||
###############################################################
|
||||
FUNCTIONS
|
||||
fun1 = par2 + map1
|
||||
fun2 = gamma_mu * par3
|
||||
|
||||
###############################################################
|
||||
RUN data/32482 XXXX ISIS NEXUS (name beamline institute data-file-format)
|
||||
fittype 0 (single histogram fit)
|
||||
norm 7
|
||||
backgr.fit 8
|
||||
lifetimecorrection
|
||||
map 1 0 0 0 0 0 0 0 0 0
|
||||
forward 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
|
||||
data 40 1500
|
||||
fit 0.2 20
|
||||
packing 1
|
||||
|
||||
RUN data/32482 XXXX ISIS NEXUS (name beamline institute data-file-format)
|
||||
fittype 0 (single histogram fit)
|
||||
norm 9
|
||||
backgr.fit 10
|
||||
lifetimecorrection
|
||||
map 11 0 0 0 0 0 0 0 0 0
|
||||
forward 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
|
||||
data 40 1500
|
||||
fit 0.2 20
|
||||
packing 1
|
||||
|
||||
###############################################################
|
||||
COMMANDS
|
||||
MINIMIZE
|
||||
MINOS
|
||||
SAVE
|
||||
|
||||
###############################################################
|
||||
FOURIER
|
||||
units Gauss # units either 'Gauss', 'MHz', or 'Mc/s'
|
||||
fourier_power 10
|
||||
apodization STRONG # NONE, WEAK, MEDIUM, STRONG
|
||||
plot REAL # REAL, IMAG, REAL_AND_IMAG, POWER, PHASE
|
||||
range 0 100
|
||||
phase par2
|
||||
|
||||
###############################################################
|
||||
PLOT 0 (single histo plot)
|
||||
runs 1 2
|
||||
range 0 20 -0.3 0.3
|
||||
view_packing 5
|
||||
|
||||
###############################################################
|
||||
STATISTIC --- 2011-04-08 10:54:21
|
||||
chisq = 3051.73767, NDF = 2465, chisq/NDF = 1.23802745
|
@ -1,47 +0,0 @@
|
||||
LSCO (492-494) ZFC T=4.59(K),E=12.49(keV),B=~28(G)/0.89(A),Tr/Sa=15.02/1.63(kV),RAL-RAR=-0.08(kV),RAT-RAB=0.08(kV)
|
||||
###############################################################
|
||||
FITPARAMETER
|
||||
# No Name Value Step Pos_Error Boundaries
|
||||
1 phase 15.2 -1.6 1.6 0 100
|
||||
2 freq 0.3733 -0.0024 0.0024 0 300
|
||||
3 asym 0.1196 -0.0037 0.0039 0 0.3
|
||||
4 rate 0.142 -0.017 0.018 0 100
|
||||
5 Norm_L 432.87 -0.72 0.72
|
||||
6 BG_L 29.38 -0.10 0.10
|
||||
|
||||
###############################################################
|
||||
THEORY
|
||||
asymmetry 3
|
||||
simplExpo 4 (rate)
|
||||
TFieldCos 1 2 (phase frequency)
|
||||
|
||||
###############################################################
|
||||
#FUNCTIONS
|
||||
|
||||
###############################################################
|
||||
RUN data/lem08_his_2279 MUE4 PSI ROOT-NPP (name beamline institute data-file-format)
|
||||
fittype 0 (single histogram fit)
|
||||
norm 5
|
||||
backgr.fit 6
|
||||
lifetimecorrection
|
||||
map 0 0 0 0 0 0 0 0 0 0
|
||||
forward 1
|
||||
data 3419 66000
|
||||
t0 3419
|
||||
fit 0.1 10
|
||||
packing 250
|
||||
|
||||
###############################################################
|
||||
COMMANDS
|
||||
MINIMIZE
|
||||
MINOS
|
||||
SAVE
|
||||
|
||||
###############################################################
|
||||
PLOT 0 (single histo plot)
|
||||
runs 1
|
||||
range 0 8 -0.3 0.3
|
||||
|
||||
###############################################################
|
||||
STATISTIC --- 2011-02-06 14:52:54
|
||||
chisq = 248.83532814099809, NDF = 197, chisq/NDF = 1.2631234931015132
|
Reference in New Issue
Block a user