GSI Object Oriented Online Offline (Go4) GO4-6.4.0
Loading...
Searching...
No Matches
TGo4FitDataProfile.h
Go to the documentation of this file.
1// $Id$
2//-----------------------------------------------------------------------
3// The GSI Online Offline Object Oriented (Go4) Project
4// Experiment Data Processing at EE department, GSI
5//-----------------------------------------------------------------------
6// Copyright (C) 2000- GSI Helmholtzzentrum fuer Schwerionenforschung GmbH
7// Planckstr. 1, 64291 Darmstadt, Germany
8// Contact: http://go4.gsi.de
9//-----------------------------------------------------------------------
10// This software can be used under the license agreements as stated
11// in Go4License.txt file which is part of the distribution.
12//-----------------------------------------------------------------------
13
14#ifndef TGO4FITDATAPROFILE_H
15#define TGO4FITDATAPROFILE_H
16
17#include "TGo4FitData.h"
18#include "TGo4FitSlot.h"
19
20class TProfile;
21
30 public:
31
36
42 TGo4FitDataProfile(const char *iName, TProfile *iProfile = nullptr, Bool_t iGraphOwned = kFALSE, Bool_t AddAmpl = kFALSE);
43
47 virtual ~TGo4FitDataProfile();
48
52 TProfile *GetProfile() const { return (TProfile *) fxProfile.GetObject(); }
53
58 void SetProfile(TProfile *iProfile, Bool_t iProfileOwned = kFALSE);
59
63 std::unique_ptr<TGo4FitDataIter> MakeIter() override;
64
68 void FillSlotList(TSeqCollection *list) override;
69
73 void Print(Option_t *option = "") const override;
74
75 protected:
76
81
82 ClassDefOverride(TGo4FitDataProfile,1)
83};
84
85// **************************************************************************
86
88 public:
92
93 protected:
94 TGo4FitData *GetData() const override { return fxData; }
95 Bool_t StartReset() override;
96 Bool_t ReadCurrentPoint() override;
97 Bool_t ShiftToNextPoint() override;
98
99 private:
101 Int_t fiNumPoints{0};
102
103 ClassDefOverride(TGo4FitDataProfileIter,1)
104};
105
106
107#endif // TGO4FITDATAPROFILE_H
TGo4FitDataIter()
Default constructor.
Bool_t ShiftToNextPoint() override
Move pointer to following data point.
TGo4FitData * GetData() const override
Return pointer on correspondent TGo4FitData object, which create iterator.
TGo4FitDataProfile * fxData
Bool_t ReadCurrentPoint() override
Perform specific actions to read all values from data object.
Bool_t StartReset() override
Reset pointer and other specific values to the beginning of data.
Data object, which provides access to TProfile ROOT class.
std::unique_ptr< TGo4FitDataIter > MakeIter() override
Create TGo4FitDataProfileIter iterator, associated with given data object.
void Print(Option_t *option="") const override
Print information on standard output.
TGo4FitDataProfile()
Default constructor.
TProfile * GetProfile() const
Returns pointer on TProfile object.
void SetProfile(TProfile *iProfile, Bool_t iProfileOwned=kFALSE)
Set pointer on TProfile object.
virtual ~TGo4FitDataProfile()
Destroys TGo4FitDataProfile object.
TGo4FitSlot fxProfile
Slot for TProfile object.
void FillSlotList(TSeqCollection *list) override
Add pointer on slot, which should contain TProfile object, to list of slots.
Basic abstract class for representing data, which should be fitted.
Definition TGo4FitData.h:39
TGo4FitData()
Default constructor.
Managing pointers on specific objects.
Definition TGo4FitSlot.h:28