Ignore:
Timestamp:
02/21/02 12:12:37 (23 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars/mbase
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mbase/MWriteAsciiFile.cc

    r1218 r1219  
    3838// AddContainer.                                                           //
    3939//                                                                         //
     40// You can also write single data members of a container (like fWidth      //
     41// of MHillas). For more details see AddContainer. Make sure, that a       //
     42// getter method for the data member exist. The name of the method         //
     43// must be the same than the data member itself, but the f must be         //
     44// replaced by a Get.                                                      //
     45//                                                                         //
    4046/////////////////////////////////////////////////////////////////////////////
    4147
  • trunk/MagicSoft/Mars/mbase/MWriteAsciiFile.h

    r1176 r1219  
    1616    TObjArray fContNames;
    1717    TObjArray fContainer;
     18    TObjArray fMembers;
    1819
    1920    TString fNameFile;
     
    3334    ~MWriteAsciiFile();
    3435
    35     void AddContainer(const char *cname);
    36     void AddContainer(MParContainer *cont);
     36    void AddContainer(const char *cname, const char *member="");
     37    void AddContainer(MParContainer *cont, const char *member="");
    3738
    3839    ClassDef(MWriteAsciiFile, 0) // Class to write one container to an ascii file
Note: See TracChangeset for help on using the changeset viewer.