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