00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016 #include "TGo4EventStore.h"
00017
00018 #include <iostream.h>
00019
00020 const UInt_t TGo4EventStore::fguTXTLEN=256;
00021
00022 TGo4EventStore::TGo4EventStore(const char* name)
00023 :TNamed(name, "This is a Go4 Event Store")
00024 {
00025 TRACE((15,"TGo4EventStore::TGo4EventStore(Text_t*)",__LINE__, __FILE__));
00026 }
00027
00028 TGo4EventStore::TGo4EventStore()
00029 :TNamed("Default EventStore", "This is a Go4 Event Store")
00030 {
00031 TRACE((15,"TGo4EventStore::TGo4EventStore()",__LINE__, __FILE__));
00032 }
00033
00034 TGo4EventStore::~TGo4EventStore()
00035 {
00036 TRACE((15,"TGo4EventStore::~TGo4EventStore()",__LINE__, __FILE__));
00037 }
00038
00039 Int_t TGo4EventStore::Store(TGo4Parameter* cali)
00040 {
00041 MayNotUse("TGo4EventStore::Store(TGo4Parameter* cali)");
00042 TGo4Log::Debug(" EventStore::Store Parameter not implemented for %s ",
00043 ClassName());
00044 return 0;
00045 }
00046
00047
00048 Int_t TGo4EventStore::Store(TGo4Condition* conny)
00049 {
00050 MayNotUse("TGo4EventStore::Store(TGo4Condition* conny)");
00051 TGo4Log::Debug(" EventStore::Store Condition not implemented for %s ",
00052 ClassName());
00053 return 0;
00054 }
00055
00056 Int_t TGo4EventStore::Store(TGo4Fitter* fitter)
00057 {
00058 MayNotUse("TGo4EventStore::Store(TGo4Fitter* fitter)");
00059 TGo4Log::Debug(" EventStore::Store Fitter not implemented for %s ",
00060 ClassName());
00061 return 0;
00062 }
00063
00064 Int_t TGo4EventStore::Store(TFolder* fold)
00065 {
00066 MayNotUse("TGo4EventStore::Store(TFolder* folder)");
00067 TGo4Log::Debug(" EventStore::Store Folder not implemented for %s ",
00068 ClassName());
00069 return 0;
00070 }
00071
00072
00073 void TGo4EventStore::Clear(Option_t* opt)
00074 {
00075
00076 cout <<"default clear of eventstore "<<GetName() << endl;
00077 }
00078
00079
00080
00081
00082 ClassImp(TGo4EventStore)
00083
00084
00085
00086
00087
00088