| 1 | /* ======================================================================== *\
|
|---|
| 2 | !
|
|---|
| 3 | ! *
|
|---|
| 4 | ! * This file is part of MARS, the MAGIC Analysis and Reconstruction
|
|---|
| 5 | ! * Software. It is distributed to you in the hope that it can be a useful
|
|---|
| 6 | ! * and timesaving tool in analysing Data of imaging Cerenkov telescopes.
|
|---|
| 7 | ! * It is distributed WITHOUT ANY WARRANTY.
|
|---|
| 8 | ! *
|
|---|
| 9 | ! * Permission to use, copy, modify and distribute this software and its
|
|---|
| 10 | ! * documentation for any purpose is hereby granted without fee,
|
|---|
| 11 | ! * provided that the above copyright notice appear in all copies and
|
|---|
| 12 | ! * that both that copyright notice and this permission notice appear
|
|---|
| 13 | ! * in supporting documentation. It is provided "as is" without express
|
|---|
| 14 | ! * or implied warranty.
|
|---|
| 15 | ! *
|
|---|
| 16 | !
|
|---|
| 17 | !
|
|---|
| 18 | ! Author(s): Thomas Bretz 06/2001 <mailto:tbretz@astro.uni-wuerzburg.de>
|
|---|
| 19 | !
|
|---|
| 20 | ! Copyright: MAGIC Software Development, 2000-2002
|
|---|
| 21 | !
|
|---|
| 22 | !
|
|---|
| 23 | \* ======================================================================== */
|
|---|
| 24 |
|
|---|
| 25 | /////////////////////////////////////////////////////////////////////////////
|
|---|
| 26 | // //
|
|---|
| 27 | // MWriteRootFile //
|
|---|
| 28 | // //
|
|---|
| 29 | // This is a writer to store several containers to a root file. //
|
|---|
| 30 | // The containers are added with AddContainer. //
|
|---|
| 31 | // To understand how it works, see base class MWriteFile //
|
|---|
| 32 | // //
|
|---|
| 33 | // Warning: Checkout the Warning in MTaskList. //
|
|---|
| 34 | // //
|
|---|
| 35 | /////////////////////////////////////////////////////////////////////////////
|
|---|
| 36 | #include "MWriteRootFile.h"
|
|---|
| 37 |
|
|---|
| 38 | #include <fstream.h>
|
|---|
| 39 |
|
|---|
| 40 | #include <TFile.h>
|
|---|
| 41 | #include <TTree.h>
|
|---|
| 42 |
|
|---|
| 43 | #include "MLog.h"
|
|---|
| 44 | #include "MLogManip.h"
|
|---|
| 45 |
|
|---|
| 46 | #include "MParList.h"
|
|---|
| 47 |
|
|---|
| 48 | ClassImp(MRootFileBranch);
|
|---|
| 49 | ClassImp(MWriteRootFile);
|
|---|
| 50 |
|
|---|
| 51 | static const TString gsDefName = "MWriteRootFile";
|
|---|
| 52 | static const TString gsDefTitle = "Task which writes a root-output file";
|
|---|
| 53 | // --------------------------------------------------------------------------
|
|---|
| 54 | //
|
|---|
| 55 | // Default constructor. It is there to support some root stuff.
|
|---|
| 56 | // Don't use it.
|
|---|
| 57 | //
|
|---|
| 58 | MWriteRootFile::MWriteRootFile() : fOut(NULL)
|
|---|
| 59 | {
|
|---|
| 60 | fName = gsDefName;
|
|---|
| 61 | fTitle = gsDefTitle;
|
|---|
| 62 |
|
|---|
| 63 | fBranches.SetOwner();
|
|---|
| 64 | }
|
|---|
| 65 |
|
|---|
| 66 | // --------------------------------------------------------------------------
|
|---|
| 67 | //
|
|---|
| 68 | // Specify the name of the root file. You can also give an option ("UPDATE"
|
|---|
| 69 | // and "RECREATE" would make sense only) as well as the file title and
|
|---|
| 70 | // compression factor. To a more detaild description of the options see
|
|---|
| 71 | // TFile.
|
|---|
| 72 | //
|
|---|
| 73 | MWriteRootFile::MWriteRootFile(const char *fname,
|
|---|
| 74 | const Option_t *opt,
|
|---|
| 75 | const char *ftitle,
|
|---|
| 76 | const Int_t comp,
|
|---|
| 77 | const char *name,
|
|---|
| 78 | const char *title)
|
|---|
| 79 | {
|
|---|
| 80 | fName = name ? name : gsDefName.Data();
|
|---|
| 81 | fTitle = title ? title : gsDefTitle.Data();
|
|---|
| 82 |
|
|---|
| 83 | //
|
|---|
| 84 | // Set the Arrays the owner of its entries. This means, that the
|
|---|
| 85 | // destructor of the arrays will delete all its entries.
|
|---|
| 86 | //
|
|---|
| 87 | fBranches.SetOwner();
|
|---|
| 88 |
|
|---|
| 89 | //
|
|---|
| 90 | // Believing the root user guide, TTree instanced are owned by the
|
|---|
| 91 | // directory (file) in which they are. This means we don't have to
|
|---|
| 92 | // care about their destruction.
|
|---|
| 93 | //
|
|---|
| 94 | //fTrees.SetOwner();
|
|---|
| 95 |
|
|---|
| 96 | //
|
|---|
| 97 | // Open the rootfile
|
|---|
| 98 | //
|
|---|
| 99 | fOut = new TFile(fname, opt, ftitle, comp);
|
|---|
| 100 | }
|
|---|
| 101 |
|
|---|
| 102 | // --------------------------------------------------------------------------
|
|---|
| 103 | //
|
|---|
| 104 | // Prints some statistics about the file to the screen. And closes the file
|
|---|
| 105 | // properly.
|
|---|
| 106 | //
|
|---|
| 107 | MWriteRootFile::~MWriteRootFile()
|
|---|
| 108 | {
|
|---|
| 109 | //
|
|---|
| 110 | // Print some statistics to the looging out.
|
|---|
| 111 | //
|
|---|
| 112 | Print();
|
|---|
| 113 |
|
|---|
| 114 | //
|
|---|
| 115 | // If the file is still open (no error) write the keys. This is necessary
|
|---|
| 116 | // for appearance of the all trees and branches.
|
|---|
| 117 | //
|
|---|
| 118 | if (IsFileOpen())
|
|---|
| 119 | fOut->Write();
|
|---|
| 120 |
|
|---|
| 121 | //
|
|---|
| 122 | // Delete the file. This'll also close the file (if open)
|
|---|
| 123 | //
|
|---|
| 124 | delete fOut;
|
|---|
| 125 |
|
|---|
| 126 | //
|
|---|
| 127 | // Remark:
|
|---|
| 128 | // - Trees are automatically deleted by the the file
|
|---|
| 129 | // (unless file.SetDirectory(0) was called)
|
|---|
| 130 | // - Branches are automatically deleted by the tree destructor
|
|---|
| 131 | //
|
|---|
| 132 |
|
|---|
| 133 | *fLog << inf << "Output File closed and deleted." << endl;
|
|---|
| 134 | }
|
|---|
| 135 |
|
|---|
| 136 | // --------------------------------------------------------------------------
|
|---|
| 137 | //
|
|---|
| 138 | // Prints all trees with the actually number of written entries to log-out.
|
|---|
| 139 | //
|
|---|
| 140 | void MWriteRootFile::Print(Option_t *) const
|
|---|
| 141 | {
|
|---|
| 142 | *fLog << all << " File: " << GetFileName() << endl;
|
|---|
| 143 | *fLog << setfill('-') << setw(strlen(GetFileName())+8) << "" << endl;
|
|---|
| 144 | *fLog << setfill(' '); // FIXME: not resetting setfill results in strange output???
|
|---|
| 145 |
|
|---|
| 146 | TTree *t = NULL;
|
|---|
| 147 | TIter Next(&fTrees);
|
|---|
| 148 | while ((t=(TTree*)Next()))
|
|---|
| 149 | *fLog << t->GetName() << ": \t" << t->GetEntries() << " entries." << endl;
|
|---|
| 150 | *fLog << endl;
|
|---|
| 151 | }
|
|---|
| 152 |
|
|---|
| 153 | // --------------------------------------------------------------------------
|
|---|
| 154 | //
|
|---|
| 155 | // Add a new Container to list of containers which should be written to the
|
|---|
| 156 | // file. Give the name of the container which will identify the container
|
|---|
| 157 | // in the parameterlist. tname is the name of the tree to which the
|
|---|
| 158 | // container should be written (Remark: one tree can hold more than one
|
|---|
| 159 | // container). The default is the same name as the container name.
|
|---|
| 160 | // You can slso specify a title for the tree. This is only
|
|---|
| 161 | // used the first time this tree in 'mentioned'. As default the title
|
|---|
| 162 | // is the name of the tree.
|
|---|
| 163 | //
|
|---|
| 164 | void MWriteRootFile::AddContainer(const char *cname, const char *tname, const char *ttitle)
|
|---|
| 165 | {
|
|---|
| 166 | //
|
|---|
| 167 | // create a new entry in the list of branches to write and
|
|---|
| 168 | // add the entry to the list.
|
|---|
| 169 | //
|
|---|
| 170 | MRootFileBranch *entry = new MRootFileBranch(cname, tname, ttitle);
|
|---|
| 171 | fBranches.AddLast(entry);
|
|---|
| 172 |
|
|---|
| 173 | if (tname && tname[0])
|
|---|
| 174 | AddToBranchList(Form("%s.%s", cname, tname));
|
|---|
| 175 | }
|
|---|
| 176 |
|
|---|
| 177 | // --------------------------------------------------------------------------
|
|---|
| 178 | //
|
|---|
| 179 | // Add a new Container to list of containers which should be written to the
|
|---|
| 180 | // file. Give the pointer to the container. tname is the name of the tree to
|
|---|
| 181 | // which the container should be written (Remark: one tree can hold more than
|
|---|
| 182 | // one container). The default is the same name as the container name.
|
|---|
| 183 | // You can slso specify a title for the tree. This is only
|
|---|
| 184 | // used the first time this tree in 'mentioned'. As default the title
|
|---|
| 185 | // is the name of the tree.
|
|---|
| 186 | //
|
|---|
| 187 | void MWriteRootFile::AddContainer(MParContainer *cont, const char *tname,
|
|---|
| 188 | const char *ttitle)
|
|---|
| 189 | {
|
|---|
| 190 | //
|
|---|
| 191 | // create a new entry in the list of branches to write and
|
|---|
| 192 | // add the entry to the list.
|
|---|
| 193 | //
|
|---|
| 194 | MRootFileBranch *entry = new MRootFileBranch(cont, tname, ttitle);
|
|---|
| 195 | fBranches.AddLast(entry);
|
|---|
| 196 | }
|
|---|
| 197 |
|
|---|
| 198 | // --------------------------------------------------------------------------
|
|---|
| 199 | //
|
|---|
| 200 | // Add a new Container to list of containers which should be written to the
|
|---|
| 201 | // file. Give the pointer to the container. tname is the name of the tree to
|
|---|
| 202 | // which the container should be written (Remark: one tree can hold more than
|
|---|
| 203 | // one container). The default is the same name as the container name.
|
|---|
| 204 | // You can slso specify a title for the tree. This is only
|
|---|
| 205 | // used the first time this tree in 'mentioned'. As default the title
|
|---|
| 206 | // is the name of the tree.
|
|---|
| 207 | //
|
|---|
| 208 | Bool_t MWriteRootFile::GetContainer(MParList *pList)
|
|---|
| 209 | {
|
|---|
| 210 | MRootFileBranch *entry;
|
|---|
| 211 |
|
|---|
| 212 | //
|
|---|
| 213 | // loop over all branches which are 'marked' as branches to get written.
|
|---|
| 214 | //
|
|---|
| 215 | TIter Next(&fBranches);
|
|---|
| 216 | while ((entry=(MRootFileBranch*)Next()))
|
|---|
| 217 | {
|
|---|
| 218 | //
|
|---|
| 219 | // Get the pointer to the container. If the pointer is NULL it seems,
|
|---|
| 220 | // that the user identified the container by name.
|
|---|
| 221 | //
|
|---|
| 222 | MParContainer *cont = entry->GetContainer();
|
|---|
| 223 | if (!cont)
|
|---|
| 224 | {
|
|---|
| 225 | //
|
|---|
| 226 | // Get the name and try to find a container with this name
|
|---|
| 227 | // in the parameter list.
|
|---|
| 228 | //
|
|---|
| 229 | const char *cname = entry->GetContName();
|
|---|
| 230 | cont = (MParContainer*)pList->FindObject(cname);
|
|---|
| 231 | if (!cont)
|
|---|
| 232 | {
|
|---|
| 233 | //
|
|---|
| 234 | // No corresponding container is found
|
|---|
| 235 | //
|
|---|
| 236 | *fLog << dbginf << "Cannot find parameter container '" << cname << "'." << endl;
|
|---|
| 237 | return kFALSE;
|
|---|
| 238 | }
|
|---|
| 239 | //
|
|---|
| 240 | // The container is found. Put the pointer into the entry.
|
|---|
| 241 | //
|
|---|
| 242 | entry->SetContainer(cont);
|
|---|
| 243 | }
|
|---|
| 244 |
|
|---|
| 245 | //
|
|---|
| 246 | // Get container name, tree name and tree title of this entry.
|
|---|
| 247 | //
|
|---|
| 248 | const char *cname = cont->GetName();
|
|---|
| 249 | const char *tname = entry->GetName();
|
|---|
| 250 | const char *ttitle = entry->GetTitle();
|
|---|
| 251 |
|
|---|
| 252 | //
|
|---|
| 253 | // if the tree name is NULL this idetifies it to use the default:
|
|---|
| 254 | // the container name.
|
|---|
| 255 | //
|
|---|
| 256 | if (tname[0] == '\0')
|
|---|
| 257 | tname = cname;
|
|---|
| 258 |
|
|---|
| 259 | //
|
|---|
| 260 | // Check if the tree is already existing (part of the file)
|
|---|
| 261 | //
|
|---|
| 262 | TTree *tree = (TTree*)fOut->Get(tname);
|
|---|
| 263 | if (!tree)
|
|---|
| 264 | {
|
|---|
| 265 | //
|
|---|
| 266 | // if the tree doesn't exist create a new tree. Use the tree
|
|---|
| 267 | // name as title if title is NULL.
|
|---|
| 268 | // And add the tree to the list of trees
|
|---|
| 269 | //
|
|---|
| 270 | TDirectory *save = gDirectory;
|
|---|
| 271 | fOut->cd();
|
|---|
| 272 |
|
|---|
| 273 | tree = new TTree(tname, ttitle ? ttitle : tname);
|
|---|
| 274 | fTrees.AddLast(tree);
|
|---|
| 275 |
|
|---|
| 276 | gDirectory = save;
|
|---|
| 277 |
|
|---|
| 278 | *fLog << "Created Tree " << tname << "." << endl;
|
|---|
| 279 | }
|
|---|
| 280 |
|
|---|
| 281 | //
|
|---|
| 282 | // Now we have a valid tree. Search the list of trees for this tree
|
|---|
| 283 | // (either it is already there, or we created and add it previously)
|
|---|
| 284 | // Add a pointer to the entry in the tree list to this branch-entry
|
|---|
| 285 | //
|
|---|
| 286 | TObject *obj;
|
|---|
| 287 | TIter NextTree(&fTrees);
|
|---|
| 288 | while ((obj=NextTree()))
|
|---|
| 289 | {
|
|---|
| 290 | if (obj == tree)
|
|---|
| 291 | entry->SetTree((TTree*)obj);
|
|---|
| 292 | }
|
|---|
| 293 |
|
|---|
| 294 | //
|
|---|
| 295 | // Try to get the branch from the file.
|
|---|
| 296 | // If the branch already exists the user specified one branch twice.
|
|---|
| 297 | //
|
|---|
| 298 | TBranch *branch = tree->GetBranch(cname);
|
|---|
| 299 | if (branch)
|
|---|
| 300 | {
|
|---|
| 301 | *fLog << dbginf << "Branch '" << cname << "' is already existing." << endl;
|
|---|
| 302 | return kFALSE;
|
|---|
| 303 | }
|
|---|
| 304 |
|
|---|
| 305 | //
|
|---|
| 306 | // Create a new branch in the actual tree. The branch has the name
|
|---|
| 307 | // container name. The type of the container is given by the
|
|---|
| 308 | // ClassName entry in the container. The Address is the address of a
|
|---|
| 309 | // pointer to the container (gotten from the branch entry). As
|
|---|
| 310 | // Basket size we specify a (more or less) common default value.
|
|---|
| 311 | // The containers should be written in Splitlevel=1
|
|---|
| 312 | //
|
|---|
| 313 | TString branchname(cname);
|
|---|
| 314 | branchname.Append(".");
|
|---|
| 315 | branch = tree->Branch(branchname, cont->ClassName(), entry->GetAddress());
|
|---|
| 316 |
|
|---|
| 317 | *fLog << "Created Branch " << cname << " of " << cont->ClassName() << "." << endl;
|
|---|
| 318 |
|
|---|
| 319 | //
|
|---|
| 320 | // If the branch couldn't be created we have a problem.
|
|---|
| 321 | //
|
|---|
| 322 | if (!branch)
|
|---|
| 323 | {
|
|---|
| 324 | *fLog << dbginf << "Unable to create branch '" << cname << "'." << endl;
|
|---|
| 325 | return kFALSE;
|
|---|
| 326 | }
|
|---|
| 327 | }
|
|---|
| 328 | return kTRUE;
|
|---|
| 329 | }
|
|---|
| 330 |
|
|---|
| 331 | // --------------------------------------------------------------------------
|
|---|
| 332 | //
|
|---|
| 333 | // Checks all given containers (branch entries) for the write flag.
|
|---|
| 334 | // If the write flag is set the corresponding Tree is marked to get filled.
|
|---|
| 335 | // All Trees which are marked to be filled are filled with the corresponding
|
|---|
| 336 | // branches.
|
|---|
| 337 | // Be carefull: If only one container (corresponding to a branch) of a tree
|
|---|
| 338 | // has the write flag, all containers in this tree are filled!
|
|---|
| 339 | //
|
|---|
| 340 | void MWriteRootFile::CheckAndWrite() const
|
|---|
| 341 | {
|
|---|
| 342 | const Int_t kFillTree = BIT(14);
|
|---|
| 343 |
|
|---|
| 344 | TObject *obj;
|
|---|
| 345 |
|
|---|
| 346 | //
|
|---|
| 347 | // Loop over all branch entries
|
|---|
| 348 | //
|
|---|
| 349 | TIter NextBranch(&fBranches);
|
|---|
| 350 | while ((obj=NextBranch()))
|
|---|
| 351 | {
|
|---|
| 352 | MRootFileBranch *b = (MRootFileBranch*)obj;
|
|---|
| 353 |
|
|---|
| 354 | //
|
|---|
| 355 | // Check for the Write flag
|
|---|
| 356 | //
|
|---|
| 357 | if (!b->GetContainer()->IsReadyToSave())
|
|---|
| 358 | continue;
|
|---|
| 359 |
|
|---|
| 360 | //
|
|---|
| 361 | // If the write flag of the branch entry is set, set the write flag of
|
|---|
| 362 | // the corresponding tree entry.
|
|---|
| 363 | //
|
|---|
| 364 | b->GetTree()->SetBit(kFillTree);
|
|---|
| 365 | }
|
|---|
| 366 |
|
|---|
| 367 | //
|
|---|
| 368 | // Loop over all tree entries
|
|---|
| 369 | //
|
|---|
| 370 | TIter NextTree(&fTrees);
|
|---|
| 371 | while ((obj=NextTree()))
|
|---|
| 372 | {
|
|---|
| 373 | TTree *t = (TTree*)obj;
|
|---|
| 374 |
|
|---|
| 375 | //
|
|---|
| 376 | // Check the write flag of the tree
|
|---|
| 377 | //
|
|---|
| 378 | if (!t->TestBit(kFillTree))
|
|---|
| 379 | continue;
|
|---|
| 380 |
|
|---|
| 381 | //
|
|---|
| 382 | // If the write flag is set, fill the tree (with the corresponding
|
|---|
| 383 | // branches/containers), delete the write flag and increase the number
|
|---|
| 384 | // of written/filled entries.
|
|---|
| 385 | //
|
|---|
| 386 | t->Fill();
|
|---|
| 387 | t->ResetBit(kFillTree);
|
|---|
| 388 | }
|
|---|
| 389 | }
|
|---|
| 390 |
|
|---|
| 391 | // --------------------------------------------------------------------------
|
|---|
| 392 | //
|
|---|
| 393 | // return open state of the root file.
|
|---|
| 394 | //
|
|---|
| 395 | Bool_t MWriteRootFile::IsFileOpen() const
|
|---|
| 396 | {
|
|---|
| 397 | return fOut->IsOpen();
|
|---|
| 398 | }
|
|---|
| 399 |
|
|---|
| 400 | // --------------------------------------------------------------------------
|
|---|
| 401 | //
|
|---|
| 402 | // return name of the root-file
|
|---|
| 403 | //
|
|---|
| 404 | const char *MWriteRootFile::GetFileName() const
|
|---|
| 405 | {
|
|---|
| 406 | return fOut->GetName();
|
|---|
| 407 | }
|
|---|
| 408 |
|
|---|
| 409 | // --------------------------------------------------------------------------
|
|---|
| 410 | //
|
|---|
| 411 | // Implementation of SavePrimitive. Used to write the call to a constructor
|
|---|
| 412 | // to a macro. In the original root implementation it is used to write
|
|---|
| 413 | // gui elements to a macro-file.
|
|---|
| 414 | //
|
|---|
| 415 | void MWriteRootFile::StreamPrimitive(ofstream &out) const
|
|---|
| 416 | {
|
|---|
| 417 | out << " MWriteRootFile " << GetUniqueName() << "(\"";
|
|---|
| 418 | out << fOut->GetName() << "\", \"";
|
|---|
| 419 | out << fOut->GetOption() << "\", \"";
|
|---|
| 420 | out << fOut->GetTitle() << "\", ";
|
|---|
| 421 | out << fOut->GetCompressionLevel();
|
|---|
| 422 |
|
|---|
| 423 | if (fName!=gsDefName || fTitle!=gsDefTitle)
|
|---|
| 424 | {
|
|---|
| 425 | out << ", \"" << fName << "\"";
|
|---|
| 426 | if (fTitle!=gsDefTitle)
|
|---|
| 427 | out << ", \"" << fTitle << "\"";
|
|---|
| 428 | }
|
|---|
| 429 | out << ");" << endl;
|
|---|
| 430 |
|
|---|
| 431 |
|
|---|
| 432 | MRootFileBranch *entry;
|
|---|
| 433 | TIter Next(&fBranches);
|
|---|
| 434 | while ((entry=(MRootFileBranch*)Next()))
|
|---|
| 435 | {
|
|---|
| 436 | out << " " << GetUniqueName() << ".AddContainer(";
|
|---|
| 437 |
|
|---|
| 438 | if (entry->GetContainer())
|
|---|
| 439 | {
|
|---|
| 440 | entry->GetContainer()->SavePrimitive(out);
|
|---|
| 441 | out << "&" << entry->GetContainer()->GetUniqueName();
|
|---|
| 442 | }
|
|---|
| 443 | else
|
|---|
| 444 | out << "\"" << entry->GetContName() << "\"";
|
|---|
| 445 |
|
|---|
| 446 | out << ", \"" << entry->GetName() << "\"";
|
|---|
| 447 | if ((TString)entry->GetTitle()!="")
|
|---|
| 448 | out << ", \"" << entry->GetTitle() << "\"";
|
|---|
| 449 |
|
|---|
| 450 | out <<");" << endl;
|
|---|
| 451 | }
|
|---|
| 452 | }
|
|---|