86 if ((hl = env.GetTable())) {
89 while ((env_rec = (TEnvRec*)next.Next())) {
90 SetValue(env_rec->GetName(), env_rec->GetValue());
110 fComments.Add(
new TNamed(Form(
"# %s\n", line),
""));
158 printf(
"No comments defined\n");
161 for (Int_t ii = 0; ii <
fComments.GetEntries(); ii += 1) {
162 printf(
"%s",
fComments.At(ii)->GetName());
181 if (!fname || !strlen(fname)) {
182 Error(
"WriteFile",
"no file name specified");
187 Error(
"WriteFile",
"TEnv table is empty");
192 if ((ofp = fopen(fname,
"w"))) {
193 for (Int_t ii = 0; ii <
fComments.GetEntries(); ii += 1) {
194 fprintf(ofp,
"%s",
fComments.At(ii)->GetName());
199 TIter next(GetTable());
201 while ((er = (TEnvRec*) next()))
202 if (er->GetLevel() == level || level == kEnvAll)
203 fprintf(ofp,
"%-40s %s\n", Form(
"%s:", er->GetName()),
210 Error(
"WriteFile",
"cannot open %s for writing", fname);
Extension of TEnv to allow the writing of comments in the file.
void AddCommentLine(const Char_t *line)
void AddComments(const Char_t *comments)
virtual ~KVEnv()
Destructor.
void Copy(TObject &obj) const
void CopyTable(TEnv &env)
Copy table of env to this.
virtual Int_t WriteFile(const char *fname, EEnvLevel level=kEnvAll)
Extension of ROOT TString class which allows backwards compatibility with ROOT v3....
void Begin(TString delim) const
KVString Next(Bool_t strip_whitespace=kFALSE) const