Main Page   Namespace List   Class Hierarchy   Alphabetical List   Compound List   File List   Compound Members   File Members  

/Go4FitGUI/QFitDataWidget.ui.h

Go to the documentation of this file.
00001 //---------------------------------------------------------------
00002 //        Go4 Release Package v2.10-5 (build 21005) 
00003 //                      03-Nov-2005
00004 //---------------------------------------------------------------
00005 //       The GSI Online Offline Object Oriented (Go4) Project
00006 //       Experiment Data Processing at DVEE department, GSI
00007 //---------------------------------------------------------------
00008 //
00009 //Copyright (C) 2000- Gesellschaft f. Schwerionenforschung, GSI
00010 //                    Planckstr. 1, 64291 Darmstadt, Germany
00011 //Contact:            http://go4.gsi.de
00012 //----------------------------------------------------------------
00013 //This software can be used under the license agreements as stated
00014 //in Go4License.txt file which is part of the distribution.
00015 //----------------------------------------------------------------
00016 /****************************************************************************
00017 ** ui.h extension file, included from the uic-generated form implementation.
00018 **
00019 ** If you wish to add, delete or rename slots use Qt Designer which will
00020 ** update this file, preserving your code. Create an init() slot in place of
00021 ** a constructor, and a destroy() slot in place of a destructor.
00022 *****************************************************************************/
00023 
00024 
00025 TGo4FitData* QFitDataWidget::GetData() {
00026    return dynamic_cast<TGo4FitData*> (GetObject());
00027 }
00028 
00029 void QFitDataWidget::FillSpecificData() {
00030   QFitNamedWidget::FillSpecificData();
00031 
00032   if(GetData()) {
00033      if(GetData()->GetDataType()==TGo4FitData::dtHistogram) DataInfoLbl->setText("Data type: histogramic");
00034                                                        else DataInfoLbl->setText("Data type: set of points");
00035      DataInfoLbl->adjustSize();
00036 
00037      AmplChk->setChecked(GetData()->GetAmplPar()!=0);
00038      AmplChk->setEnabled(GetData()->CanAmplTouch());
00039 
00040      NumCalibrSpin->setValue(GetData()->GetNumberOfTransSlots());
00041      UseBinsChk->setChecked(GetData()->GetUseBinScale());
00042      SigmaCmb->setCurrentItem(GetData()->GetSigmaSource());
00043      SigmaEdt->setEnabled(GetData()->GetSigmaSource()==2);
00044      SigmaEdt->setText(QString::number(GetData()->GetSigmaValue()));
00045      BinsLimitEdt->setText(QString::number(GetData()->GetExcludeLessThen()));
00046      UseBuffersChk->setChecked(GetData()->GetUseBuffers());
00047 
00048      QString info("Models:");
00049 
00050      TGo4Fitter* fitter = dynamic_cast<TGo4Fitter*> (GetItem()->Parent()->Object());
00051      if (fitter)
00052       for(Int_t nmodel=0;nmodel<fitter->GetNumModel();nmodel++) {
00053          TGo4FitModel* model = fitter->GetModel(nmodel);
00054          if (model->IsAssignTo(GetData()->GetName())) {
00055             info+=" "; info+=model->GetName();
00056          }
00057       }
00058      ModelsLbl->setText(info);
00059      ModelsLbl->adjustSize();
00060    }
00061 }
00062 
00063 void QFitDataWidget::NumCalibrSpin_valueChanged( int num)
00064 {
00065   if(!fbFillWidget && GetData())
00066     if (GetData()->SetNumberOfTransSlots(num)) {
00067        if (fxSlots->GetFitter())
00068          fxSlots->GetFitter()->SetUpdateSlotList();
00069        fxSlots->UpdateItem(GetItem(), TRUE);
00070        fxSlots->UpdateItemsOfType(TGo4FitPanelSlots::ot_allslots);
00071     }
00072 }
00073 
00074 void QFitDataWidget::UseBinsChk_toggled( bool zn)
00075 {
00076  if(!fbFillWidget && GetData())
00077     GetData()->SetUseBinScale(zn);
00078 }
00079 
00080 void QFitDataWidget::SigmaCmb_activated( int zn)
00081 {
00082  if(!fbFillWidget && GetData()) {
00083     GetData()->SetSigmaSource(zn, -1.);
00084     SigmaEdt->setEnabled(zn==2);
00085   }
00086 }
00087 
00088 
00089 void QFitDataWidget::SigmaEdt_textChanged( const QString & value)
00090 {
00091   if(!fbFillWidget && GetData()) {
00092     bool ok = TRUE;
00093     double zn = value.toDouble(&ok);
00094     if(ok) GetData()->SetSigmaValue(zn);
00095   }
00096 }
00097 
00098 void QFitDataWidget::BinsLimitEdt_textChanged( const QString & value)
00099 {
00100   if(!fbFillWidget && GetData()) {
00101     bool ok = TRUE;
00102     double zn = value.toDouble(&ok);
00103     if(ok) GetData()->SetExcludeLessThen(zn);
00104   }
00105 }
00106 
00107 void QFitDataWidget::AmplChk_toggled( bool chk)
00108 {
00109   if(!fbFillWidget && GetData() && GetData()->CanAmplTouch()) {
00110      bool res = FALSE;
00111      if (chk) res = GetData()->MakeAmpl();
00112         else  res = GetData()->RemoveAmpl();
00113      if (res) fxSlots->UpdateItemsOfType(TGo4FitPanelSlots::ot_parslist, GetItem());
00114   }
00115 }
00116 
00117 
00118 void QFitDataWidget::UseBuffersChk_toggled(bool zn)
00119 {
00120   if(!fbFillWidget && GetData())
00121     GetData()->SetUseBuffers(zn);
00122 }
00123 
00124 //----------------------------END OF GO4 SOURCE FILE ---------------------

Generated on Tue Nov 8 10:55:57 2005 for Go4-v2.10-5 by doxygen1.2.15