Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014 #include "TGo4MbsStream.h"
00015
00016 #include "TGo4Log.h"
00017 #include "TGo4MbsStreamParameter.h"
00018
00019 TGo4MbsStream::TGo4MbsStream(const char* name) :
00020 TGo4MbsSource(name , GETEVT__STREAM)
00021 {
00022 GO4TRACE((15,"TGo4MbsStream::TGo4MbsStream(const char*)",__LINE__, __FILE__));
00023
00024 TGo4Log::Debug(" New Event Source MbsStream %s: ",name);
00025 Open();
00026 }
00027
00028 TGo4MbsStream::TGo4MbsStream(TGo4MbsStreamParameter* par) :
00029 TGo4MbsSource(par , GETEVT__STREAM)
00030 {
00031 GO4TRACE((15,"TGo4MbsStream::TGo4MbsStream(TGo4MbsStreamParameter**)",__LINE__, __FILE__));
00032
00033 TGo4Log::Debug(" New Event Source MbsStream %s: ",GetName());
00034 Open();
00035 }
00036
00037 TGo4MbsStream::TGo4MbsStream()
00038 {
00039 GO4TRACE((15,"TGo4MbsStream::TGo4MbsStream()",__LINE__, __FILE__));
00040 }
00041
00042 TGo4MbsStream::~TGo4MbsStream()
00043 {
00044 GO4TRACE((15,"TGo4MbsStream::~TGo4MbsStream()",__LINE__, __FILE__));
00045 Close();
00046 }