| Last change
 on this file since 8751 was             447, checked in by harald, 25 years ago | 
        
          | Bringing the sources for the octobertest under CVS controll.
(november, 3rd, 2000) | 
        
          | 
              
Property                 svn:executable
 set to                 * | 
        
          | File size:
            987 bytes | 
      
      
| Line |  | 
|---|
| 1 | #include "MParContainer.h" | 
|---|
| 2 |  | 
|---|
| 3 | #include <iostream.h> | 
|---|
| 4 |  | 
|---|
| 5 | #include "MTime.h" | 
|---|
| 6 |  | 
|---|
| 7 | ClassImp(MParContainer) | 
|---|
| 8 |  | 
|---|
| 9 | MParContainer::MParContainer(const char *name, const char *title) | 
|---|
| 10 | { | 
|---|
| 11 | fName = name ? name : ClassName(); | 
|---|
| 12 | fTitle = title; | 
|---|
| 13 | } | 
|---|
| 14 |  | 
|---|
| 15 | MParContainer::~MParContainer() | 
|---|
| 16 | { | 
|---|
| 17 | } | 
|---|
| 18 |  | 
|---|
| 19 | MParContainer *MParContainer::New() | 
|---|
| 20 | { | 
|---|
| 21 | cout << "Error: No New()-function." << endl; | 
|---|
| 22 | return NULL; | 
|---|
| 23 | } | 
|---|
| 24 |  | 
|---|
| 25 | void MParContainer::GetEventFromMagicFile(fstream &fin) | 
|---|
| 26 | { | 
|---|
| 27 | cout << "Warning: Reading from Magic file format not defined for " << ClassName() << endl; | 
|---|
| 28 | } | 
|---|
| 29 |  | 
|---|
| 30 | void MParContainer::PutEventToMagicFile(fstream &fout) | 
|---|
| 31 | { | 
|---|
| 32 | cout << "Warning: Writing to Magic file format not defined for " << ClassName() << endl; | 
|---|
| 33 | } | 
|---|
| 34 |  | 
|---|
| 35 | void MParContainer::GetEventFromAsciiFile(fstream &fin) | 
|---|
| 36 | { | 
|---|
| 37 | cout << "Warning: Reading from Ascii file format not defined for " << ClassName() << endl; | 
|---|
| 38 | } | 
|---|
| 39 |  | 
|---|
| 40 | void MParContainer::PutEventToAsciiFile(fstream &fout) | 
|---|
| 41 | { | 
|---|
| 42 | cout << "Warning: Writing to Ascii file format not defined for " << ClassName() << endl; | 
|---|
| 43 | } | 
|---|
       
      
  Note:
 See   
TracBrowser
 for help on using the repository browser.