GSI Object Oriented Online Offline (Go4) GO4-6.4.0
Loading...
Searching...
No Matches
TGo4ComSetObject.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 TGO4COMSETOBJECT_H
15#define TGO4COMSETOBJECT_H
16
18
20class TGo4Analysis;
23class TGo4Parameter;
25class TGo4Condition;
27class TGo4Picture;
28class TH1;
29
40 public:
41
43 TGo4ComSetObject(const char *obname);
44 virtual ~TGo4ComSetObject();
45 Int_t ExeCom() override;
49 void Set(TGo4RemoteCommand *remcon) override;
50
51 void SetObject(TObject *ob) { fxObject = ob; }
52 private:
53
55 Int_t ExeSetPar(TGo4Parameter *par);
56 Int_t ExeSetCon(TGo4Condition *con);
57 Int_t ExeSetHis(TH1 *his);
58 Int_t ExeSetDyn(TGo4DynamicEntry *dyn);
59 Int_t ExeSetPic(TGo4Picture *pic);
60 Int_t ExeSetObj(TObject *ob);
61
63 TObject *fxObject{nullptr};
64
66
68
71
72 ClassDefOverride(TGo4ComSetObject,1)
73};
74
75#endif //TGO4COMSETOBJECT_H
The mother of all go4 analysis.
General setter command for any known object (parameter, condition, histogram, picture,...
Int_t ExeSetDyn(TGo4DynamicEntry *dyn)
Int_t ExeSetCon(TGo4Condition *con)
Int_t ExeCom() override
Do the command action.
Int_t ExeSetPic(TGo4Picture *pic)
void Set(TGo4RemoteCommand *remcon) override
Set internals of this command from specification of external remote command (command container).
Int_t ExeSetObj(TObject *ob)
Int_t ExeSetParStatus(TGo4ParameterStatus *par)
TGo4AnalysisObjectResult * fxResult
structure to keep result of setting action
Int_t ExeSetHis(TH1 *his)
void SetObject(TObject *ob)
Int_t ExeSetPar(TGo4Parameter *par)
TGo4AnalysisClient * fxClient
TGo4Analysis * fxAna
TObject * fxObject
The object to be set.
Go4 condition class.
ABC for all entries that can be kept in a dynamic list.
Status object for an analysis parameter.
Base class for all parameter aggregations, e.g.
Picture cconfiguration in Go4.
Definition TGo4Picture.h:40
This command is a container for commands to be send from master to slave via inter-process transport.