Public Types | Public Member Functions | Protected Member Functions | Protected Attributes | Private Member Functions | Private Attributes | Friends

TGo4FitData Class Reference

#include <TGo4FitData.h>

Inheritance diagram for TGo4FitData:
TGo4FitComponent TGo4FitParsList TGo4FitSlotList TGo4FitNamed TGo4FitDataGraph TGo4FitDataHistogram TGo4FitDataProfile TGo4FitDataRidge

List of all members.

Public Types

enum  { dtHistogram = 1, dtGraph = 2 }

Public Member Functions

 TGo4FitData ()
 TGo4FitData (const char *iName, const char *iTitle, Int_t iDataType=dtHistogram, Bool_t AddAmpl=kFALSE)
virtual ~TGo4FitData ()
const Int_t GetDataType ()
Bool_t GetUseBinScale ()
void SetUseBinScale (Bool_t iUseBinScale)
virtual Bool_t CanAmplTouch ()
Int_t GetSigmaSource () const
Double_t GetSigmaValue () const
void SetSigmaSource (Int_t TakeFrom, Double_t SigmaValue=1.)
void SetSigmaValue (Double_t SigmaValue)
void SetExcludeLessThen (Double_t limit=0.)
Double_t GetExcludeLessThen () const
Bool_t SetNumberOfTransSlots (Int_t nslots)
Int_t GetNumberOfTransSlots ()
TGo4FitSlotGetAxisTransSlot (Int_t nslot)
TGo4FitAxisTransGetAxisTrans (Int_t nslot)
void SetAxisTrans (Int_t nslot, TGo4FitAxisTrans *Trans, Bool_t TransOwned=kFALSE)
void AddAxisTrans (TGo4FitAxisTrans *Trans, Bool_t TransOwned=kFALSE)
void SetAxisTransNeeded (Int_t nslot, Bool_t iNeeded=kFALSE)
virtual Bool_t IsAnyDataTransform ()
virtual TGo4FitDataIterMakeIter ()
TObject * CreateDrawObject (const char *ObjName)
Bool_t DefineScaleMinMax (Int_t naxis, Double_t &min, Double_t &max)
Int_t DefineDimensions ()
Int_t DefineBinsSize ()
Bool_t IsCompatibleData (TGo4FitData *data)
void ApplyRangesForModelMask (TGo4FitComponent *model, Char_t *ModelMask)
virtual void FillSlotList (TSeqCollection *list)
virtual void Print (Option_t *option) const

Protected Member Functions

virtual Bool_t Initialize (Int_t UseBuffers=-1)
virtual void Finalize ()
Bool_t BuffersAllocated () const
Int_t GetBinsSize () const
Int_t GetScalesSize () const
Double_t * GetBinsValues ()
Double_t * GetBinsDevs ()
Double_t * GetBinsResult ()
const Double_t * GetScaleValues (const Int_t nbin)
const Double_t * GetWidthValues (const Int_t nbin)
const Int_t * GetFullIndex (Int_t nbin)
Int_t GetIndexesSize () const

Protected Attributes

Int_t fiDataType
Bool_t fbUseBinScale
Int_t fiTakeSigmasFrom
Double_t fdSigmaValue
Double_t fdExcludeLessThen
TObjArray fxAxisTrans

Private Member Functions

void ResetAllPoinetrs ()
void ReleaseAllPointers ()

Private Attributes

Int_t fiBinsSize
Int_t fiIndexesSize
Int_t fiScalesSize
Double_t * fxValues
Double_t * fxStandDev
Double_t * fxBinsResult
Double_t * fxFullScale
Double_t * fxFullWidth
Int_t * fxFullIndex

Friends

class TGo4FitModel
class TGo4Fitter

Detailed Description

Basic abstract class for representing data, which should be fitted.

Definition at line 32 of file TGo4FitData.h.


Member Enumeration Documentation

