Go to the documentation of this file.00001
00002
00003 #include "TRpcEvent.h"
00004 #include "TGo4Version.h"
00005 #if __GO4BUILDVERSION__ > 40502
00006 #include "go4iostream.h"
00007 #else
00008 #include "Riostream.h"
00009 #endif
00010
00011
00012
00013
00014 TRpcEvent::TRpcEvent(const char* name, Short_t id) :
00015 TGo4EventElement(name,name,id)
00016 {
00017 cout << "**** TRpcEvent: Create instance " << name <<" with composite id "<<id<< endl;
00018 Clear();
00019 }
00020 TRpcEvent::TRpcEvent() :
00021 TGo4EventElement()
00022 {
00023 Clear();
00024 }
00025
00026 TRpcEvent::~TRpcEvent()
00027 {
00028 Clear();
00029 }
00030
00031 void TRpcEvent::Clear(Option_t *t)
00032 {
00033
00034 fEvents.clear();
00035 SetValid(kFALSE);
00036 }
00037