Main Page   Namespace List   Class Hierarchy   Alphabetical List   Compound List   File List   Compound Members   File Members  

/Go4Event/TGo4EventStore.cxx

Go to the documentation of this file.
00001 //---------------------------------------------------------------
00002 //        Go4 Release Package v2.10-5 (build 21005) 
00003 //                      03-Nov-2005
00004 //---------------------------------------------------------------
00005 //       The GSI Online Offline Object Oriented (Go4) Project
00006 //       Experiment Data Processing at DVEE department, GSI
00007 //---------------------------------------------------------------
00008 //
00009 //Copyright (C) 2000- Gesellschaft f. Schwerionenforschung, GSI
00010 //                    Planckstr. 1, 64291 Darmstadt, Germany
00011 //Contact:            http://go4.gsi.de
00012 //----------------------------------------------------------------
00013 //This software can be used under the license agreements as stated
00014 //in Go4License.txt file which is part of the distribution.
00015 //----------------------------------------------------------------
00016 #include "TGo4EventStore.h"
00017 
00018 #include <iostream.h>
00019 
00020 const UInt_t TGo4EventStore::fguTXTLEN=256; // length of text buffers
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  // dummy clear, may be implemented by user
00076  cout <<"default clear of eventstore "<<GetName() << endl;
00077 }
00078 
00079 
00080 
00081 
00082 ClassImp(TGo4EventStore)
00083 
00084 
00085 
00086 
00087 
00088 //----------------------------END OF GO4 SOURCE FILE ---------------------

Generated on Tue Nov 8 10:55:53 2005 for Go4-v2.10-5 by doxygen1.2.15