anonymous enum
Enumerator:
dtHistogram 
dtGraph 

Definition at line 34 of file TGo4FitData.h.


Constructor & Destructor Documentation

TGo4FitData::TGo4FitData (  ) 

Default constructor.

Definition at line 30 of file TGo4FitData.cxx.

References ResetAllPoinetrs().

TGo4FitData::TGo4FitData ( const char *  iName,
const char *  iTitle,
Int_t  iDataType = dtHistogram,
Bool_t  AddAmpl = kFALSE 
)

Creates TGo4FitData object with given name and title. Type of data (histogram or points) and usage of amplitude can be specified. TGo4FitData object should not be created directly. Implementation of this class like TGo4FitDataHistogram, TGo4FitDataGraph and so on should be used.

Definition at line 36 of file TGo4FitData.cxx.

References fxAxisTrans, TGo4FitComponent::NewAmplitude(), and ResetAllPoinetrs().

TGo4FitData::~TGo4FitData (  )  [virtual]

Destroys TGo4FitData object.

Definition at line 48 of file TGo4FitData.cxx.

References ReleaseAllPointers().


Member Function Documentation

void TGo4FitData::AddAxisTrans ( TGo4FitAxisTrans Trans,
Bool_t  TransOwned = kFALSE 
)

Add transformation object to data. First new slot reserved for this object.

Definition at line 93 of file TGo4FitData.cxx.

References fxAxisTrans, GetNumberOfTransSlots(), SetNumberOfTransSlots(), and TGo4FitSlotList::SetObject().

Referenced by Example6().

void TGo4FitData::ApplyRangesForModelMask ( TGo4FitComponent model,
Char_t *  ModelMask 
)

Exclude points from model according model range conditions. Primary range conditions defines for data. No any model, associated to this data, can exceed it's ranges. But not full data range can be used for explicit model evaluation. This functions fill model mask (array of chars) inside data range, where model should be evaluated. Can be used only after Initialize() method.

Definition at line 283 of file TGo4FitData.cxx.

References BuffersAllocated(), TGo4FitComponent::CheckRangeConditions(), GetBinsSize(), GetScalesSize(), GetScaleValues(), MakeIter(), TGo4FitDataIter::Next(), TGo4FitDataIter::Reset(), TGo4FitDataIter::Scales(), and TGo4FitDataIter::ScalesSize().

Referenced by TGo4FitModel::Initialize().

Bool_t TGo4FitData::BuffersAllocated (  )  const [inline, protected]
virtual Bool_t TGo4FitData::CanAmplTouch (  )  [inline, virtual]

Always return kTRUE. This specify that any data object may has or hasnot amplitude. Amplitude parameter (if exist) will be used to scale bins values.

Reimplemented from TGo4FitComponent.

Definition at line 74 of file TGo4FitData.h.

TObject * TGo4FitData::CreateDrawObject ( const char *  ObjName  ) 

Creates object, which can be drawn on canvas by ROOT. This method creates either TH1 (in case of histogram data) or TGraph object and fills bins by content of data.

Definition at line 113 of file TGo4FitData.cxx.

References TGo4FitDataIter::CreateDrawObject(), and MakeIter().

Int_t TGo4FitData::DefineBinsSize (  ) 

Defines number of selected bins in data Creates iterator and sequentially checks all points

Definition at line 241 of file TGo4FitData.cxx.

References TGo4FitDataIter::CountPoints(), and MakeIter().

Referenced by TGo4Fitter::CalculateNDF().

Int_t TGo4FitData::DefineDimensions (  ) 

Define dimension number of data Create iterator and checks number of dimension

Definition at line 232 of file TGo4FitData.cxx.

References TGo4FitDataIter::IndexesSize(), MakeIter(), and TGo4FitDataIter::Reset().

Referenced by TGo4FitPanel::Button_SimpleFit(), TGo4FitPanel::CreateModel(), and TGo4FitPanel::LocateModel().

