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