Propagated changes into development tree.
This commit is contained in:
parent
477f943b61
commit
f409ca47b8
36
src/external/MuSRFitGUI/devel/MSR.pm
vendored
36
src/external/MuSRFitGUI/devel/MSR.pm
vendored
@ -228,7 +228,6 @@ sub CreateMSR {
|
|||||||
$RUN_Line = MSR::RUNFileNameAuto($RUN,$YEAR,$BeamLine);
|
$RUN_Line = MSR::RUNFileNameAuto($RUN,$YEAR,$BeamLine);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
$Type_Line = "fittype 2";
|
$Type_Line = "fittype 2";
|
||||||
$PLT = 2;
|
$PLT = 2;
|
||||||
$Hist_Lines =
|
$Hist_Lines =
|
||||||
@ -236,6 +235,7 @@ sub CreateMSR {
|
|||||||
|
|
||||||
$Bg_Line = "background";
|
$Bg_Line = "background";
|
||||||
$Data_Line = "data";
|
$Data_Line = "data";
|
||||||
|
$T0_Line = "t0";
|
||||||
$NHist=1;
|
$NHist=1;
|
||||||
foreach $Hist (@Hists) {
|
foreach $Hist (@Hists) {
|
||||||
foreach ("t0","Bg1","Bg2","Data1","Data2") {
|
foreach ("t0","Bg1","Bg2","Data1","Data2") {
|
||||||
@ -247,12 +247,21 @@ sub CreateMSR {
|
|||||||
}
|
}
|
||||||
$Bg_Line = $Bg_Line." ".$All{"Bg1$NHist"}." ".$All{"Bg2$NHist"};
|
$Bg_Line = $Bg_Line." ".$All{"Bg1$NHist"}." ".$All{"Bg2$NHist"};
|
||||||
$Data_Line =$Data_Line." ".$All{"Data1$NHist"}." ".$All{"Data2$NHist"};
|
$Data_Line =$Data_Line." ".$All{"Data1$NHist"}." ".$All{"Data2$NHist"};
|
||||||
|
if ($All{"t0$NHist"} ne "") {
|
||||||
|
$T0_Line=$T0_Line." ".$All{"Data1$NHist"};
|
||||||
|
}
|
||||||
$NHist++;
|
$NHist++;
|
||||||
}
|
}
|
||||||
|
|
||||||
$FRANGE_Line = "fit TINI TFIN";
|
$FRANGE_Line = "fit TINI TFIN";
|
||||||
$PAC_Line = "packing BINNING";
|
$PAC_Line = "packing BINNING";
|
||||||
|
|
||||||
|
|
||||||
|
if ($T0_Line ne "t0") {
|
||||||
|
print "I am here\n";
|
||||||
|
$Data_Line= $Data_Line."\n".$T0_Line;
|
||||||
|
}
|
||||||
|
|
||||||
$Single_RUN =
|
$Single_RUN =
|
||||||
"$RUN_Line\n$Type_Line\n$Alpha_Line$Hist_Lines\n$Bg_Line\n$Data_Line\n$MAP_Line\n$FRANGE_Line\n$PAC_Line\n\n";
|
"$RUN_Line\n$Type_Line\n$Alpha_Line$Hist_Lines\n$Bg_Line\n$Data_Line\n$MAP_Line\n$FRANGE_Line\n$PAC_Line\n\n";
|
||||||
|
|
||||||
@ -566,9 +575,6 @@ sub CreateMSRSingleHist {
|
|||||||
# Also for each histogram in Single Histograms fits
|
# Also for each histogram in Single Histograms fits
|
||||||
# Also for Imaginaryand and Real for RRF fits
|
# Also for Imaginaryand and Real for RRF fits
|
||||||
|
|
||||||
|
|
||||||
# This part can be shifted before the RUNS loop
|
|
||||||
|
|
||||||
$RUN = $RUNS[ $iRun - 1 ];
|
$RUN = $RUNS[ $iRun - 1 ];
|
||||||
|
|
||||||
if ($All{"RUNSType"}) {
|
if ($All{"RUNSType"}) {
|
||||||
@ -577,21 +583,23 @@ sub CreateMSRSingleHist {
|
|||||||
$RUN_Line = MSR::RUNFileNameAuto($RUN,$YEAR,$BeamLine);
|
$RUN_Line = MSR::RUNFileNameAuto($RUN,$YEAR,$BeamLine);
|
||||||
}
|
}
|
||||||
|
|
||||||
# What kind of fit? 0 - Single Histogram, 2 - Asymmetry, 4 - RRF
|
|
||||||
$Type_Line = "fittype 0";
|
$Type_Line = "fittype 0";
|
||||||
$PLT = 0;
|
$PLT = 0;
|
||||||
$Hist_Lines = "forward HIST";
|
$Hist_Lines = "forward HIST";
|
||||||
$Bg_Line = $EMPTY;
|
$Bg_Line = $EMPTY;
|
||||||
$Data_Line = "data 3419 63000";
|
$Data_Line = "data";
|
||||||
|
|
||||||
# Omit background and data lines for LTG,GPS and Dolly
|
foreach ("t0","Bg1","Bg2","Data1","Data2") {
|
||||||
if ( $BeamLine eq "Dolly" ) {
|
$Name = "$_$Hist";
|
||||||
$Bg_Line = "background 50 250 50 250";
|
# If empty fill with defaults
|
||||||
$Data_Line ="data 297 8000 294 8000";
|
if ($All{$Name} eq "") {
|
||||||
} elsif ( $BeamLine eq "GPS" ) {
|
$All{$Name}=MSR::T0BgData($_,$Hist,$BeamLine);
|
||||||
$Bg_Line = "background 40 120 40 120";
|
}
|
||||||
$Data_Line = "data 135 8000 135 8000";
|
}
|
||||||
# $Data_Line = "data 135 8000 135 8000";
|
$Bg_Line = $Bg_Line." ".$All{"Bg1$Hist"}." ".$All{"Bg2$Hist"};
|
||||||
|
$Data_Line =$Data_Line." ".$All{"Data1$Hist"}." ".$All{"Data2$Hist"};
|
||||||
|
if ($All{"t0$Hist"} ne "") {
|
||||||
|
$Data_Line=$Data_Line."\nt0 ".$All{"t0$Hist"};
|
||||||
}
|
}
|
||||||
|
|
||||||
# $MAP_Line = "map 0 0 0 0 0 0 0 0 0 0";
|
# $MAP_Line = "map 0 0 0 0 0 0 0 0 0 0";
|
||||||
|
436
src/external/MuSRFitGUI/devel/MuSRFit.pl
vendored
436
src/external/MuSRFitGUI/devel/MuSRFit.pl
vendored
@ -1,6 +1,6 @@
|
|||||||
# Form implementation generated from reading ui file 'MuSRFit.ui'
|
# Form implementation generated from reading ui file 'MuSRFit.ui'
|
||||||
#
|
#
|
||||||
# Created: Mon Sep 14 13:29:17 2009
|
# Created: Thu Sep 17 17:13:26 2009
|
||||||
# by: The PerlQt User Interface Compiler (puic)
|
# by: The PerlQt User Interface Compiler (puic)
|
||||||
#
|
#
|
||||||
# WARNING! All changes made in this file will be lost!
|
# WARNING! All changes made in this file will be lost!
|
||||||
@ -74,16 +74,24 @@ use Qt::attributes qw(
|
|||||||
PlotMSR_2
|
PlotMSR_2
|
||||||
go_2
|
go_2
|
||||||
TabPage
|
TabPage
|
||||||
|
FitTextOutput
|
||||||
Minimization
|
Minimization
|
||||||
MINIMIZE
|
MINIMIZE
|
||||||
MIGRAD
|
MIGRAD
|
||||||
SIMPLEX
|
SIMPLEX
|
||||||
ErrorCalc
|
PlotOptions
|
||||||
HESSE
|
textLabel1_4
|
||||||
MINOS
|
Xi
|
||||||
|
Xf
|
||||||
|
textLabel1_4_2
|
||||||
|
Yi
|
||||||
|
Yf
|
||||||
|
ltc
|
||||||
go
|
go
|
||||||
PlotMSR
|
PlotMSR
|
||||||
FitTextOutput
|
ErrorCalc
|
||||||
|
MINOS
|
||||||
|
HESSE
|
||||||
SharingPahe
|
SharingPahe
|
||||||
buttonGroupSharing
|
buttonGroupSharing
|
||||||
SharingComp1
|
SharingComp1
|
||||||
@ -183,7 +191,7 @@ use Qt::attributes qw(
|
|||||||
textLabel2_2
|
textLabel2_2
|
||||||
TheoryBlock
|
TheoryBlock
|
||||||
CParamsCombo
|
CParamsCombo
|
||||||
textLabel1_4
|
textLabel1_4_3
|
||||||
ConstraintLine
|
ConstraintLine
|
||||||
AddConstraint
|
AddConstraint
|
||||||
textLabel2_2_3
|
textLabel2_2_3
|
||||||
@ -596,7 +604,6 @@ sub NEW
|
|||||||
musrfit_tabs->setSizePolicy( Qt::SizePolicy(7, 7, 1, 1, musrfit_tabs->sizePolicy()->hasHeightForWidth()) );
|
musrfit_tabs->setSizePolicy( Qt::SizePolicy(7, 7, 1, 1, musrfit_tabs->sizePolicy()->hasHeightForWidth()) );
|
||||||
musrfit_tabs->setMinimumSize( Qt::Size(560, 400) );
|
musrfit_tabs->setMinimumSize( Qt::Size(560, 400) );
|
||||||
musrfit_tabs->setMaximumSize( Qt::Size(95, 32767) );
|
musrfit_tabs->setMaximumSize( Qt::Size(95, 32767) );
|
||||||
musrfit_tabs->setTabShape( &Qt::TabWidget::Rounded() );
|
|
||||||
|
|
||||||
RUNSPage = Qt::Widget(musrfit_tabs, "RUNSPage");
|
RUNSPage = Qt::Widget(musrfit_tabs, "RUNSPage");
|
||||||
|
|
||||||
@ -975,8 +982,12 @@ sub NEW
|
|||||||
|
|
||||||
TabPage = Qt::Widget(musrfit_tabs, "TabPage");
|
TabPage = Qt::Widget(musrfit_tabs, "TabPage");
|
||||||
|
|
||||||
|
FitTextOutput = Qt::TextEdit(TabPage, "FitTextOutput");
|
||||||
|
FitTextOutput->setGeometry( Qt::Rect(5, 130, 545, 230) );
|
||||||
|
FitTextOutput->setOverwriteMode( 1 );
|
||||||
|
|
||||||
Minimization = Qt::ButtonGroup(TabPage, "Minimization");
|
Minimization = Qt::ButtonGroup(TabPage, "Minimization");
|
||||||
Minimization->setGeometry( Qt::Rect(6, 1, 200, 125) );
|
Minimization->setGeometry( Qt::Rect(7, 1, 115, 128) );
|
||||||
Minimization->setExclusive( 1 );
|
Minimization->setExclusive( 1 );
|
||||||
Minimization->setRadioButtonExclusive( 1 );
|
Minimization->setRadioButtonExclusive( 1 );
|
||||||
Minimization->setProperty( "selectedId", Qt::Variant(int(0) ) );
|
Minimization->setProperty( "selectedId", Qt::Variant(int(0) ) );
|
||||||
@ -991,43 +1002,78 @@ sub NEW
|
|||||||
SIMPLEX = Qt::RadioButton(Minimization, "SIMPLEX");
|
SIMPLEX = Qt::RadioButton(Minimization, "SIMPLEX");
|
||||||
SIMPLEX->setGeometry( Qt::Rect(16, 88, 83, 22) );
|
SIMPLEX->setGeometry( Qt::Rect(16, 88, 83, 22) );
|
||||||
|
|
||||||
ErrorCalc = Qt::ButtonGroup(TabPage, "ErrorCalc");
|
PlotOptions = Qt::ButtonGroup(TabPage, "PlotOptions");
|
||||||
ErrorCalc->setGeometry( Qt::Rect(208, 1, 200, 125) );
|
PlotOptions->setGeometry( Qt::Rect(241, 1, 196, 128) );
|
||||||
ErrorCalc->setAlignment( int(&Qt::ButtonGroup::AlignTop) );
|
PlotOptions->setAlignment( int(&Qt::ButtonGroup::AlignTop) );
|
||||||
ErrorCalc->setExclusive( 1 );
|
PlotOptions->setExclusive( 1 );
|
||||||
ErrorCalc->setRadioButtonExclusive( 1 );
|
PlotOptions->setRadioButtonExclusive( 1 );
|
||||||
ErrorCalc->setProperty( "selectedId", Qt::Variant(int(0) ) );
|
PlotOptions->setProperty( "selectedId", Qt::Variant(int(-1) ) );
|
||||||
|
|
||||||
HESSE = Qt::RadioButton(ErrorCalc, "HESSE");
|
my $LayoutWidget_5 = Qt::Widget(PlotOptions, '$LayoutWidget_5');
|
||||||
HESSE->setGeometry( Qt::Rect(19, 30, 69, 22) );
|
$LayoutWidget_5->setGeometry( Qt::Rect(3, 18, 190, 94) );
|
||||||
HESSE->setChecked( 1 );
|
my $layout27_2 = Qt::VBoxLayout($LayoutWidget_5, 11, 6, '$layout27_2');
|
||||||
|
|
||||||
MINOS = Qt::RadioButton(ErrorCalc, "MINOS");
|
my $layout25 = Qt::HBoxLayout(undef, 0, 6, '$layout25');
|
||||||
MINOS->setGeometry( Qt::Rect(19, 59, 69, 22) );
|
|
||||||
|
|
||||||
my $LayoutWidget_5 = Qt::Widget(TabPage, '$LayoutWidget_5');
|
textLabel1_4 = Qt::Label($LayoutWidget_5, "textLabel1_4");
|
||||||
$LayoutWidget_5->setGeometry( Qt::Rect(418, 5, 125, 120) );
|
$layout25->addWidget(textLabel1_4);
|
||||||
my $layout28 = Qt::VBoxLayout($LayoutWidget_5, 11, 6, '$layout28');
|
|
||||||
|
|
||||||
go = Qt::PushButton($LayoutWidget_5, "go");
|
Xi = Qt::LineEdit($LayoutWidget_5, "Xi");
|
||||||
|
$layout25->addWidget(Xi);
|
||||||
|
|
||||||
|
Xf = Qt::LineEdit($LayoutWidget_5, "Xf");
|
||||||
|
$layout25->addWidget(Xf);
|
||||||
|
$layout27_2->addLayout($layout25);
|
||||||
|
|
||||||
|
my $layout26 = Qt::HBoxLayout(undef, 0, 6, '$layout26');
|
||||||
|
|
||||||
|
textLabel1_4_2 = Qt::Label($LayoutWidget_5, "textLabel1_4_2");
|
||||||
|
$layout26->addWidget(textLabel1_4_2);
|
||||||
|
|
||||||
|
Yi = Qt::LineEdit($LayoutWidget_5, "Yi");
|
||||||
|
$layout26->addWidget(Yi);
|
||||||
|
|
||||||
|
Yf = Qt::LineEdit($LayoutWidget_5, "Yf");
|
||||||
|
$layout26->addWidget(Yf);
|
||||||
|
$layout27_2->addLayout($layout26);
|
||||||
|
|
||||||
|
ltc = Qt::CheckBox($LayoutWidget_5, "ltc");
|
||||||
|
ltc->setChecked( 1 );
|
||||||
|
$layout27_2->addWidget(ltc);
|
||||||
|
|
||||||
|
my $LayoutWidget_6 = Qt::Widget(TabPage, '$LayoutWidget_6');
|
||||||
|
$LayoutWidget_6->setGeometry( Qt::Rect(438, 1, 115, 125) );
|
||||||
|
my $layout28 = Qt::VBoxLayout($LayoutWidget_6, 11, 6, '$layout28');
|
||||||
|
|
||||||
|
go = Qt::PushButton($LayoutWidget_6, "go");
|
||||||
go->setSizePolicy( Qt::SizePolicy(7, 0, 1, 0, go->sizePolicy()->hasHeightForWidth()) );
|
go->setSizePolicy( Qt::SizePolicy(7, 0, 1, 0, go->sizePolicy()->hasHeightForWidth()) );
|
||||||
go->setMinimumSize( Qt::Size(95, 30) );
|
go->setMinimumSize( Qt::Size(85, 30) );
|
||||||
go->setMaximumSize( Qt::Size(95, 30) );
|
go->setMaximumSize( Qt::Size(95, 30) );
|
||||||
go->setAutoDefault( 0 );
|
go->setAutoDefault( 0 );
|
||||||
go->setDefault( 1 );
|
go->setDefault( 1 );
|
||||||
$layout28->addWidget(go);
|
$layout28->addWidget(go);
|
||||||
|
|
||||||
PlotMSR = Qt::PushButton($LayoutWidget_5, "PlotMSR");
|
PlotMSR = Qt::PushButton($LayoutWidget_6, "PlotMSR");
|
||||||
PlotMSR->setSizePolicy( Qt::SizePolicy(7, 0, 1, 0, PlotMSR->sizePolicy()->hasHeightForWidth()) );
|
PlotMSR->setSizePolicy( Qt::SizePolicy(7, 0, 1, 0, PlotMSR->sizePolicy()->hasHeightForWidth()) );
|
||||||
PlotMSR->setMinimumSize( Qt::Size(95, 30) );
|
PlotMSR->setMinimumSize( Qt::Size(85, 30) );
|
||||||
PlotMSR->setMaximumSize( Qt::Size(95, 30) );
|
PlotMSR->setMaximumSize( Qt::Size(95, 30) );
|
||||||
PlotMSR->setAutoDefault( 0 );
|
PlotMSR->setAutoDefault( 0 );
|
||||||
PlotMSR->setDefault( 1 );
|
PlotMSR->setDefault( 1 );
|
||||||
$layout28->addWidget(PlotMSR);
|
$layout28->addWidget(PlotMSR);
|
||||||
|
|
||||||
FitTextOutput = Qt::TextEdit(TabPage, "FitTextOutput");
|
ErrorCalc = Qt::ButtonGroup(TabPage, "ErrorCalc");
|
||||||
FitTextOutput->setGeometry( Qt::Rect(5, 130, 545, 230) );
|
ErrorCalc->setGeometry( Qt::Rect(128, 1, 107, 128) );
|
||||||
FitTextOutput->setOverwriteMode( 1 );
|
ErrorCalc->setAlignment( int(&Qt::ButtonGroup::AlignTop | &Qt::ButtonGroup::AlignLeft) );
|
||||||
|
ErrorCalc->setExclusive( 1 );
|
||||||
|
ErrorCalc->setRadioButtonExclusive( 1 );
|
||||||
|
ErrorCalc->setProperty( "selectedId", Qt::Variant(int(1) ) );
|
||||||
|
|
||||||
|
MINOS = Qt::RadioButton(ErrorCalc, "MINOS");
|
||||||
|
MINOS->setGeometry( Qt::Rect(19, 59, 69, 22) );
|
||||||
|
|
||||||
|
HESSE = Qt::RadioButton(ErrorCalc, "HESSE");
|
||||||
|
HESSE->setGeometry( Qt::Rect(19, 30, 69, 22) );
|
||||||
|
HESSE->setChecked( 1 );
|
||||||
musrfit_tabs->insertTab( TabPage, "" );
|
musrfit_tabs->insertTab( TabPage, "" );
|
||||||
|
|
||||||
SharingPahe = Qt::Widget(musrfit_tabs, "SharingPahe");
|
SharingPahe = Qt::Widget(musrfit_tabs, "SharingPahe");
|
||||||
@ -1044,47 +1090,47 @@ sub NEW
|
|||||||
SharingComp1->setSizePolicy( Qt::SizePolicy(5, 3, 0, 0, SharingComp1->sizePolicy()->hasHeightForWidth()) );
|
SharingComp1->setSizePolicy( Qt::SizePolicy(5, 3, 0, 0, SharingComp1->sizePolicy()->hasHeightForWidth()) );
|
||||||
SharingComp1->setAlignment( int(&Qt::ButtonGroup::AlignLeft) );
|
SharingComp1->setAlignment( int(&Qt::ButtonGroup::AlignLeft) );
|
||||||
|
|
||||||
my $LayoutWidget_6 = Qt::Widget(SharingComp1, '$LayoutWidget_6');
|
my $LayoutWidget_7 = Qt::Widget(SharingComp1, '$LayoutWidget_7');
|
||||||
$LayoutWidget_6->setGeometry( Qt::Rect(40, 60, 81, 266) );
|
$LayoutWidget_7->setGeometry( Qt::Rect(40, 60, 81, 266) );
|
||||||
my $layout14 = Qt::VBoxLayout($LayoutWidget_6, 0, 0, '$layout14');
|
my $layout14 = Qt::VBoxLayout($LayoutWidget_7, 0, 0, '$layout14');
|
||||||
|
|
||||||
ShParam_1_1 = Qt::CheckBox($LayoutWidget_6, "ShParam_1_1");
|
ShParam_1_1 = Qt::CheckBox($LayoutWidget_7, "ShParam_1_1");
|
||||||
$layout14->addWidget(ShParam_1_1);
|
$layout14->addWidget(ShParam_1_1);
|
||||||
|
|
||||||
ShParam_1_2 = Qt::CheckBox($LayoutWidget_6, "ShParam_1_2");
|
ShParam_1_2 = Qt::CheckBox($LayoutWidget_7, "ShParam_1_2");
|
||||||
$layout14->addWidget(ShParam_1_2);
|
$layout14->addWidget(ShParam_1_2);
|
||||||
|
|
||||||
ShParam_1_3 = Qt::CheckBox($LayoutWidget_6, "ShParam_1_3");
|
ShParam_1_3 = Qt::CheckBox($LayoutWidget_7, "ShParam_1_3");
|
||||||
$layout14->addWidget(ShParam_1_3);
|
$layout14->addWidget(ShParam_1_3);
|
||||||
|
|
||||||
ShParam_1_4 = Qt::CheckBox($LayoutWidget_6, "ShParam_1_4");
|
ShParam_1_4 = Qt::CheckBox($LayoutWidget_7, "ShParam_1_4");
|
||||||
$layout14->addWidget(ShParam_1_4);
|
$layout14->addWidget(ShParam_1_4);
|
||||||
|
|
||||||
ShParam_1_5 = Qt::CheckBox($LayoutWidget_6, "ShParam_1_5");
|
ShParam_1_5 = Qt::CheckBox($LayoutWidget_7, "ShParam_1_5");
|
||||||
ShParam_1_5->setEnabled( 0 );
|
ShParam_1_5->setEnabled( 0 );
|
||||||
ShParam_1_5->setPaletteBackgroundColor( Qt::Color(234, 233, 232) );
|
ShParam_1_5->setPaletteBackgroundColor( Qt::Color(234, 233, 232) );
|
||||||
ShParam_1_5->setTristate( 0 );
|
ShParam_1_5->setTristate( 0 );
|
||||||
$layout14->addWidget(ShParam_1_5);
|
$layout14->addWidget(ShParam_1_5);
|
||||||
|
|
||||||
ShParam_1_6 = Qt::CheckBox($LayoutWidget_6, "ShParam_1_6");
|
ShParam_1_6 = Qt::CheckBox($LayoutWidget_7, "ShParam_1_6");
|
||||||
ShParam_1_6->setEnabled( 0 );
|
ShParam_1_6->setEnabled( 0 );
|
||||||
ShParam_1_6->setPaletteBackgroundColor( Qt::Color(234, 233, 232) );
|
ShParam_1_6->setPaletteBackgroundColor( Qt::Color(234, 233, 232) );
|
||||||
ShParam_1_6->setTristate( 0 );
|
ShParam_1_6->setTristate( 0 );
|
||||||
$layout14->addWidget(ShParam_1_6);
|
$layout14->addWidget(ShParam_1_6);
|
||||||
|
|
||||||
ShParam_1_7 = Qt::CheckBox($LayoutWidget_6, "ShParam_1_7");
|
ShParam_1_7 = Qt::CheckBox($LayoutWidget_7, "ShParam_1_7");
|
||||||
ShParam_1_7->setEnabled( 0 );
|
ShParam_1_7->setEnabled( 0 );
|
||||||
ShParam_1_7->setPaletteBackgroundColor( Qt::Color(234, 233, 232) );
|
ShParam_1_7->setPaletteBackgroundColor( Qt::Color(234, 233, 232) );
|
||||||
ShParam_1_7->setTristate( 0 );
|
ShParam_1_7->setTristate( 0 );
|
||||||
$layout14->addWidget(ShParam_1_7);
|
$layout14->addWidget(ShParam_1_7);
|
||||||
|
|
||||||
ShParam_1_8 = Qt::CheckBox($LayoutWidget_6, "ShParam_1_8");
|
ShParam_1_8 = Qt::CheckBox($LayoutWidget_7, "ShParam_1_8");
|
||||||
ShParam_1_8->setEnabled( 0 );
|
ShParam_1_8->setEnabled( 0 );
|
||||||
ShParam_1_8->setPaletteBackgroundColor( Qt::Color(234, 233, 232) );
|
ShParam_1_8->setPaletteBackgroundColor( Qt::Color(234, 233, 232) );
|
||||||
ShParam_1_8->setTristate( 0 );
|
ShParam_1_8->setTristate( 0 );
|
||||||
$layout14->addWidget(ShParam_1_8);
|
$layout14->addWidget(ShParam_1_8);
|
||||||
|
|
||||||
ShParam_1_9 = Qt::CheckBox($LayoutWidget_6, "ShParam_1_9");
|
ShParam_1_9 = Qt::CheckBox($LayoutWidget_7, "ShParam_1_9");
|
||||||
ShParam_1_9->setEnabled( 0 );
|
ShParam_1_9->setEnabled( 0 );
|
||||||
ShParam_1_9->setPaletteBackgroundColor( Qt::Color(234, 233, 232) );
|
ShParam_1_9->setPaletteBackgroundColor( Qt::Color(234, 233, 232) );
|
||||||
ShParam_1_9->setTristate( 0 );
|
ShParam_1_9->setTristate( 0 );
|
||||||
@ -1103,44 +1149,44 @@ sub NEW
|
|||||||
Comp2ShLabel->setGeometry( Qt::Rect(2, 30, 185, 20) );
|
Comp2ShLabel->setGeometry( Qt::Rect(2, 30, 185, 20) );
|
||||||
Comp2ShLabel->setPaletteBackgroundColor( Qt::Color(255, 255, 127) );
|
Comp2ShLabel->setPaletteBackgroundColor( Qt::Color(255, 255, 127) );
|
||||||
|
|
||||||
my $LayoutWidget_7 = Qt::Widget(SharingComp2, '$LayoutWidget_7');
|
my $LayoutWidget_8 = Qt::Widget(SharingComp2, '$LayoutWidget_8');
|
||||||
$LayoutWidget_7->setGeometry( Qt::Rect(40, 60, 81, 266) );
|
$LayoutWidget_8->setGeometry( Qt::Rect(40, 60, 81, 266) );
|
||||||
my $layout13 = Qt::VBoxLayout($LayoutWidget_7, 0, 0, '$layout13');
|
my $layout13 = Qt::VBoxLayout($LayoutWidget_8, 0, 0, '$layout13');
|
||||||
|
|
||||||
ShParam_2_1 = Qt::CheckBox($LayoutWidget_7, "ShParam_2_1");
|
ShParam_2_1 = Qt::CheckBox($LayoutWidget_8, "ShParam_2_1");
|
||||||
$layout13->addWidget(ShParam_2_1);
|
$layout13->addWidget(ShParam_2_1);
|
||||||
|
|
||||||
ShParam_2_2 = Qt::CheckBox($LayoutWidget_7, "ShParam_2_2");
|
ShParam_2_2 = Qt::CheckBox($LayoutWidget_8, "ShParam_2_2");
|
||||||
$layout13->addWidget(ShParam_2_2);
|
$layout13->addWidget(ShParam_2_2);
|
||||||
|
|
||||||
ShParam_2_3 = Qt::CheckBox($LayoutWidget_7, "ShParam_2_3");
|
ShParam_2_3 = Qt::CheckBox($LayoutWidget_8, "ShParam_2_3");
|
||||||
$layout13->addWidget(ShParam_2_3);
|
$layout13->addWidget(ShParam_2_3);
|
||||||
|
|
||||||
ShParam_2_4 = Qt::CheckBox($LayoutWidget_7, "ShParam_2_4");
|
ShParam_2_4 = Qt::CheckBox($LayoutWidget_8, "ShParam_2_4");
|
||||||
$layout13->addWidget(ShParam_2_4);
|
$layout13->addWidget(ShParam_2_4);
|
||||||
|
|
||||||
ShParam_2_5 = Qt::CheckBox($LayoutWidget_7, "ShParam_2_5");
|
ShParam_2_5 = Qt::CheckBox($LayoutWidget_8, "ShParam_2_5");
|
||||||
$layout13->addWidget(ShParam_2_5);
|
$layout13->addWidget(ShParam_2_5);
|
||||||
|
|
||||||
ShParam_2_6 = Qt::CheckBox($LayoutWidget_7, "ShParam_2_6");
|
ShParam_2_6 = Qt::CheckBox($LayoutWidget_8, "ShParam_2_6");
|
||||||
ShParam_2_6->setEnabled( 0 );
|
ShParam_2_6->setEnabled( 0 );
|
||||||
ShParam_2_6->setPaletteBackgroundColor( Qt::Color(234, 233, 232) );
|
ShParam_2_6->setPaletteBackgroundColor( Qt::Color(234, 233, 232) );
|
||||||
ShParam_2_6->setTristate( 0 );
|
ShParam_2_6->setTristate( 0 );
|
||||||
$layout13->addWidget(ShParam_2_6);
|
$layout13->addWidget(ShParam_2_6);
|
||||||
|
|
||||||
ShParam_2_7 = Qt::CheckBox($LayoutWidget_7, "ShParam_2_7");
|
ShParam_2_7 = Qt::CheckBox($LayoutWidget_8, "ShParam_2_7");
|
||||||
ShParam_2_7->setEnabled( 0 );
|
ShParam_2_7->setEnabled( 0 );
|
||||||
ShParam_2_7->setPaletteBackgroundColor( Qt::Color(234, 233, 232) );
|
ShParam_2_7->setPaletteBackgroundColor( Qt::Color(234, 233, 232) );
|
||||||
ShParam_2_7->setTristate( 0 );
|
ShParam_2_7->setTristate( 0 );
|
||||||
$layout13->addWidget(ShParam_2_7);
|
$layout13->addWidget(ShParam_2_7);
|
||||||
|
|
||||||
ShParam_2_8 = Qt::CheckBox($LayoutWidget_7, "ShParam_2_8");
|
ShParam_2_8 = Qt::CheckBox($LayoutWidget_8, "ShParam_2_8");
|
||||||
ShParam_2_8->setEnabled( 0 );
|
ShParam_2_8->setEnabled( 0 );
|
||||||
ShParam_2_8->setPaletteBackgroundColor( Qt::Color(234, 233, 232) );
|
ShParam_2_8->setPaletteBackgroundColor( Qt::Color(234, 233, 232) );
|
||||||
ShParam_2_8->setTristate( 0 );
|
ShParam_2_8->setTristate( 0 );
|
||||||
$layout13->addWidget(ShParam_2_8);
|
$layout13->addWidget(ShParam_2_8);
|
||||||
|
|
||||||
ShParam_2_9 = Qt::CheckBox($LayoutWidget_7, "ShParam_2_9");
|
ShParam_2_9 = Qt::CheckBox($LayoutWidget_8, "ShParam_2_9");
|
||||||
ShParam_2_9->setEnabled( 0 );
|
ShParam_2_9->setEnabled( 0 );
|
||||||
ShParam_2_9->setPaletteBackgroundColor( Qt::Color(234, 233, 232) );
|
ShParam_2_9->setPaletteBackgroundColor( Qt::Color(234, 233, 232) );
|
||||||
ShParam_2_9->setTristate( 0 );
|
ShParam_2_9->setTristate( 0 );
|
||||||
@ -1156,44 +1202,44 @@ sub NEW
|
|||||||
Comp3ShLabel->setGeometry( Qt::Rect(2, 30, 185, 20) );
|
Comp3ShLabel->setGeometry( Qt::Rect(2, 30, 185, 20) );
|
||||||
Comp3ShLabel->setPaletteBackgroundColor( Qt::Color(255, 255, 127) );
|
Comp3ShLabel->setPaletteBackgroundColor( Qt::Color(255, 255, 127) );
|
||||||
|
|
||||||
my $LayoutWidget_8 = Qt::Widget(SharingComp3, '$LayoutWidget_8');
|
my $LayoutWidget_9 = Qt::Widget(SharingComp3, '$LayoutWidget_9');
|
||||||
$LayoutWidget_8->setGeometry( Qt::Rect(41, 58, 81, 266) );
|
$LayoutWidget_9->setGeometry( Qt::Rect(41, 58, 81, 266) );
|
||||||
my $layout15 = Qt::VBoxLayout($LayoutWidget_8, 11, 6, '$layout15');
|
my $layout15 = Qt::VBoxLayout($LayoutWidget_9, 11, 6, '$layout15');
|
||||||
|
|
||||||
ShParam_3_1 = Qt::CheckBox($LayoutWidget_8, "ShParam_3_1");
|
ShParam_3_1 = Qt::CheckBox($LayoutWidget_9, "ShParam_3_1");
|
||||||
$layout15->addWidget(ShParam_3_1);
|
$layout15->addWidget(ShParam_3_1);
|
||||||
|
|
||||||
ShParam_3_2 = Qt::CheckBox($LayoutWidget_8, "ShParam_3_2");
|
ShParam_3_2 = Qt::CheckBox($LayoutWidget_9, "ShParam_3_2");
|
||||||
$layout15->addWidget(ShParam_3_2);
|
$layout15->addWidget(ShParam_3_2);
|
||||||
|
|
||||||
ShParam_3_3 = Qt::CheckBox($LayoutWidget_8, "ShParam_3_3");
|
ShParam_3_3 = Qt::CheckBox($LayoutWidget_9, "ShParam_3_3");
|
||||||
$layout15->addWidget(ShParam_3_3);
|
$layout15->addWidget(ShParam_3_3);
|
||||||
|
|
||||||
ShParam_3_4 = Qt::CheckBox($LayoutWidget_8, "ShParam_3_4");
|
ShParam_3_4 = Qt::CheckBox($LayoutWidget_9, "ShParam_3_4");
|
||||||
$layout15->addWidget(ShParam_3_4);
|
$layout15->addWidget(ShParam_3_4);
|
||||||
|
|
||||||
ShParam_3_5 = Qt::CheckBox($LayoutWidget_8, "ShParam_3_5");
|
ShParam_3_5 = Qt::CheckBox($LayoutWidget_9, "ShParam_3_5");
|
||||||
$layout15->addWidget(ShParam_3_5);
|
$layout15->addWidget(ShParam_3_5);
|
||||||
|
|
||||||
ShParam_3_6 = Qt::CheckBox($LayoutWidget_8, "ShParam_3_6");
|
ShParam_3_6 = Qt::CheckBox($LayoutWidget_9, "ShParam_3_6");
|
||||||
ShParam_3_6->setEnabled( 0 );
|
ShParam_3_6->setEnabled( 0 );
|
||||||
ShParam_3_6->setPaletteBackgroundColor( Qt::Color(234, 233, 232) );
|
ShParam_3_6->setPaletteBackgroundColor( Qt::Color(234, 233, 232) );
|
||||||
ShParam_3_6->setTristate( 0 );
|
ShParam_3_6->setTristate( 0 );
|
||||||
$layout15->addWidget(ShParam_3_6);
|
$layout15->addWidget(ShParam_3_6);
|
||||||
|
|
||||||
ShParam_3_7 = Qt::CheckBox($LayoutWidget_8, "ShParam_3_7");
|
ShParam_3_7 = Qt::CheckBox($LayoutWidget_9, "ShParam_3_7");
|
||||||
ShParam_3_7->setEnabled( 0 );
|
ShParam_3_7->setEnabled( 0 );
|
||||||
ShParam_3_7->setPaletteBackgroundColor( Qt::Color(234, 233, 232) );
|
ShParam_3_7->setPaletteBackgroundColor( Qt::Color(234, 233, 232) );
|
||||||
ShParam_3_7->setTristate( 0 );
|
ShParam_3_7->setTristate( 0 );
|
||||||
$layout15->addWidget(ShParam_3_7);
|
$layout15->addWidget(ShParam_3_7);
|
||||||
|
|
||||||
ShParam_3_8 = Qt::CheckBox($LayoutWidget_8, "ShParam_3_8");
|
ShParam_3_8 = Qt::CheckBox($LayoutWidget_9, "ShParam_3_8");
|
||||||
ShParam_3_8->setEnabled( 0 );
|
ShParam_3_8->setEnabled( 0 );
|
||||||
ShParam_3_8->setPaletteBackgroundColor( Qt::Color(234, 233, 232) );
|
ShParam_3_8->setPaletteBackgroundColor( Qt::Color(234, 233, 232) );
|
||||||
ShParam_3_8->setTristate( 0 );
|
ShParam_3_8->setTristate( 0 );
|
||||||
$layout15->addWidget(ShParam_3_8);
|
$layout15->addWidget(ShParam_3_8);
|
||||||
|
|
||||||
ShParam_3_9 = Qt::CheckBox($LayoutWidget_8, "ShParam_3_9");
|
ShParam_3_9 = Qt::CheckBox($LayoutWidget_9, "ShParam_3_9");
|
||||||
ShParam_3_9->setEnabled( 0 );
|
ShParam_3_9->setEnabled( 0 );
|
||||||
ShParam_3_9->setPaletteBackgroundColor( Qt::Color(234, 233, 232) );
|
ShParam_3_9->setPaletteBackgroundColor( Qt::Color(234, 233, 232) );
|
||||||
ShParam_3_9->setTristate( 0 );
|
ShParam_3_9->setTristate( 0 );
|
||||||
@ -1231,249 +1277,249 @@ sub NEW
|
|||||||
|
|
||||||
FittingPage = Qt::Widget(musrfit_tabs, "FittingPage");
|
FittingPage = Qt::Widget(musrfit_tabs, "FittingPage");
|
||||||
|
|
||||||
my $LayoutWidget_9 = Qt::Widget(FittingPage, '$LayoutWidget_9');
|
my $LayoutWidget_10 = Qt::Widget(FittingPage, '$LayoutWidget_10');
|
||||||
$LayoutWidget_9->setGeometry( Qt::Rect(5, 5, 545, 355) );
|
$LayoutWidget_10->setGeometry( Qt::Rect(5, 5, 545, 355) );
|
||||||
my $layout25 = Qt::VBoxLayout($LayoutWidget_9, 0, 6, '$layout25');
|
my $layout25_2 = Qt::VBoxLayout($LayoutWidget_10, 0, 6, '$layout25_2');
|
||||||
|
|
||||||
groupTitle = Qt::GroupBox($LayoutWidget_9, "groupTitle");
|
groupTitle = Qt::GroupBox($LayoutWidget_10, "groupTitle");
|
||||||
groupTitle->setMargin( int(5) );
|
groupTitle->setMargin( int(5) );
|
||||||
|
|
||||||
my $LayoutWidget_10 = Qt::Widget(groupTitle, '$LayoutWidget_10');
|
my $LayoutWidget_11 = Qt::Widget(groupTitle, '$LayoutWidget_11');
|
||||||
$LayoutWidget_10->setGeometry( Qt::Rect(6, 8, 515, 100) );
|
$LayoutWidget_11->setGeometry( Qt::Rect(6, 8, 515, 100) );
|
||||||
my $layout25_2 = Qt::VBoxLayout($LayoutWidget_10, 11, 6, '$layout25_2');
|
my $layout25_3 = Qt::VBoxLayout($LayoutWidget_11, 11, 6, '$layout25_3');
|
||||||
|
|
||||||
TITLELabel = Qt::Label($LayoutWidget_10, "TITLELabel");
|
TITLELabel = Qt::Label($LayoutWidget_11, "TITLELabel");
|
||||||
TITLELabel->setSizePolicy( Qt::SizePolicy(5, 5, 0, 0, TITLELabel->sizePolicy()->hasHeightForWidth()) );
|
TITLELabel->setSizePolicy( Qt::SizePolicy(5, 5, 0, 0, TITLELabel->sizePolicy()->hasHeightForWidth()) );
|
||||||
$layout25_2->addWidget(TITLELabel);
|
$layout25_3->addWidget(TITLELabel);
|
||||||
|
|
||||||
TITLE = Qt::LineEdit($LayoutWidget_10, "TITLE");
|
TITLE = Qt::LineEdit($LayoutWidget_11, "TITLE");
|
||||||
TITLE->setSizePolicy( Qt::SizePolicy(5, 0, 1, 1, TITLE->sizePolicy()->hasHeightForWidth()) );
|
TITLE->setSizePolicy( Qt::SizePolicy(5, 0, 1, 1, TITLE->sizePolicy()->hasHeightForWidth()) );
|
||||||
$layout25_2->addWidget(TITLE);
|
$layout25_3->addWidget(TITLE);
|
||||||
|
|
||||||
my $layout17 = Qt::HBoxLayout(undef, 0, 6, '$layout17');
|
my $layout17 = Qt::HBoxLayout(undef, 0, 6, '$layout17');
|
||||||
|
|
||||||
FILENAMELabel = Qt::Label($LayoutWidget_10, "FILENAMELabel");
|
FILENAMELabel = Qt::Label($LayoutWidget_11, "FILENAMELabel");
|
||||||
$layout17->addWidget(FILENAMELabel);
|
$layout17->addWidget(FILENAMELabel);
|
||||||
|
|
||||||
FILENAME = Qt::LineEdit($LayoutWidget_10, "FILENAME");
|
FILENAME = Qt::LineEdit($LayoutWidget_11, "FILENAME");
|
||||||
FILENAME->setSizePolicy( Qt::SizePolicy(5, 0, 0, 0, FILENAME->sizePolicy()->hasHeightForWidth()) );
|
FILENAME->setSizePolicy( Qt::SizePolicy(5, 0, 0, 0, FILENAME->sizePolicy()->hasHeightForWidth()) );
|
||||||
$layout17->addWidget(FILENAME);
|
$layout17->addWidget(FILENAME);
|
||||||
$layout25_2->addLayout($layout17);
|
$layout25_3->addLayout($layout17);
|
||||||
$layout25->addWidget(groupTitle);
|
$layout25_2->addWidget(groupTitle);
|
||||||
|
|
||||||
textMSROutput = Qt::TextEdit($LayoutWidget_9, "textMSROutput");
|
textMSROutput = Qt::TextEdit($LayoutWidget_10, "textMSROutput");
|
||||||
textMSROutput->setOverwriteMode( 1 );
|
textMSROutput->setOverwriteMode( 1 );
|
||||||
$layout25->addWidget(textMSROutput);
|
$layout25_2->addWidget(textMSROutput);
|
||||||
musrfit_tabs->insertTab( FittingPage, "" );
|
musrfit_tabs->insertTab( FittingPage, "" );
|
||||||
|
|
||||||
TabPage_2 = Qt::Widget(musrfit_tabs, "TabPage_2");
|
TabPage_2 = Qt::Widget(musrfit_tabs, "TabPage_2");
|
||||||
|
|
||||||
my $LayoutWidget_11 = Qt::Widget(TabPage_2, '$LayoutWidget_11');
|
my $LayoutWidget_12 = Qt::Widget(TabPage_2, '$LayoutWidget_12');
|
||||||
$LayoutWidget_11->setGeometry( Qt::Rect(5, 5, 545, 94) );
|
$LayoutWidget_12->setGeometry( Qt::Rect(5, 5, 545, 94) );
|
||||||
my $layout33 = Qt::HBoxLayout($LayoutWidget_11, 11, 6, '$layout33');
|
my $layout33 = Qt::HBoxLayout($LayoutWidget_12, 11, 6, '$layout33');
|
||||||
|
|
||||||
my $layout26 = Qt::VBoxLayout(undef, 0, 6, '$layout26');
|
my $layout26_2 = Qt::VBoxLayout(undef, 0, 6, '$layout26_2');
|
||||||
|
|
||||||
FUnitsLabel = Qt::Label($LayoutWidget_11, "FUnitsLabel");
|
FUnitsLabel = Qt::Label($LayoutWidget_12, "FUnitsLabel");
|
||||||
$layout26->addWidget(FUnitsLabel);
|
$layout26_2->addWidget(FUnitsLabel);
|
||||||
|
|
||||||
FApodizationLabel = Qt::Label($LayoutWidget_11, "FApodizationLabel");
|
FApodizationLabel = Qt::Label($LayoutWidget_12, "FApodizationLabel");
|
||||||
$layout26->addWidget(FApodizationLabel);
|
$layout26_2->addWidget(FApodizationLabel);
|
||||||
|
|
||||||
FPlotLabel = Qt::Label($LayoutWidget_11, "FPlotLabel");
|
FPlotLabel = Qt::Label($LayoutWidget_12, "FPlotLabel");
|
||||||
$layout26->addWidget(FPlotLabel);
|
$layout26_2->addWidget(FPlotLabel);
|
||||||
$layout33->addLayout($layout26);
|
$layout33->addLayout($layout26_2);
|
||||||
|
|
||||||
my $layout27_2 = Qt::VBoxLayout(undef, 0, 6, '$layout27_2');
|
my $layout27_3 = Qt::VBoxLayout(undef, 0, 6, '$layout27_3');
|
||||||
|
|
||||||
FUnits = Qt::ComboBox(0, $LayoutWidget_11, "FUnits");
|
FUnits = Qt::ComboBox(0, $LayoutWidget_12, "FUnits");
|
||||||
FUnits->setSizePolicy( Qt::SizePolicy(5, 5, 0, 0, FUnits->sizePolicy()->hasHeightForWidth()) );
|
FUnits->setSizePolicy( Qt::SizePolicy(5, 5, 0, 0, FUnits->sizePolicy()->hasHeightForWidth()) );
|
||||||
$layout27_2->addWidget(FUnits);
|
$layout27_3->addWidget(FUnits);
|
||||||
|
|
||||||
FApodization = Qt::ComboBox(0, $LayoutWidget_11, "FApodization");
|
FApodization = Qt::ComboBox(0, $LayoutWidget_12, "FApodization");
|
||||||
FApodization->setSizePolicy( Qt::SizePolicy(5, 5, 0, 0, FApodization->sizePolicy()->hasHeightForWidth()) );
|
FApodization->setSizePolicy( Qt::SizePolicy(5, 5, 0, 0, FApodization->sizePolicy()->hasHeightForWidth()) );
|
||||||
$layout27_2->addWidget(FApodization);
|
$layout27_3->addWidget(FApodization);
|
||||||
|
|
||||||
FPlot = Qt::ComboBox(0, $LayoutWidget_11, "FPlot");
|
FPlot = Qt::ComboBox(0, $LayoutWidget_12, "FPlot");
|
||||||
FPlot->setSizePolicy( Qt::SizePolicy(5, 5, 0, 0, FPlot->sizePolicy()->hasHeightForWidth()) );
|
FPlot->setSizePolicy( Qt::SizePolicy(5, 5, 0, 0, FPlot->sizePolicy()->hasHeightForWidth()) );
|
||||||
$layout27_2->addWidget(FPlot);
|
$layout27_3->addWidget(FPlot);
|
||||||
$layout33->addLayout($layout27_2);
|
$layout33->addLayout($layout27_3);
|
||||||
|
|
||||||
my $layout28_2 = Qt::VBoxLayout(undef, 0, 6, '$layout28_2');
|
my $layout28_2 = Qt::VBoxLayout(undef, 0, 6, '$layout28_2');
|
||||||
|
|
||||||
textLabel1 = Qt::Label($LayoutWidget_11, "textLabel1");
|
textLabel1 = Qt::Label($LayoutWidget_12, "textLabel1");
|
||||||
$layout28_2->addWidget(textLabel1);
|
$layout28_2->addWidget(textLabel1);
|
||||||
|
|
||||||
textLabel1_3 = Qt::Label($LayoutWidget_11, "textLabel1_3");
|
textLabel1_3 = Qt::Label($LayoutWidget_12, "textLabel1_3");
|
||||||
$layout28_2->addWidget(textLabel1_3);
|
$layout28_2->addWidget(textLabel1_3);
|
||||||
|
|
||||||
textLabel1_3_5 = Qt::Label($LayoutWidget_11, "textLabel1_3_5");
|
textLabel1_3_5 = Qt::Label($LayoutWidget_12, "textLabel1_3_5");
|
||||||
$layout28_2->addWidget(textLabel1_3_5);
|
$layout28_2->addWidget(textLabel1_3_5);
|
||||||
$layout33->addLayout($layout28_2);
|
$layout33->addLayout($layout28_2);
|
||||||
|
|
||||||
my $layout29 = Qt::VBoxLayout(undef, 0, 6, '$layout29');
|
my $layout29 = Qt::VBoxLayout(undef, 0, 6, '$layout29');
|
||||||
|
|
||||||
lineEdit28 = Qt::LineEdit($LayoutWidget_11, "lineEdit28");
|
lineEdit28 = Qt::LineEdit($LayoutWidget_12, "lineEdit28");
|
||||||
lineEdit28->setSizePolicy( Qt::SizePolicy(5, 5, 0, 0, lineEdit28->sizePolicy()->hasHeightForWidth()) );
|
lineEdit28->setSizePolicy( Qt::SizePolicy(5, 5, 0, 0, lineEdit28->sizePolicy()->hasHeightForWidth()) );
|
||||||
$layout29->addWidget(lineEdit28);
|
$layout29->addWidget(lineEdit28);
|
||||||
|
|
||||||
textLabel1_3_2 = Qt::Label($LayoutWidget_11, "textLabel1_3_2");
|
textLabel1_3_2 = Qt::Label($LayoutWidget_12, "textLabel1_3_2");
|
||||||
$layout29->addWidget(textLabel1_3_2);
|
$layout29->addWidget(textLabel1_3_2);
|
||||||
|
|
||||||
textLabel1_3_6 = Qt::Label($LayoutWidget_11, "textLabel1_3_6");
|
textLabel1_3_6 = Qt::Label($LayoutWidget_12, "textLabel1_3_6");
|
||||||
$layout29->addWidget(textLabel1_3_6);
|
$layout29->addWidget(textLabel1_3_6);
|
||||||
$layout33->addLayout($layout29);
|
$layout33->addLayout($layout29);
|
||||||
|
|
||||||
my $layout31 = Qt::VBoxLayout(undef, 0, 6, '$layout31');
|
my $layout31 = Qt::VBoxLayout(undef, 0, 6, '$layout31');
|
||||||
|
|
||||||
textLabel1_2 = Qt::Label($LayoutWidget_11, "textLabel1_2");
|
textLabel1_2 = Qt::Label($LayoutWidget_12, "textLabel1_2");
|
||||||
$layout31->addWidget(textLabel1_2);
|
$layout31->addWidget(textLabel1_2);
|
||||||
|
|
||||||
textLabel1_3_3 = Qt::Label($LayoutWidget_11, "textLabel1_3_3");
|
textLabel1_3_3 = Qt::Label($LayoutWidget_12, "textLabel1_3_3");
|
||||||
$layout31->addWidget(textLabel1_3_3);
|
$layout31->addWidget(textLabel1_3_3);
|
||||||
|
|
||||||
textLabel1_3_7 = Qt::Label($LayoutWidget_11, "textLabel1_3_7");
|
textLabel1_3_7 = Qt::Label($LayoutWidget_12, "textLabel1_3_7");
|
||||||
$layout31->addWidget(textLabel1_3_7);
|
$layout31->addWidget(textLabel1_3_7);
|
||||||
$layout33->addLayout($layout31);
|
$layout33->addLayout($layout31);
|
||||||
|
|
||||||
my $layout32 = Qt::VBoxLayout(undef, 0, 6, '$layout32');
|
my $layout32 = Qt::VBoxLayout(undef, 0, 6, '$layout32');
|
||||||
|
|
||||||
lineEdit28_2 = Qt::LineEdit($LayoutWidget_11, "lineEdit28_2");
|
lineEdit28_2 = Qt::LineEdit($LayoutWidget_12, "lineEdit28_2");
|
||||||
lineEdit28_2->setSizePolicy( Qt::SizePolicy(5, 5, 0, 0, lineEdit28_2->sizePolicy()->hasHeightForWidth()) );
|
lineEdit28_2->setSizePolicy( Qt::SizePolicy(5, 5, 0, 0, lineEdit28_2->sizePolicy()->hasHeightForWidth()) );
|
||||||
$layout32->addWidget(lineEdit28_2);
|
$layout32->addWidget(lineEdit28_2);
|
||||||
|
|
||||||
textLabel1_3_4 = Qt::Label($LayoutWidget_11, "textLabel1_3_4");
|
textLabel1_3_4 = Qt::Label($LayoutWidget_12, "textLabel1_3_4");
|
||||||
$layout32->addWidget(textLabel1_3_4);
|
$layout32->addWidget(textLabel1_3_4);
|
||||||
|
|
||||||
textLabel1_3_8 = Qt::Label($LayoutWidget_11, "textLabel1_3_8");
|
textLabel1_3_8 = Qt::Label($LayoutWidget_12, "textLabel1_3_8");
|
||||||
$layout32->addWidget(textLabel1_3_8);
|
$layout32->addWidget(textLabel1_3_8);
|
||||||
$layout33->addLayout($layout32);
|
$layout33->addLayout($layout32);
|
||||||
musrfit_tabs->insertTab( TabPage_2, "" );
|
musrfit_tabs->insertTab( TabPage_2, "" );
|
||||||
|
|
||||||
TabPage_3 = Qt::Widget(musrfit_tabs, "TabPage_3");
|
TabPage_3 = Qt::Widget(musrfit_tabs, "TabPage_3");
|
||||||
|
|
||||||
my $LayoutWidget_12 = Qt::Widget(TabPage_3, '$LayoutWidget_12');
|
my $LayoutWidget_13 = Qt::Widget(TabPage_3, '$LayoutWidget_13');
|
||||||
$LayoutWidget_12->setGeometry( Qt::Rect(7, 5, 540, 180) );
|
$LayoutWidget_13->setGeometry( Qt::Rect(7, 5, 540, 180) );
|
||||||
my $layout27_3 = Qt::HBoxLayout($LayoutWidget_12, 0, 6, '$layout27_3');
|
my $layout27_4 = Qt::HBoxLayout($LayoutWidget_13, 0, 6, '$layout27_4');
|
||||||
|
|
||||||
groupHist0 = Qt::GroupBox($LayoutWidget_12, "groupHist0");
|
groupHist0 = Qt::GroupBox($LayoutWidget_13, "groupHist0");
|
||||||
groupHist0->setSizePolicy( Qt::SizePolicy(5, 5, 0, 0, groupHist0->sizePolicy()->hasHeightForWidth()) );
|
groupHist0->setSizePolicy( Qt::SizePolicy(5, 5, 0, 0, groupHist0->sizePolicy()->hasHeightForWidth()) );
|
||||||
groupHist0->setMinimumSize( Qt::Size(0, 0) );
|
groupHist0->setMinimumSize( Qt::Size(0, 0) );
|
||||||
|
|
||||||
my $LayoutWidget_13 = Qt::Widget(groupHist0, '$LayoutWidget_13');
|
my $LayoutWidget_14 = Qt::Widget(groupHist0, '$LayoutWidget_14');
|
||||||
$LayoutWidget_13->setGeometry( Qt::Rect(5, 18, 100, 150) );
|
$LayoutWidget_14->setGeometry( Qt::Rect(5, 18, 100, 150) );
|
||||||
my $layout16_2 = Qt::VBoxLayout($LayoutWidget_13, 11, 6, '$layout16_2');
|
my $layout16_2 = Qt::VBoxLayout($LayoutWidget_14, 11, 6, '$layout16_2');
|
||||||
|
|
||||||
textLabel2 = Qt::Label($LayoutWidget_13, "textLabel2");
|
textLabel2 = Qt::Label($LayoutWidget_14, "textLabel2");
|
||||||
$layout16_2->addWidget(textLabel2);
|
$layout16_2->addWidget(textLabel2);
|
||||||
|
|
||||||
textLabel2_2_2_3 = Qt::Label($LayoutWidget_13, "textLabel2_2_2_3");
|
textLabel2_2_2_3 = Qt::Label($LayoutWidget_14, "textLabel2_2_2_3");
|
||||||
$layout16_2->addWidget(textLabel2_2_2_3);
|
$layout16_2->addWidget(textLabel2_2_2_3);
|
||||||
|
|
||||||
textLabel2_2_2 = Qt::Label($LayoutWidget_13, "textLabel2_2_2");
|
textLabel2_2_2 = Qt::Label($LayoutWidget_14, "textLabel2_2_2");
|
||||||
$layout16_2->addWidget(textLabel2_2_2);
|
$layout16_2->addWidget(textLabel2_2_2);
|
||||||
|
|
||||||
textLabel2_2_2_2 = Qt::Label($LayoutWidget_13, "textLabel2_2_2_2");
|
textLabel2_2_2_2 = Qt::Label($LayoutWidget_14, "textLabel2_2_2_2");
|
||||||
$layout16_2->addWidget(textLabel2_2_2_2);
|
$layout16_2->addWidget(textLabel2_2_2_2);
|
||||||
|
|
||||||
textLabel2_2_2_2_2 = Qt::Label($LayoutWidget_13, "textLabel2_2_2_2_2");
|
textLabel2_2_2_2_2 = Qt::Label($LayoutWidget_14, "textLabel2_2_2_2_2");
|
||||||
$layout16_2->addWidget(textLabel2_2_2_2_2);
|
$layout16_2->addWidget(textLabel2_2_2_2_2);
|
||||||
$layout27_3->addWidget(groupHist0);
|
$layout27_4->addWidget(groupHist0);
|
||||||
|
|
||||||
groupHist1 = Qt::GroupBox($LayoutWidget_12, "groupHist1");
|
groupHist1 = Qt::GroupBox($LayoutWidget_13, "groupHist1");
|
||||||
groupHist1->setFrameShadow( &Qt::GroupBox::Plain() );
|
groupHist1->setFrameShadow( &Qt::GroupBox::Plain() );
|
||||||
|
|
||||||
my $LayoutWidget_14 = Qt::Widget(groupHist1, '$LayoutWidget_14');
|
my $LayoutWidget_15 = Qt::Widget(groupHist1, '$LayoutWidget_15');
|
||||||
$LayoutWidget_14->setGeometry( Qt::Rect(8, 17, 75, 150) );
|
$LayoutWidget_15->setGeometry( Qt::Rect(8, 17, 75, 150) );
|
||||||
my $layout18 = Qt::VBoxLayout($LayoutWidget_14, 0, 0, '$layout18');
|
my $layout18 = Qt::VBoxLayout($LayoutWidget_15, 0, 0, '$layout18');
|
||||||
|
|
||||||
t01 = Qt::LineEdit($LayoutWidget_14, "t01");
|
t01 = Qt::LineEdit($LayoutWidget_15, "t01");
|
||||||
$layout18->addWidget(t01);
|
$layout18->addWidget(t01);
|
||||||
|
|
||||||
Bg11 = Qt::LineEdit($LayoutWidget_14, "Bg11");
|
Bg11 = Qt::LineEdit($LayoutWidget_15, "Bg11");
|
||||||
$layout18->addWidget(Bg11);
|
$layout18->addWidget(Bg11);
|
||||||
|
|
||||||
Bg21 = Qt::LineEdit($LayoutWidget_14, "Bg21");
|
Bg21 = Qt::LineEdit($LayoutWidget_15, "Bg21");
|
||||||
$layout18->addWidget(Bg21);
|
$layout18->addWidget(Bg21);
|
||||||
|
|
||||||
Data11 = Qt::LineEdit($LayoutWidget_14, "Data11");
|
Data11 = Qt::LineEdit($LayoutWidget_15, "Data11");
|
||||||
$layout18->addWidget(Data11);
|
$layout18->addWidget(Data11);
|
||||||
|
|
||||||
Data21 = Qt::LineEdit($LayoutWidget_14, "Data21");
|
Data21 = Qt::LineEdit($LayoutWidget_15, "Data21");
|
||||||
$layout18->addWidget(Data21);
|
$layout18->addWidget(Data21);
|
||||||
$layout27_3->addWidget(groupHist1);
|
$layout27_4->addWidget(groupHist1);
|
||||||
|
|
||||||
groupHist2 = Qt::GroupBox($LayoutWidget_12, "groupHist2");
|
groupHist2 = Qt::GroupBox($LayoutWidget_13, "groupHist2");
|
||||||
groupHist2->setEnabled( 1 );
|
groupHist2->setEnabled( 1 );
|
||||||
groupHist2->setFrameShadow( &Qt::GroupBox::Plain() );
|
groupHist2->setFrameShadow( &Qt::GroupBox::Plain() );
|
||||||
|
|
||||||
my $LayoutWidget_15 = Qt::Widget(groupHist2, '$LayoutWidget_15');
|
my $LayoutWidget_16 = Qt::Widget(groupHist2, '$LayoutWidget_16');
|
||||||
$LayoutWidget_15->setGeometry( Qt::Rect(8, 17, 75, 150) );
|
$LayoutWidget_16->setGeometry( Qt::Rect(8, 17, 75, 150) );
|
||||||
my $layout18_2 = Qt::VBoxLayout($LayoutWidget_15, 0, 0, '$layout18_2');
|
my $layout18_2 = Qt::VBoxLayout($LayoutWidget_16, 0, 0, '$layout18_2');
|
||||||
|
|
||||||
t02 = Qt::LineEdit($LayoutWidget_15, "t02");
|
t02 = Qt::LineEdit($LayoutWidget_16, "t02");
|
||||||
$layout18_2->addWidget(t02);
|
$layout18_2->addWidget(t02);
|
||||||
|
|
||||||
Bg12 = Qt::LineEdit($LayoutWidget_15, "Bg12");
|
Bg12 = Qt::LineEdit($LayoutWidget_16, "Bg12");
|
||||||
$layout18_2->addWidget(Bg12);
|
$layout18_2->addWidget(Bg12);
|
||||||
|
|
||||||
Bg22 = Qt::LineEdit($LayoutWidget_15, "Bg22");
|
Bg22 = Qt::LineEdit($LayoutWidget_16, "Bg22");
|
||||||
$layout18_2->addWidget(Bg22);
|
$layout18_2->addWidget(Bg22);
|
||||||
|
|
||||||
Data12 = Qt::LineEdit($LayoutWidget_15, "Data12");
|
Data12 = Qt::LineEdit($LayoutWidget_16, "Data12");
|
||||||
$layout18_2->addWidget(Data12);
|
$layout18_2->addWidget(Data12);
|
||||||
|
|
||||||
Data22 = Qt::LineEdit($LayoutWidget_15, "Data22");
|
Data22 = Qt::LineEdit($LayoutWidget_16, "Data22");
|
||||||
$layout18_2->addWidget(Data22);
|
$layout18_2->addWidget(Data22);
|
||||||
$layout27_3->addWidget(groupHist2);
|
$layout27_4->addWidget(groupHist2);
|
||||||
|
|
||||||
groupHist3 = Qt::GroupBox($LayoutWidget_12, "groupHist3");
|
groupHist3 = Qt::GroupBox($LayoutWidget_13, "groupHist3");
|
||||||
groupHist3->setEnabled( 1 );
|
groupHist3->setEnabled( 1 );
|
||||||
groupHist3->setFrameShadow( &Qt::GroupBox::Plain() );
|
groupHist3->setFrameShadow( &Qt::GroupBox::Plain() );
|
||||||
|
|
||||||
my $LayoutWidget_16 = Qt::Widget(groupHist3, '$LayoutWidget_16');
|
my $LayoutWidget_17 = Qt::Widget(groupHist3, '$LayoutWidget_17');
|
||||||
$LayoutWidget_16->setGeometry( Qt::Rect(8, 17, 75, 150) );
|
$LayoutWidget_17->setGeometry( Qt::Rect(8, 17, 75, 150) );
|
||||||
my $layout18_3 = Qt::VBoxLayout($LayoutWidget_16, 0, 0, '$layout18_3');
|
my $layout18_3 = Qt::VBoxLayout($LayoutWidget_17, 0, 0, '$layout18_3');
|
||||||
|
|
||||||
t03 = Qt::LineEdit($LayoutWidget_16, "t03");
|
t03 = Qt::LineEdit($LayoutWidget_17, "t03");
|
||||||
$layout18_3->addWidget(t03);
|
$layout18_3->addWidget(t03);
|
||||||
|
|
||||||
Bg13 = Qt::LineEdit($LayoutWidget_16, "Bg13");
|
Bg13 = Qt::LineEdit($LayoutWidget_17, "Bg13");
|
||||||
$layout18_3->addWidget(Bg13);
|
$layout18_3->addWidget(Bg13);
|
||||||
|
|
||||||
Bg23 = Qt::LineEdit($LayoutWidget_16, "Bg23");
|
Bg23 = Qt::LineEdit($LayoutWidget_17, "Bg23");
|
||||||
$layout18_3->addWidget(Bg23);
|
$layout18_3->addWidget(Bg23);
|
||||||
|
|
||||||
Data13 = Qt::LineEdit($LayoutWidget_16, "Data13");
|
Data13 = Qt::LineEdit($LayoutWidget_17, "Data13");
|
||||||
$layout18_3->addWidget(Data13);
|
$layout18_3->addWidget(Data13);
|
||||||
|
|
||||||
Data23 = Qt::LineEdit($LayoutWidget_16, "Data23");
|
Data23 = Qt::LineEdit($LayoutWidget_17, "Data23");
|
||||||
$layout18_3->addWidget(Data23);
|
$layout18_3->addWidget(Data23);
|
||||||
$layout27_3->addWidget(groupHist3);
|
$layout27_4->addWidget(groupHist3);
|
||||||
|
|
||||||
groupHist4 = Qt::GroupBox($LayoutWidget_12, "groupHist4");
|
groupHist4 = Qt::GroupBox($LayoutWidget_13, "groupHist4");
|
||||||
groupHist4->setEnabled( 1 );
|
groupHist4->setEnabled( 1 );
|
||||||
groupHist4->setFrameShadow( &Qt::GroupBox::Plain() );
|
groupHist4->setFrameShadow( &Qt::GroupBox::Plain() );
|
||||||
|
|
||||||
my $LayoutWidget_17 = Qt::Widget(groupHist4, '$LayoutWidget_17');
|
my $LayoutWidget_18 = Qt::Widget(groupHist4, '$LayoutWidget_18');
|
||||||
$LayoutWidget_17->setGeometry( Qt::Rect(8, 17, 75, 150) );
|
$LayoutWidget_18->setGeometry( Qt::Rect(8, 17, 75, 150) );
|
||||||
my $layout18_4 = Qt::VBoxLayout($LayoutWidget_17, 0, 0, '$layout18_4');
|
my $layout18_4 = Qt::VBoxLayout($LayoutWidget_18, 0, 0, '$layout18_4');
|
||||||
|
|
||||||
t04 = Qt::LineEdit($LayoutWidget_17, "t04");
|
t04 = Qt::LineEdit($LayoutWidget_18, "t04");
|
||||||
$layout18_4->addWidget(t04);
|
$layout18_4->addWidget(t04);
|
||||||
|
|
||||||
Bg14 = Qt::LineEdit($LayoutWidget_17, "Bg14");
|
Bg14 = Qt::LineEdit($LayoutWidget_18, "Bg14");
|
||||||
$layout18_4->addWidget(Bg14);
|
$layout18_4->addWidget(Bg14);
|
||||||
|
|
||||||
Bg24 = Qt::LineEdit($LayoutWidget_17, "Bg24");
|
Bg24 = Qt::LineEdit($LayoutWidget_18, "Bg24");
|
||||||
$layout18_4->addWidget(Bg24);
|
$layout18_4->addWidget(Bg24);
|
||||||
|
|
||||||
Data14 = Qt::LineEdit($LayoutWidget_17, "Data14");
|
Data14 = Qt::LineEdit($LayoutWidget_18, "Data14");
|
||||||
$layout18_4->addWidget(Data14);
|
$layout18_4->addWidget(Data14);
|
||||||
|
|
||||||
Data24 = Qt::LineEdit($LayoutWidget_17, "Data24");
|
Data24 = Qt::LineEdit($LayoutWidget_18, "Data24");
|
||||||
$layout18_4->addWidget(Data24);
|
$layout18_4->addWidget(Data24);
|
||||||
$layout27_3->addWidget(groupHist4);
|
$layout27_4->addWidget(groupHist4);
|
||||||
|
|
||||||
ShowT0 = Qt::PushButton(TabPage_3, "ShowT0");
|
ShowT0 = Qt::PushButton(TabPage_3, "ShowT0");
|
||||||
ShowT0->setGeometry( Qt::Rect(451, 190, 95, 30) );
|
ShowT0->setGeometry( Qt::Rect(451, 190, 95, 30) );
|
||||||
@ -1485,11 +1531,11 @@ sub NEW
|
|||||||
|
|
||||||
TabPage_4 = Qt::Widget(musrfit_tabs, "TabPage_4");
|
TabPage_4 = Qt::Widget(musrfit_tabs, "TabPage_4");
|
||||||
|
|
||||||
my $LayoutWidget_18 = Qt::Widget(TabPage_4, '$LayoutWidget_18');
|
my $LayoutWidget_19 = Qt::Widget(TabPage_4, '$LayoutWidget_19');
|
||||||
$LayoutWidget_18->setGeometry( Qt::Rect(3, 3, 550, 355) );
|
$LayoutWidget_19->setGeometry( Qt::Rect(3, 3, 550, 355) );
|
||||||
my $layout29_2 = Qt::VBoxLayout($LayoutWidget_18, 11, 6, '$layout29_2');
|
my $layout29_2 = Qt::VBoxLayout($LayoutWidget_19, 11, 6, '$layout29_2');
|
||||||
|
|
||||||
textLabel2_2 = Qt::Label($LayoutWidget_18, "textLabel2_2");
|
textLabel2_2 = Qt::Label($LayoutWidget_19, "textLabel2_2");
|
||||||
$cg->setColor(&Qt::ColorGroup::Foreground, &black);
|
$cg->setColor(&Qt::ColorGroup::Foreground, &black);
|
||||||
$cg->setColor(&Qt::ColorGroup::Button, Qt::Color(230,240,249));
|
$cg->setColor(&Qt::ColorGroup::Button, Qt::Color(230,240,249));
|
||||||
$cg->setColor(&Qt::ColorGroup::Light, &white);
|
$cg->setColor(&Qt::ColorGroup::Light, &white);
|
||||||
@ -1544,29 +1590,29 @@ sub NEW
|
|||||||
textLabel2_2->setPalette( $pal );
|
textLabel2_2->setPalette( $pal );
|
||||||
$layout29_2->addWidget(textLabel2_2);
|
$layout29_2->addWidget(textLabel2_2);
|
||||||
|
|
||||||
TheoryBlock = Qt::TextEdit($LayoutWidget_18, "TheoryBlock");
|
TheoryBlock = Qt::TextEdit($LayoutWidget_19, "TheoryBlock");
|
||||||
$layout29_2->addWidget(TheoryBlock);
|
$layout29_2->addWidget(TheoryBlock);
|
||||||
|
|
||||||
my $layout25_3 = Qt::HBoxLayout(undef, 0, 6, '$layout25_3');
|
my $layout25_4 = Qt::HBoxLayout(undef, 0, 6, '$layout25_4');
|
||||||
|
|
||||||
CParamsCombo = Qt::ComboBox(0, $LayoutWidget_18, "CParamsCombo");
|
CParamsCombo = Qt::ComboBox(0, $LayoutWidget_19, "CParamsCombo");
|
||||||
CParamsCombo->setSizePolicy( Qt::SizePolicy(0, 7, 0, 0, CParamsCombo->sizePolicy()->hasHeightForWidth()) );
|
CParamsCombo->setSizePolicy( Qt::SizePolicy(0, 7, 0, 0, CParamsCombo->sizePolicy()->hasHeightForWidth()) );
|
||||||
$layout25_3->addWidget(CParamsCombo);
|
$layout25_4->addWidget(CParamsCombo);
|
||||||
|
|
||||||
textLabel1_4 = Qt::Label($LayoutWidget_18, "textLabel1_4");
|
textLabel1_4_3 = Qt::Label($LayoutWidget_19, "textLabel1_4_3");
|
||||||
$layout25_3->addWidget(textLabel1_4);
|
$layout25_4->addWidget(textLabel1_4_3);
|
||||||
|
|
||||||
ConstraintLine = Qt::LineEdit($LayoutWidget_18, "ConstraintLine");
|
ConstraintLine = Qt::LineEdit($LayoutWidget_19, "ConstraintLine");
|
||||||
ConstraintLine->setSizePolicy( Qt::SizePolicy(7, 7, 0, 0, ConstraintLine->sizePolicy()->hasHeightForWidth()) );
|
ConstraintLine->setSizePolicy( Qt::SizePolicy(7, 7, 0, 0, ConstraintLine->sizePolicy()->hasHeightForWidth()) );
|
||||||
ConstraintLine->setMinimumSize( Qt::Size(0, 25) );
|
ConstraintLine->setMinimumSize( Qt::Size(0, 25) );
|
||||||
$layout25_3->addWidget(ConstraintLine);
|
$layout25_4->addWidget(ConstraintLine);
|
||||||
|
|
||||||
AddConstraint = Qt::PushButton($LayoutWidget_18, "AddConstraint");
|
AddConstraint = Qt::PushButton($LayoutWidget_19, "AddConstraint");
|
||||||
AddConstraint->setSizePolicy( Qt::SizePolicy(0, 7, 0, 0, AddConstraint->sizePolicy()->hasHeightForWidth()) );
|
AddConstraint->setSizePolicy( Qt::SizePolicy(0, 7, 0, 0, AddConstraint->sizePolicy()->hasHeightForWidth()) );
|
||||||
$layout25_3->addWidget(AddConstraint);
|
$layout25_4->addWidget(AddConstraint);
|
||||||
$layout29_2->addLayout($layout25_3);
|
$layout29_2->addLayout($layout25_4);
|
||||||
|
|
||||||
textLabel2_2_3 = Qt::Label($LayoutWidget_18, "textLabel2_2_3");
|
textLabel2_2_3 = Qt::Label($LayoutWidget_19, "textLabel2_2_3");
|
||||||
$cg->setColor(&Qt::ColorGroup::Foreground, &black);
|
$cg->setColor(&Qt::ColorGroup::Foreground, &black);
|
||||||
$cg->setColor(&Qt::ColorGroup::Button, Qt::Color(230,240,249));
|
$cg->setColor(&Qt::ColorGroup::Button, Qt::Color(230,240,249));
|
||||||
$cg->setColor(&Qt::ColorGroup::Light, &white);
|
$cg->setColor(&Qt::ColorGroup::Light, &white);
|
||||||
@ -1621,7 +1667,7 @@ sub NEW
|
|||||||
textLabel2_2_3->setPalette( $pal );
|
textLabel2_2_3->setPalette( $pal );
|
||||||
$layout29_2->addWidget(textLabel2_2_3);
|
$layout29_2->addWidget(textLabel2_2_3);
|
||||||
|
|
||||||
FunctionsBlock = Qt::TextEdit($LayoutWidget_18, "FunctionsBlock");
|
FunctionsBlock = Qt::TextEdit($LayoutWidget_19, "FunctionsBlock");
|
||||||
$layout29_2->addWidget(FunctionsBlock);
|
$layout29_2->addWidget(FunctionsBlock);
|
||||||
musrfit_tabs->insertTab( TabPage_4, "" );
|
musrfit_tabs->insertTab( TabPage_4, "" );
|
||||||
|
|
||||||
@ -1726,7 +1772,7 @@ sub NEW
|
|||||||
MenuBar->insertSeparator( 7 );
|
MenuBar->insertSeparator( 7 );
|
||||||
|
|
||||||
languageChange();
|
languageChange();
|
||||||
my $resize = Qt::Size(579, 497);
|
my $resize = Qt::Size(579, 501);
|
||||||
$resize = $resize->expandedTo(minimumSizeHint());
|
$resize = $resize->expandedTo(minimumSizeHint());
|
||||||
resize( $resize );
|
resize( $resize );
|
||||||
clearWState( &Qt::WState_Polished );
|
clearWState( &Qt::WState_Polished );
|
||||||
@ -1947,11 +1993,15 @@ sub languageChange
|
|||||||
MINIMIZE->setText( trUtf8("Minimize") );
|
MINIMIZE->setText( trUtf8("Minimize") );
|
||||||
MIGRAD->setText( trUtf8("Migrad") );
|
MIGRAD->setText( trUtf8("Migrad") );
|
||||||
SIMPLEX->setText( trUtf8("Simplex") );
|
SIMPLEX->setText( trUtf8("Simplex") );
|
||||||
ErrorCalc->setTitle( trUtf8("Error Calculation") );
|
PlotOptions->setTitle( trUtf8("Options") );
|
||||||
HESSE->setText( trUtf8("Hesse") );
|
textLabel1_4->setText( trUtf8("X Range") );
|
||||||
MINOS->setText( trUtf8("Minos") );
|
textLabel1_4_2->setText( trUtf8("Y Range") );
|
||||||
|
ltc->setText( trUtf8("Life time cor.") );
|
||||||
go->setText( trUtf8("Fit") );
|
go->setText( trUtf8("Fit") );
|
||||||
PlotMSR->setText( trUtf8("Plot") );
|
PlotMSR->setText( trUtf8("Plot") );
|
||||||
|
ErrorCalc->setTitle( trUtf8("Error") );
|
||||||
|
MINOS->setText( trUtf8("Minos") );
|
||||||
|
HESSE->setText( trUtf8("Hesse") );
|
||||||
musrfit_tabs->changeTab( TabPage, trUtf8("Fitting") );
|
musrfit_tabs->changeTab( TabPage, trUtf8("Fitting") );
|
||||||
buttonGroupSharing->setTitle( trUtf8("Shared Parameters") );
|
buttonGroupSharing->setTitle( trUtf8("Shared Parameters") );
|
||||||
SharingComp1->setTitle( trUtf8("1st Component") );
|
SharingComp1->setTitle( trUtf8("1st Component") );
|
||||||
@ -2044,7 +2094,7 @@ sub languageChange
|
|||||||
ShowT0->setText( trUtf8("Show") );
|
ShowT0->setText( trUtf8("Show") );
|
||||||
musrfit_tabs->changeTab( TabPage_3, trUtf8("t0/Bg Bins") );
|
musrfit_tabs->changeTab( TabPage_3, trUtf8("t0/Bg Bins") );
|
||||||
textLabel2_2->setText( trUtf8("THEORY Block") );
|
textLabel2_2->setText( trUtf8("THEORY Block") );
|
||||||
textLabel1_4->setText( trUtf8("=") );
|
textLabel1_4_3->setText( trUtf8("=") );
|
||||||
AddConstraint->setText( trUtf8("Add") );
|
AddConstraint->setText( trUtf8("Add") );
|
||||||
textLabel2_2_3->setText( trUtf8("FUNCTIONS Block") );
|
textLabel2_2_3->setText( trUtf8("FUNCTIONS Block") );
|
||||||
musrfit_tabs->changeTab( TabPage_4, trUtf8("Constraints") );
|
musrfit_tabs->changeTab( TabPage_4, trUtf8("Constraints") );
|
||||||
@ -2322,6 +2372,16 @@ sub CreateAllInput
|
|||||||
$All{"BINS"} = BINS->text;
|
$All{"BINS"} = BINS->text;
|
||||||
$All{"FitAsyType"} = FitAsyType->currentText;
|
$All{"FitAsyType"} = FitAsyType->currentText;
|
||||||
$All{"LRBF"} = LRBF->text;
|
$All{"LRBF"} = LRBF->text;
|
||||||
|
$All{"Xi"}=Xi->text;
|
||||||
|
$All{"Xf"}=Xf->text;
|
||||||
|
$All{"Yi"}=Yi->text;
|
||||||
|
$All{"Yf"}=Yf->text;
|
||||||
|
|
||||||
|
if (ltc->isChecked()) {
|
||||||
|
$All{"ltc"}="y";
|
||||||
|
} else {
|
||||||
|
$All{"ltc"}="n";
|
||||||
|
}
|
||||||
|
|
||||||
RunSelectionToggle();
|
RunSelectionToggle();
|
||||||
my @RUNS = ();
|
my @RUNS = ();
|
||||||
|
218
src/external/MuSRFitGUI/devel/MuSRFit.ui
vendored
218
src/external/MuSRFitGUI/devel/MuSRFit.ui
vendored
@ -9,7 +9,7 @@
|
|||||||
<x>0</x>
|
<x>0</x>
|
||||||
<y>0</y>
|
<y>0</y>
|
||||||
<width>579</width>
|
<width>579</width>
|
||||||
<height>497</height>
|
<height>501</height>
|
||||||
</rect>
|
</rect>
|
||||||
</property>
|
</property>
|
||||||
<property name="sizePolicy">
|
<property name="sizePolicy">
|
||||||
@ -70,9 +70,6 @@
|
|||||||
<height>32767</height>
|
<height>32767</height>
|
||||||
</size>
|
</size>
|
||||||
</property>
|
</property>
|
||||||
<property name="tabShape">
|
|
||||||
<enum>Rounded</enum>
|
|
||||||
</property>
|
|
||||||
<widget class="QWidget">
|
<widget class="QWidget">
|
||||||
<property name="name">
|
<property name="name">
|
||||||
<cstring>RUNSPage</cstring>
|
<cstring>RUNSPage</cstring>
|
||||||
@ -2054,16 +2051,32 @@
|
|||||||
<attribute name="title">
|
<attribute name="title">
|
||||||
<string>Fitting</string>
|
<string>Fitting</string>
|
||||||
</attribute>
|
</attribute>
|
||||||
|
<widget class="QTextEdit">
|
||||||
|
<property name="name">
|
||||||
|
<cstring>FitTextOutput</cstring>
|
||||||
|
</property>
|
||||||
|
<property name="geometry">
|
||||||
|
<rect>
|
||||||
|
<x>5</x>
|
||||||
|
<y>130</y>
|
||||||
|
<width>545</width>
|
||||||
|
<height>230</height>
|
||||||
|
</rect>
|
||||||
|
</property>
|
||||||
|
<property name="overwriteMode">
|
||||||
|
<bool>true</bool>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
<widget class="QButtonGroup">
|
<widget class="QButtonGroup">
|
||||||
<property name="name">
|
<property name="name">
|
||||||
<cstring>Minimization</cstring>
|
<cstring>Minimization</cstring>
|
||||||
</property>
|
</property>
|
||||||
<property name="geometry">
|
<property name="geometry">
|
||||||
<rect>
|
<rect>
|
||||||
<x>6</x>
|
<x>7</x>
|
||||||
<y>1</y>
|
<y>1</y>
|
||||||
<width>200</width>
|
<width>115</width>
|
||||||
<height>125</height>
|
<height>128</height>
|
||||||
</rect>
|
</rect>
|
||||||
</property>
|
</property>
|
||||||
<property name="title">
|
<property name="title">
|
||||||
@ -2132,18 +2145,18 @@
|
|||||||
</widget>
|
</widget>
|
||||||
<widget class="QButtonGroup">
|
<widget class="QButtonGroup">
|
||||||
<property name="name">
|
<property name="name">
|
||||||
<cstring>ErrorCalc</cstring>
|
<cstring>PlotOptions</cstring>
|
||||||
</property>
|
</property>
|
||||||
<property name="geometry">
|
<property name="geometry">
|
||||||
<rect>
|
<rect>
|
||||||
<x>208</x>
|
<x>241</x>
|
||||||
<y>1</y>
|
<y>1</y>
|
||||||
<width>200</width>
|
<width>196</width>
|
||||||
<height>125</height>
|
<height>128</height>
|
||||||
</rect>
|
</rect>
|
||||||
</property>
|
</property>
|
||||||
<property name="title">
|
<property name="title">
|
||||||
<string>Error Calculation</string>
|
<string>Options</string>
|
||||||
</property>
|
</property>
|
||||||
<property name="alignment">
|
<property name="alignment">
|
||||||
<set>AlignTop</set>
|
<set>AlignTop</set>
|
||||||
@ -2155,42 +2168,92 @@
|
|||||||
<bool>true</bool>
|
<bool>true</bool>
|
||||||
</property>
|
</property>
|
||||||
<property name="selectedId" stdset="0">
|
<property name="selectedId" stdset="0">
|
||||||
<number>0</number>
|
<number>-1</number>
|
||||||
</property>
|
</property>
|
||||||
<widget class="QRadioButton">
|
<widget class="QLayoutWidget">
|
||||||
<property name="name">
|
<property name="name">
|
||||||
<cstring>HESSE</cstring>
|
<cstring>layout27</cstring>
|
||||||
</property>
|
</property>
|
||||||
<property name="geometry">
|
<property name="geometry">
|
||||||
<rect>
|
<rect>
|
||||||
<x>19</x>
|
<x>3</x>
|
||||||
<y>30</y>
|
<y>18</y>
|
||||||
<width>69</width>
|
<width>190</width>
|
||||||
<height>22</height>
|
<height>94</height>
|
||||||
</rect>
|
</rect>
|
||||||
</property>
|
</property>
|
||||||
<property name="text">
|
<vbox>
|
||||||
<string>Hesse</string>
|
<property name="name">
|
||||||
</property>
|
<cstring>unnamed</cstring>
|
||||||
<property name="checked">
|
</property>
|
||||||
<bool>true</bool>
|
<widget class="QLayoutWidget">
|
||||||
</property>
|
<property name="name">
|
||||||
</widget>
|
<cstring>layout25</cstring>
|
||||||
<widget class="QRadioButton">
|
</property>
|
||||||
<property name="name">
|
<hbox>
|
||||||
<cstring>MINOS</cstring>
|
<property name="name">
|
||||||
</property>
|
<cstring>unnamed</cstring>
|
||||||
<property name="geometry">
|
</property>
|
||||||
<rect>
|
<widget class="QLabel">
|
||||||
<x>19</x>
|
<property name="name">
|
||||||
<y>59</y>
|
<cstring>textLabel1_4</cstring>
|
||||||
<width>69</width>
|
</property>
|
||||||
<height>22</height>
|
<property name="text">
|
||||||
</rect>
|
<string>X Range</string>
|
||||||
</property>
|
</property>
|
||||||
<property name="text">
|
</widget>
|
||||||
<string>Minos</string>
|
<widget class="QLineEdit">
|
||||||
</property>
|
<property name="name">
|
||||||
|
<cstring>Xi</cstring>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
<widget class="QLineEdit">
|
||||||
|
<property name="name">
|
||||||
|
<cstring>Xf</cstring>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</hbox>
|
||||||
|
</widget>
|
||||||
|
<widget class="QLayoutWidget">
|
||||||
|
<property name="name">
|
||||||
|
<cstring>layout26</cstring>
|
||||||
|
</property>
|
||||||
|
<hbox>
|
||||||
|
<property name="name">
|
||||||
|
<cstring>unnamed</cstring>
|
||||||
|
</property>
|
||||||
|
<widget class="QLabel">
|
||||||
|
<property name="name">
|
||||||
|
<cstring>textLabel1_4_2</cstring>
|
||||||
|
</property>
|
||||||
|
<property name="text">
|
||||||
|
<string>Y Range</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
<widget class="QLineEdit">
|
||||||
|
<property name="name">
|
||||||
|
<cstring>Yi</cstring>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
<widget class="QLineEdit">
|
||||||
|
<property name="name">
|
||||||
|
<cstring>Yf</cstring>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</hbox>
|
||||||
|
</widget>
|
||||||
|
<widget class="QCheckBox">
|
||||||
|
<property name="name">
|
||||||
|
<cstring>ltc</cstring>
|
||||||
|
</property>
|
||||||
|
<property name="text">
|
||||||
|
<string>Life time cor.</string>
|
||||||
|
</property>
|
||||||
|
<property name="checked">
|
||||||
|
<bool>true</bool>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</vbox>
|
||||||
</widget>
|
</widget>
|
||||||
</widget>
|
</widget>
|
||||||
<widget class="QLayoutWidget">
|
<widget class="QLayoutWidget">
|
||||||
@ -2199,10 +2262,10 @@
|
|||||||
</property>
|
</property>
|
||||||
<property name="geometry">
|
<property name="geometry">
|
||||||
<rect>
|
<rect>
|
||||||
<x>418</x>
|
<x>438</x>
|
||||||
<y>5</y>
|
<y>1</y>
|
||||||
<width>125</width>
|
<width>115</width>
|
||||||
<height>120</height>
|
<height>125</height>
|
||||||
</rect>
|
</rect>
|
||||||
</property>
|
</property>
|
||||||
<vbox>
|
<vbox>
|
||||||
@ -2223,7 +2286,7 @@
|
|||||||
</property>
|
</property>
|
||||||
<property name="minimumSize">
|
<property name="minimumSize">
|
||||||
<size>
|
<size>
|
||||||
<width>95</width>
|
<width>85</width>
|
||||||
<height>30</height>
|
<height>30</height>
|
||||||
</size>
|
</size>
|
||||||
</property>
|
</property>
|
||||||
@ -2257,7 +2320,7 @@
|
|||||||
</property>
|
</property>
|
||||||
<property name="minimumSize">
|
<property name="minimumSize">
|
||||||
<size>
|
<size>
|
||||||
<width>95</width>
|
<width>85</width>
|
||||||
<height>30</height>
|
<height>30</height>
|
||||||
</size>
|
</size>
|
||||||
</property>
|
</property>
|
||||||
@ -2279,21 +2342,68 @@
|
|||||||
</widget>
|
</widget>
|
||||||
</vbox>
|
</vbox>
|
||||||
</widget>
|
</widget>
|
||||||
<widget class="QTextEdit">
|
<widget class="QButtonGroup">
|
||||||
<property name="name">
|
<property name="name">
|
||||||
<cstring>FitTextOutput</cstring>
|
<cstring>ErrorCalc</cstring>
|
||||||
</property>
|
</property>
|
||||||
<property name="geometry">
|
<property name="geometry">
|
||||||
<rect>
|
<rect>
|
||||||
<x>5</x>
|
<x>128</x>
|
||||||
<y>130</y>
|
<y>1</y>
|
||||||
<width>545</width>
|
<width>107</width>
|
||||||
<height>230</height>
|
<height>128</height>
|
||||||
</rect>
|
</rect>
|
||||||
</property>
|
</property>
|
||||||
<property name="overwriteMode">
|
<property name="title">
|
||||||
|
<string>Error</string>
|
||||||
|
</property>
|
||||||
|
<property name="alignment">
|
||||||
|
<set>AlignTop|AlignLeft</set>
|
||||||
|
</property>
|
||||||
|
<property name="exclusive">
|
||||||
<bool>true</bool>
|
<bool>true</bool>
|
||||||
</property>
|
</property>
|
||||||
|
<property name="radioButtonExclusive">
|
||||||
|
<bool>true</bool>
|
||||||
|
</property>
|
||||||
|
<property name="selectedId" stdset="0">
|
||||||
|
<number>1</number>
|
||||||
|
</property>
|
||||||
|
<widget class="QRadioButton">
|
||||||
|
<property name="name">
|
||||||
|
<cstring>MINOS</cstring>
|
||||||
|
</property>
|
||||||
|
<property name="geometry">
|
||||||
|
<rect>
|
||||||
|
<x>19</x>
|
||||||
|
<y>59</y>
|
||||||
|
<width>69</width>
|
||||||
|
<height>22</height>
|
||||||
|
</rect>
|
||||||
|
</property>
|
||||||
|
<property name="text">
|
||||||
|
<string>Minos</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
<widget class="QRadioButton">
|
||||||
|
<property name="name">
|
||||||
|
<cstring>HESSE</cstring>
|
||||||
|
</property>
|
||||||
|
<property name="geometry">
|
||||||
|
<rect>
|
||||||
|
<x>19</x>
|
||||||
|
<y>30</y>
|
||||||
|
<width>69</width>
|
||||||
|
<height>22</height>
|
||||||
|
</rect>
|
||||||
|
</property>
|
||||||
|
<property name="text">
|
||||||
|
<string>Hesse</string>
|
||||||
|
</property>
|
||||||
|
<property name="checked">
|
||||||
|
<bool>true</bool>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
</widget>
|
</widget>
|
||||||
</widget>
|
</widget>
|
||||||
<widget class="QWidget">
|
<widget class="QWidget">
|
||||||
|
12
src/external/MuSRFitGUI/devel/MuSRFit.ui.h
vendored
12
src/external/MuSRFitGUI/devel/MuSRFit.ui.h
vendored
@ -222,6 +222,16 @@ void MuSRFitform::CreateAllInput()
|
|||||||
$All{"BINS"} = BINS->text;
|
$All{"BINS"} = BINS->text;
|
||||||
$All{"FitAsyType"} = FitAsyType->currentText;
|
$All{"FitAsyType"} = FitAsyType->currentText;
|
||||||
$All{"LRBF"} = LRBF->text;
|
$All{"LRBF"} = LRBF->text;
|
||||||
|
$All{"Xi"}=Xi->text;
|
||||||
|
$All{"Xf"}=Xf->text;
|
||||||
|
$All{"Yi"}=Yi->text;
|
||||||
|
$All{"Yf"}=Yf->text;
|
||||||
|
|
||||||
|
if (ltc->isChecked()) {
|
||||||
|
$All{"ltc"}="y";
|
||||||
|
} else {
|
||||||
|
$All{"ltc"}="n";
|
||||||
|
}
|
||||||
|
|
||||||
RunSelectionToggle();
|
RunSelectionToggle();
|
||||||
my @RUNS = ();
|
my @RUNS = ();
|
||||||
@ -747,5 +757,3 @@ void MuSRFitform::fileBrowse()
|
|||||||
RunFiles->setText($RunFiles);
|
RunFiles->setText($RunFiles);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user