Bool_t TGo4FitData::DefineScaleMinMax ( Int_t  naxis,
Double_t &  min,
Double_t &  max 
)

Return scales minimum and maximum for specified axis. Can be used before or after Initialize() method.

Definition at line 214 of file TGo4FitData.cxx.

References MakeIter(), TGo4FitDataIter::Next(), TGo4FitDataIter::Reset(), TGo4FitDataIter::Scales(), and TGo4FitDataIter::ScalesSize().

Referenced by TGo4FitPanel::Cmd_AddRangeCondition().

void TGo4FitData::FillSlotList ( TSeqCollection *  list  )  [virtual]

Copy pointers on all slots of data object to list.

Reimplemented from TGo4FitSlotList.

Reimplemented in TGo4FitDataGraph, TGo4FitDataHistogram, TGo4FitDataProfile, and TGo4FitDataRidge.

Definition at line 307 of file TGo4FitData.cxx.

References fxAxisTrans.

Referenced by TGo4FitModelFromData::FillSlotList(), TGo4FitDataRidge::FillSlotList(), and TGo4FitPanel::UpdateWizStackWidget().

void TGo4FitData::Finalize (  )  [protected, virtual]

Removes all buffers, created in initialize() routine.

Definition at line 179 of file TGo4FitData.cxx.

References ReleaseAllPointers().

Referenced by TGo4Fitter::FinalizeFitterData().

TGo4FitAxisTrans * TGo4FitData::GetAxisTrans ( Int_t  nslot  ) 

Return transformation object for given slot.

Definition at line 79 of file TGo4FitData.cxx.

References GetAxisTransSlot(), and TGo4FitSlot::GetObject().

Referenced by Initialize(), IsAnyDataTransform(), and TGo4FitDataIter::TransformScales().

TGo4FitSlot * TGo4FitData::GetAxisTransSlot ( Int_t  nslot  ) 

Return slot for transformation object.

Definition at line 74 of file TGo4FitData.cxx.

References fxAxisTrans.

Referenced by GetAxisTrans().

Double_t* TGo4FitData::GetBinsDevs (  )  [inline, protected]

Returns pointer on buffer with standard deviations for each data bins. Buffer has GetBinsSize() values. Return 0, if buffers were not allocated.

Definition at line 261 of file TGo4FitData.h.

References fxStandDev.

Referenced by TGo4Fitter::CalculateFCN(), and TGo4Fitter::GetDataBinsDevs().

Double_t* TGo4FitData::GetBinsResult (  )  [inline, protected]

Returns pointer on buffer with complete model of data bins. Buffer has GetBinsSize() values. Return 0, if buffers were not allocated.

Definition at line 267 of file TGo4FitData.h.

References fxBinsResult.

Referenced by TGo4FitModel::AddModelToDataResult(), TGo4Fitter::CalculateFCN(), TGo4Fitter::GetDataBinsResult(), and TGo4Fitter::RebuildAll().

Int_t TGo4FitData::GetBinsSize (  )  const [inline, protected]
Double_t* TGo4FitData::GetBinsValues (  )  [inline, protected]

Returns pointer on buffer with data bins values. Buffer has GetBinsSize() values. Return 0, if buffers were not allocated.

Definition at line 255 of file TGo4FitData.h.

References fxValues.

Referenced by TGo4Fitter::CalculateFCN(), and TGo4Fitter::GetDataBinsValues().

const Int_t TGo4FitData::GetDataType (  )  [inline]

Returns type of data source. 0 - histogram, 1 - points (scale values have no width)

Definition at line 57 of file TGo4FitData.h.

References fiDataType.

Referenced by TGo4FitPanel::Button_FitterDraw(), TGo4FitDataIter::ProduceScales(), and TGo4FitDataRidgeIter::StartReset().

Double_t TGo4FitData::GetExcludeLessThen (  )  const [inline]

