Ignore:
Timestamp:
11/07/01 14:13:50 (23 years ago)
Author:
tbretz
Message:
*** empty log message ***
File:
1 edited

Legend:

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

    r1003 r1050  
    3232// This can be the name of the class or a given name, which identifies     //
    3333// the container in a parameter container list (MParList).                 //
    34 // The container is writte to the ascii file if its ReadyToSave flag is     //
     34// The container is writte to the ascii file if its ReadyToSave flag is    //
    3535// set (MParContainer)                                                     //
    3636//                                                                         //
     
    5454// of the class (eg. MHillas) but it can also be a different name which
    5555// identifies the container in the parameter list.
     56// Because you cannot write more than one container there is no Add-function
     57// like in MWriteRootFile.
     58//
     59//  For Example: MWriteAsciiFile("file.txt", "MHillas");
    5660//
    5761MWriteAsciiFile::MWriteAsciiFile(const char *filename, const char *contname,
     
    7276// Specify a the name of the ascii output file 'filename' and a pointer to
    7377// the container you want to write.
     78// Because you cannot write more than one container there is no Add-function
     79// like in MWriteRootFile.
     80//
     81//  For Example: MHillas hillas;
     82//               MWriteAsciiFile("file.txt", &hillas);
     83//
    7484//
    7585MWriteAsciiFile::MWriteAsciiFile(const char *filename, MParContainer *cont,
Note: See TracChangeset for help on using the changeset viewer.