source: trunk/MagicSoft/Mars/mbase/MParContainer.h@ 5921

Last change on this file since 5921 was 5713, checked in by tbretz, 20 years ago
*** empty log message ***
File size: 7.1 KB
Line 
1#ifndef MARS_MParContainer
2#define MARS_MParContainer
3
4//////////////////////////////////////////////////////////////////////////
5// //
6// MParContainer //
7// //
8// The basis for all parameter containers //
9// //
10//////////////////////////////////////////////////////////////////////////
11#ifndef MARS_MAGIC
12#include "MAGIC.h"
13#endif
14#ifndef ROOT_TObject
15#include <TObject.h>
16#endif
17#ifndef ROOT_TString
18#include <TString.h>
19#endif
20
21// gcc 3.2
22#include <iosfwd>
23//class ofstream;
24//class ifstream;
25
26class TEnv;
27class TArrayD;
28class TDataMember;
29class TMethodCall;
30
31class MLog;
32class MStatusDisplay;
33
34class MParContainer : public TObject
35{
36protected:
37 TString fName; // parameter container identifier (name)
38 TString fTitle; // parameter container title
39
40 MLog *fLog; // The general log facility for this object, initialized with the global object
41
42 // This data member was added later, because for calculating the
43 // Checksum root (3.02/07) ignores ClassDef=0 all data members
44 // which are not persistent (//!) are used. To make the two
45 // class versions CheckSum-compatible (only getting rid of a
46 // warning) this member is persistent.
47 MStatusDisplay *fDisplay; //!
48
49private:
50 enum {
51 kIsSavedAsPrimitive = BIT(15)
52 };
53
54 Bool_t fReadyToSave; // should be set to true if the contents of the container is changed somehow
55
56public:
57 enum {
58 kEnableGraphicalOutput = BIT(16)
59 };
60
61 MParContainer(const char *name="", const char *title="");
62 MParContainer(const TString &name, const TString &title);
63 MParContainer(const MParContainer &named);
64 MParContainer& operator=(const MParContainer& rhs);
65 virtual ~MParContainer();
66
67 virtual TObject *Clone(const char *newname="") const;
68 virtual Int_t Compare(const TObject *obj) const;
69 virtual void Copy(TObject &named)
70#if ROOT_VERSION_CODE > ROOT_VERSION(3,04,01)
71const
72#endif
73 ;
74 virtual void FillBuffer(char *&buffer);
75
76 static const TString GetDescriptor(const TObject &o);
77
78 virtual const TString GetDescriptor() const;
79 virtual const TString GetUniqueName() const;
80 virtual const char *GetName() const { return fName.Data(); }
81 virtual const char *GetTitle() const { return fTitle.Data(); }
82 virtual ULong_t Hash() const { return fName.Hash(); }
83 virtual Bool_t IsSortable() const { return kTRUE; }
84
85 virtual void SetName(const char *name); // *MENU*
86 virtual void SetObject(const char *name, const char *title);
87 virtual void SetTitle(const char *title=""); // *MENU*
88 virtual void ls(Option_t *option="") const;
89 virtual void Print(Option_t *option="") const;
90 virtual Int_t Sizeof() const;
91 virtual void SavePrimitive(ofstream &out, Option_t *o="");
92
93 virtual MParContainer *New() const;
94 virtual void SetLogStream(MLog *lg) { fLog = lg; }
95 virtual void Reset() { }
96 virtual Bool_t IsReadyToSave() const { return fReadyToSave; }
97 virtual void SetReadyToSave(Bool_t flag=kTRUE) { fReadyToSave=flag; }
98 virtual Bool_t IsSavedAsPrimitive() const { return TestBit(kIsSavedAsPrimitive); }
99 virtual void EnableGraphicalOutput(Bool_t flag=kTRUE) { flag ? SetBit(kEnableGraphicalOutput) : ResetBit(kEnableGraphicalOutput);}
100 virtual Bool_t IsGraphicalOutputEnabled() const { return TestBit(kEnableGraphicalOutput); }
101 virtual void SetVariables(const TArrayD &) { AbstractMethod("SetVariables(const TArrayD&)"); }
102
103 virtual void SetDisplay(MStatusDisplay *d) { fDisplay = d; }
104
105 // FIXME: Change to ostream! Seems to be difficult, because
106 // MTaskListStreamPrimitive calls SavePrimitive(ofstream&).
107 // Maybe with a cast?
108 virtual void StreamPrimitive(ofstream &out) const;
109
110 TMethodCall *GetterMethod(const char *name) const;
111
112 Bool_t WriteDataMember(ostream &out, const char *member, Double_t scale=1) const;
113 Bool_t WriteDataMember(ostream &out, const TDataMember *member, Double_t scale=1) const;
114 Bool_t WriteDataMember(ostream &out, const TList *list) const;
115
116 virtual void AsciiRead(istream &fin);
117 virtual Bool_t AsciiWrite(ostream &out) const;
118
119 Int_t Read(const char *name=NULL) { return TObject::Read(name?name:(const char*)fName); }
120
121 virtual void GetNames(TObjArray &arr) const;
122 virtual void SetNames(TObjArray &arr);
123
124 virtual Int_t TestEnv(const TEnv &env, TString prefix, Bool_t print=kFALSE);
125 virtual Int_t ReadEnv(const TEnv &env, TString prefix, Bool_t print=kFALSE);
126 virtual Bool_t WriteEnv(TEnv &env, TString prefix, Bool_t print=kFALSE) const;
127
128 Bool_t ReadEnv(const TEnv &env, Bool_t print=kFALSE) { return ReadEnv(env, "", print); }
129 Bool_t WriteEnv(TEnv &env, Bool_t print=kFALSE) const { return WriteEnv(env, "", print); }
130
131 Bool_t IsEnvDefined(const TEnv &env, TString prefix, TString postfix, Bool_t print) const;
132 Bool_t IsEnvDefined(const TEnv &env, TString name, Bool_t print) const;
133
134 Int_t GetEnvValue(const TEnv &env, TString prefix, TString postfix, Int_t dflt) const;
135 Double_t GetEnvValue(const TEnv &env, TString prefix, TString postfix, Double_t dflt) const;
136 const char *GetEnvValue(const TEnv &env, TString prefix, TString postfix, const char *dflt) const;
137
138 Int_t GetEnvValue(const TEnv &env, TString prefix, Int_t dflt) const;
139 Double_t GetEnvValue(const TEnv &env, TString prefix, Double_t dflt) const;
140 const char *GetEnvValue(const TEnv &env, TString prefix, const char *dflt) const;
141
142 ClassDef(MParContainer, 0) //The basis for all parameter containers
143};
144
145//!
146//! Maybe we can add a static parameter list to MEvtLoop
147//! Also we can derive MEvtLoop from MTaskList to have a static tasklist, too
148//!
149
150// FIXME: Move as (persistent) static data member to MParContainer
151R__EXTERN TList *gListOfPrimitives; // instantiation in MEvtLoop
152
153/*
154class MParContainer : public TNamed
155{
156protected:
157 MLog *fLog; //! The general log facility for this object, initialized with the global object
158
159private:
160 Bool_t fReadyToSave; //! should be set to true if the contents of the container is changed somehow
161
162public:
163 MParContainer(const char *name="", const char *title="") : TNamed(name, title), fLog(&gLog), fReadyToSave(kFALSE) { }
164 MParContainer(const TString &name, const TString &title) : TNamed(name, title), fLog(&gLog), fReadyToSave(kFALSE) { }
165
166 void SetLogStream(MLog *lg) { fLog = lg; }
167
168 virtual void Reset() { }
169
170 virtual Bool_t IsReadyToSave() { return fReadyToSave; }
171 virtual void SetReadyToSave(Bool_t flag=kTRUE) { fReadyToSave=flag; }
172
173 virtual void AsciiRead(ifstream &fin);
174 virtual void AsciiWrite(ofstream &fout) const;
175
176 ClassDef(MParContainer, 0) //The basis for all parameter containers
177};
178*/
179#endif
180
181
Note: See TracBrowser for help on using the repository browser.