Returns limit, which uses to exclude bins, less then this limit.

Definition at line 112 of file TGo4FitData.h.

References fdExcludeLessThen.

Referenced by TGo4FitDataIter::CheckPointForRange(), IsAnyDataTransform(), and Print().

const Int_t * TGo4FitData::GetFullIndex ( Int_t  nbin  )  [protected]

Return indexes values for specified data bin from buffer. Can be used only if buffers were allocated, otherwise return 0. nbin should be from 0 to GetBinsSize()-1

Definition at line 264 of file TGo4FitData.cxx.

References fxFullIndex, and GetIndexesSize().

Referenced by TGo4FitModel::GetDataFullIndex().

Int_t TGo4FitData::GetIndexesSize (  )  const [inline, protected]

Returns dimension of indexes arrays. Can be used after Initialize() method, otherwise TGo4FitDataIter::IndexesSize() method should be used.

Definition at line 291 of file TGo4FitData.h.

References fiIndexesSize.

Referenced by TGo4FitModel::GetDataIndexesSize(), GetFullIndex(), and IsCompatibleData().

Int_t TGo4FitData::GetNumberOfTransSlots (  )  [inline]

Return number of slots for scale transformation objects.

Definition at line 126 of file TGo4FitData.h.

References fxAxisTrans.

Referenced by AddAxisTrans(), Initialize(), IsAnyDataTransform(), TGo4FitDataIter::ProduceScales(), SetAxisTrans(), SetAxisTransNeeded(), SetNumberOfTransSlots(), and TGo4FitDataIter::TransformScales().

Int_t TGo4FitData::GetScalesSize (  )  const [inline, protected]

Returns number of axis values for each point. Can be used after Initialize() method, otherwise TGo4FitDataIter::ScalesSize() method should be used.

Definition at line 249 of file TGo4FitData.h.

References fiScalesSize.

Referenced by TGo4FitModel::AddModelToDataResult(), ApplyRangesForModelMask(), TGo4FitModel::EvaluateAtPoint(), GetScaleValues(), GetWidthValues(), and TGo4FitModel::RebuildShape().

const Double_t * TGo4FitData::GetScaleValues ( const Int_t  nbin  )  [protected]

Return scale values for specified index from buffer. Can be used only if buffers were allocated, otherwise return 0. nbin should be from 0 to GetBinsSize()-1

Definition at line 252 of file TGo4FitData.cxx.

References fxFullScale, and GetScalesSize().

Referenced by ApplyRangesForModelMask(), and TGo4FitModel::EvaluateAtPoint().

Int_t TGo4FitData::GetSigmaSource (  )  const [inline]

Return source of sigma values. Possible values are: 0 - no sigma sources; 1 - sigma should be taken from data source object; 2 - sigma is constant and defined by GetSigmaValue() function.

Definition at line 83 of file TGo4FitData.h.

References fiTakeSigmasFrom.

Referenced by TGo4FitDataIter::GetDeviation(), and Print().

Double_t TGo4FitData::GetSigmaValue (  )  const [inline]

Return constant sigma value. Uses, when GetSigmaSource() returns 2.

Definition at line 89 of file TGo4FitData.h.

References fdSigmaValue.

Referenced by TGo4FitDataIter::GetDeviation(), and Print().

Bool_t TGo4FitData::GetUseBinScale (  )  [inline]

Returns kTRUE, if binary numbers used as scale values.

Definition at line 62 of file TGo4FitData.h.

References fbUseBinScale.

Referenced by IsAnyDataTransform(), TGo4FitDataIter::ProduceScales(), and TGo4FitDataIter::ReserveArrays().

const Double_t * TGo4FitData::GetWidthValues ( const Int_t  nbin  )  [protected]

Return scales width values for specified index from buffer. Can be used only if buffers were allocated, otherwise return 0. nbin should be from 0 to GetBinsSize()-1

