Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014 #include "TGo4EventStore.h"
00015
00016 #include "TGo4Log.h"
00017 #include "Go4Exceptions.h"
00018
00019 TGo4EventStore::TGo4EventStore(const char* name) :
00020 TNamed(name, "This is a Go4 Event Store")
00021 {
00022 GO4TRACE((15,"TGo4EventStore::TGo4EventStore(const char*)",__LINE__, __FILE__));
00023 }
00024
00025 TGo4EventStore::TGo4EventStore() :
00026 TNamed("Default EventStore", "This is a Go4 Event Store")
00027 {
00028 GO4TRACE((15,"TGo4EventStore::TGo4EventStore()",__LINE__, __FILE__));
00029 }
00030
00031 TGo4EventStore::~TGo4EventStore()
00032 {
00033 GO4TRACE((15,"TGo4EventStore::~TGo4EventStore()",__LINE__, __FILE__));
00034 }
00035
00036 Int_t TGo4EventStore::Store(TGo4Parameter* cali)
00037 {
00038 MayNotUse("TGo4EventStore::Store(TGo4Parameter* cali)");
00039 TGo4Log::Debug(" EventStore::Store Parameter not implemented for %s ",
00040 ClassName());
00041 return 0;
00042 }
00043
00044
00045 Int_t TGo4EventStore::Store(TGo4Condition* conny)
00046 {
00047 MayNotUse("TGo4EventStore::Store(TGo4Condition* conny)");
00048 TGo4Log::Debug(" EventStore::Store Condition not implemented for %s ",
00049 ClassName());
00050 return 0;
00051 }
00052
00053 Int_t TGo4EventStore::Store(TGo4Fitter* fitter)
00054 {
00055 MayNotUse("TGo4EventStore::Store(TGo4Fitter* fitter)");
00056 TGo4Log::Debug(" EventStore::Store Fitter not implemented for %s ",
00057 ClassName());
00058 return 0;
00059 }
00060
00061 Int_t TGo4EventStore::Store(TFolder* fold)
00062 {
00063 MayNotUse("TGo4EventStore::Store(TFolder* folder)");
00064 TGo4Log::Debug(" EventStore::Store Folder not implemented for %s ",
00065 ClassName());
00066 return 0;
00067 }
00068
00069
00070 void TGo4EventStore::Clear(Option_t* opt)
00071 {
00072
00073 TGo4Log::Info("Default clear of eventstore %s",GetName());
00074 }
00075