// $Id$ //----------------------------------------------------------------------- // The GSI Online Offline Object Oriented (Go4) Project // Experiment Data Processing at EE department, GSI //----------------------------------------------------------------------- // Copyright (C) 2000- GSI Helmholtzzentrum fuer Schwerionenforschung GmbH // Planckstr. 1, 64291 Darmstadt, Germany // Contact: http://go4.gsi.de //----------------------------------------------------------------------- // This software can be used under the license agreements as stated // in Go4License.txt file which is part of the distribution. //----------------------------------------------------------------------- #include "TGo4EventStore.h" #include "TGo4Log.h" TGo4EventStore::TGo4EventStore(const char *name) : TNamed(name, "This is a Go4 Event Store") { GO4TRACE((15,"TGo4EventStore::TGo4EventStore(const char *)",__LINE__, __FILE__)); } TGo4EventStore::TGo4EventStore() : TNamed("Default EventStore", "This is a Go4 Event Store") { GO4TRACE((15,"TGo4EventStore::TGo4EventStore()",__LINE__, __FILE__)); } TGo4EventStore::~TGo4EventStore() { GO4TRACE((15,"TGo4EventStore::~TGo4EventStore()",__LINE__, __FILE__)); } Int_t TGo4EventStore::Store(TGo4Parameter *cali) { MayNotUse("TGo4EventStore::Store(TGo4Parameter *cali)"); TGo4Log::Debug(" EventStore::Store Parameter not implemented for %s", ClassName()); return 0; } Int_t TGo4EventStore::Store(TGo4Condition *) { MayNotUse("TGo4EventStore::Store(TGo4Condition *conny)"); TGo4Log::Debug(" EventStore::Store Condition not implemented for %s", ClassName()); return 0; } Int_t TGo4EventStore::Store(TGo4Fitter *) { MayNotUse("TGo4EventStore::Store(TGo4Fitter *fitter)"); TGo4Log::Debug(" EventStore::Store Fitter not implemented for %s", ClassName()); return 0; } Int_t TGo4EventStore::Store(TFolder *) { MayNotUse("TGo4EventStore::Store(TFolder *folder)"); TGo4Log::Debug(" EventStore::Store Folder not implemented for %s", ClassName()); return 0; } void TGo4EventStore::Clear(Option_t *) { // dummy clear, may be implemented by user TGo4Log::Info("Default clear of eventstore %s", GetName()); }