Definition at line 258 of file TGo4FitData.cxx.

References fxFullWidth, and GetScalesSize().

Referenced by TGo4FitModel::EvaluateAtPoint().

Bool_t TGo4FitData::Initialize ( Int_t  UseBuffers = -1  )  [protected, virtual]

Initialize data object. This routine should be used to allocate memory for internal buffers. Its automatically calls in DoActions() routine of fitter. if UseBuffers>0 or ( GetUseBuffers() && UseBuffers<0) internal buffers will be created. Consuming more memory may dramatically decrease time for fitting.

Definition at line 121 of file TGo4FitData.cxx.

References TGo4FitDataIter::CountPoints(), fiBinsSize, fiIndexesSize, fiScalesSize, fxBinsResult, fxFullIndex, fxFullScale, fxFullWidth, fxStandDev, fxValues, GetAxisTrans(), GetNumberOfTransSlots(), TGo4FitDataIter::HasIndexes(), TGo4FitDataIter::HasWidths(), TGo4FitDataIter::Indexes(), TGo4FitDataIter::IndexesSize(), TGo4FitParsList::IsAllParsFixed(), MakeIter(), TGo4FitDataIter::Next(), TGo4FitDataIter::Reset(), TGo4FitDataIter::Scales(), TGo4FitDataIter::ScalesSize(), TGo4FitDataIter::StandardDeviation(), TGo4FitDataIter::Value(), and TGo4FitDataIter::Widths().

Referenced by TGo4Fitter::InitFitterData().

Bool_t TGo4FitData::IsAnyDataTransform (  )  [virtual]

Return kTRUE, if either initial data axis or data bins are transformed by TGo4FitData object. For instance, if SetUseBinScales() is used.

Definition at line 106 of file TGo4FitData.cxx.

References GetAxisTrans(), GetExcludeLessThen(), GetNumberOfTransSlots(), and GetUseBinScale().

Referenced by TGo4FitPanel::Button_FitterDraw(), TGo4FitPanel::PaintModelsFor(), and TGo4FitPanel::UpdateWizPaint().

Bool_t TGo4FitData::IsCompatibleData ( TGo4FitData data  ) 

Checks, if data has same dimensions number and size of each dimensions. Used, when one data objects used to be a model component of another data object. Should be used only after Initialize() method for current data object.

Definition at line 270 of file TGo4FitData.cxx.

References GetIndexesSize(), TGo4FitDataIter::IndexesSize(), MakeIter(), and TGo4FitDataIter::Reset().

Referenced by TGo4FitModelFromData::Initialize().

void TGo4FitData::Print ( Option_t *  option  )  const [virtual]

Display information about data object on standard output.

Reimplemented from TGo4FitComponent.

Reimplemented in TGo4FitDataGraph, TGo4FitDataHistogram, TGo4FitDataProfile, and TGo4FitDataRidge.

Definition at line 314 of file TGo4FitData.cxx.

References fbUseBinScale, fiDataType, fxAxisTrans, GetExcludeLessThen(), GetSigmaSource(), and GetSigmaValue().

Referenced by TGo4FitModelFromData::Print(), and TGo4FitDataRidge::Print().

void TGo4FitData::ReleaseAllPointers (  )  [private]

Release all memory, allocated for buffers.

Definition at line 198 of file TGo4FitData.cxx.

References fxBinsResult, fxFullIndex, fxFullScale, fxFullWidth, fxStandDev, fxValues, and ResetAllPoinetrs().

Referenced by Finalize(), and ~TGo4FitData().

void TGo4FitData::ResetAllPoinetrs (  )  [private]

Array of slots for calibrations MaxDimension Clears (sets to 0) all pointers, used for buffer allocations.

Definition at line 183 of file TGo4FitData.cxx.

References fiBinsSize, fiIndexesSize, fiScalesSize, fxBinsResult, fxFullIndex, fxFullScale, fxFullWidth, fxStandDev, and fxValues.

