source: trunk/MagicSoft/MarsOctober/mbase/MParContainer.cc@ 8190

Last change on this file since 8190 was 447, checked in by harald, 24 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
7ClassImp(MParContainer)
8
9MParContainer::MParContainer(const char *name, const char *title)
10{
11 fName = name ? name : ClassName();
12 fTitle = title;
13}
14
15MParContainer::~MParContainer()
16{
17}
18
19MParContainer *MParContainer::New()
20{
21 cout << "Error: No New()-function." << endl;
22 return NULL;
23}
24
25void MParContainer::GetEventFromMagicFile(fstream &fin)
26{
27 cout << "Warning: Reading from Magic file format not defined for " << ClassName() << endl;
28}
29
30void MParContainer::PutEventToMagicFile(fstream &fout)
31{
32 cout << "Warning: Writing to Magic file format not defined for " << ClassName() << endl;
33}
34
35void MParContainer::GetEventFromAsciiFile(fstream &fin)
36{
37 cout << "Warning: Reading from Ascii file format not defined for " << ClassName() << endl;
38}
39
40void 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.