Referenced by ReleaseAllPointers(), and TGo4FitData().

void TGo4FitData::SetAxisTrans ( Int_t  nslot,
TGo4FitAxisTrans Trans,
Bool_t  TransOwned = kFALSE 
)

Sets transformation object for given slot. If not enough slots was reserved, SetNumberOfTransSlots(nslot+1) will be called first.

Definition at line 85 of file TGo4FitData.cxx.

References fxAxisTrans, GetNumberOfTransSlots(), SetNumberOfTransSlots(), and TGo4FitSlotList::SetObject().

void TGo4FitData::SetAxisTransNeeded ( Int_t  nslot,
Bool_t  iNeeded = kFALSE 
)

Specified, when iNeeded = kTRUE, that transformation object should always be provided to data.

Definition at line 99 of file TGo4FitData.cxx.

References fxAxisTrans, GetNumberOfTransSlots(), and SetNumberOfTransSlots().

void TGo4FitData::SetExcludeLessThen ( Double_t  limit = 0.  )  [inline]

Sets limit to exclude bins, which not less then this limit.

Definition at line 107 of file TGo4FitData.h.

References fdExcludeLessThen.

Referenced by QFitDataWidget::BinsLimitEdt_textChanged(), Example13(), TGo4FitDataGraph::TGo4FitDataGraph(), TGo4FitDataProfile::TGo4FitDataProfile(), and TGo4FitDataRidge::TGo4FitDataRidge().

Bool_t TGo4FitData::SetNumberOfTransSlots ( Int_t  nslots  ) 

Sets number of slots for scale transformation objects. By default, TGo4FitData has no place (slots) for transformation objects. In this case scale values can be taken from data source (TAxis of TH1) or just bins numbers can be used. To use transformation of these values, inherited from TGo4FitAxisTrans class should be used. Slots fot such objects can be reserved first.

Definition at line 53 of file TGo4FitData.cxx.

References fxAxisTrans, GetNumberOfTransSlots(), and TGo4FitSlotList::SetUpdateSlotList().

Referenced by AddAxisTrans(), BuildFitter(), SetAxisTrans(), and SetAxisTransNeeded().

void TGo4FitData::SetSigmaSource ( Int_t  TakeFrom,
Double_t  SigmaValue = 1. 
) [inline]

Sets source of sigma for data. For description see GetSigmaSource() function.

Definition at line 95 of file TGo4FitData.h.

References fdSigmaValue, and fiTakeSigmasFrom.

Referenced by QFitDataWidget::SigmaCmb_activated().

void TGo4FitData::SetSigmaValue ( Double_t  SigmaValue  )  [inline]

Set constant sigma value. Value will be used, if GetSigmaSource()==2.

Definition at line 102 of file TGo4FitData.h.

References fdSigmaValue.

Referenced by QFitDataWidget::SigmaEdt_textChanged().

void TGo4FitData::SetUseBinScale ( Bool_t  iUseBinScale  )  [inline]

If kTRUE, binary numbers will be used as scale values.

Definition at line 67 of file TGo4FitData.h.

References fbUseBinScale.

Referenced by BuildFitter(), and QFitDataWidget::UseBinsChk_toggled().


Friends And Related Function Documentation

friend class TGo4FitModel [friend]

Definition at line 218 of file TGo4FitData.h.

friend class TGo4Fitter [friend]

Definition at line 219 of file TGo4FitData.h.


Member Data Documentation

Bool_t TGo4FitData::fbUseBinScale [protected]

Use binary numbers as scale values. if this flag set, bin numbers are used as scale values

Definition at line 303 of file TGo4FitData.h.

Referenced by GetUseBinScale(), Print(), and SetUseBinScale().

Double_t TGo4FitData::fdExcludeLessThen [protected]

Sets limit for exclude bins, which less then this limit

Definition at line 319 of file TGo4FitData.h.

Referenced by GetExcludeLessThen(), and SetExcludeLessThen().

Double_t TGo4FitData::fdSigmaValue [protected]

Value of sigma when fiTakeSigmasFrom = 2

Definition at line 314 of file TGo4FitData.h.

Referenced by GetSigmaValue(), SetSigmaSource(), and SetSigmaValue().

Int_t TGo4FitData::fiBinsSize [private]

Number of entries in buffers.

Definition at line 346 of file TGo4FitData.h.

Referenced by GetBinsSize(), Initialize(), and ResetAllPoinetrs().

Int_t TGo4FitData::fiDataType [protected]

Specified type of data: 0 - Histogram, 1 - graphics, 2 and so on - user defined

Definition at line 297 of file TGo4FitData.h.

Referenced by GetDataType(), and Print().

Int_t TGo4FitData::fiIndexesSize [private]

Number of indexes for each point.

Definition at line 351 of file TGo4FitData.h.

Referenced by GetIndexesSize(), Initialize(), and ResetAllPoinetrs().

Int_t TGo4FitData::fiScalesSize [private]

Number of scales values for each point.

Definition at line 356 of file TGo4FitData.h.

Referenced by GetScalesSize(), Initialize(), and ResetAllPoinetrs().

Int_t TGo4FitData::fiTakeSigmasFrom [protected]

Specify sigma source. 0 - no sigmas, 1 - try take from data, 2 - const value (fdSigmaValue)

Definition at line 309 of file TGo4FitData.h.

Referenced by GetSigmaSource(), and SetSigmaSource().

TObjArray TGo4FitData::fxAxisTrans [protected]

Array of slots for scale transformation objects.

Definition at line 324 of file TGo4FitData.h.

Referenced by AddAxisTrans(), FillSlotList(), GetAxisTransSlot(), GetNumberOfTransSlots(), Print(), SetAxisTrans(), SetAxisTransNeeded(), SetNumberOfTransSlots(), and TGo4FitData().

Double_t* TGo4FitData::fxBinsResult [private]

Buffer for complete model of bins values.

Definition at line 371 of file TGo4FitData.h.

Referenced by GetBinsResult(), Initialize(), ReleaseAllPointers(), and ResetAllPoinetrs().

Int_t* TGo4FitData::fxFullIndex [private]

Store combination of indexes for each data bins. Size of [GetBinsSize()][NumDimension()]. Used in case of maximum memory usage.

Definition at line 392 of file TGo4FitData.h.

Referenced by GetFullIndex(), Initialize(), ReleaseAllPointers(), and ResetAllPoinetrs().

Double_t* TGo4FitData::fxFullScale [private]

Array of axis values for each bins. Used in case of maximum memory usage. Size [BinsSize * AxisNumber]

Definition at line 378 of file TGo4FitData.h.

Referenced by BuffersAllocated(), GetScaleValues(), Initialize(), ReleaseAllPointers(), and ResetAllPoinetrs().

Double_t* TGo4FitData::fxFullWidth [private]

Array of width values for each bin. Used in case of maximum memory usage. Size [BinsSize * AxisNumber]

Definition at line 385 of file TGo4FitData.h.

Referenced by GetWidthValues(), Initialize(), ReleaseAllPointers(), and ResetAllPoinetrs().

Double_t* TGo4FitData::fxStandDev [private]

Buffer for standard deviations of bins values.

Definition at line 366 of file TGo4FitData.h.

Referenced by GetBinsDevs(), Initialize(), ReleaseAllPointers(), and ResetAllPoinetrs().

Double_t* TGo4FitData::fxValues [private]

Buffer for bins values.

Definition at line 361 of file TGo4FitData.h.

Referenced by BuffersAllocated(), GetBinsValues(), Initialize(), ReleaseAllPointers(), and ResetAllPoinetrs().


The documentation for this class was generated from the following files:
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines