00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016 #include "TGo4EventStoreParameter.h"
00017
00018 #include <iostream.h>
00019
00020 #include "Go4StatusBase/TGo4Status.h"
00021 #include "Go4Log/TGo4Log.h"
00022
00023 TGo4EventStoreParameter::~TGo4EventStoreParameter()
00024 {
00025 TRACE((12,"TGo4EventStoreParameter::~TGo4EventStoreParameter()",__LINE__, __FILE__));
00026 }
00027 TGo4EventStoreParameter::TGo4EventStoreParameter(const char* name, Int_t id)
00028 : TGo4Parameter (name), fiID(id)
00029 {
00030 TRACE((12,"TGo4EventStoreParameter::TGo4EventStoreParameter(Text_t*)",__LINE__, __FILE__));
00031 }
00032 TGo4EventStoreParameter::TGo4EventStoreParameter()
00033 : TGo4Parameter ("Default Event Store Parameter"), fiID(0)
00034 {
00035 TRACE((12,"TGo4EventStoreParameter::TGo4EventStoreParameter()",__LINE__, __FILE__));
00036 }
00037 Int_t TGo4EventStoreParameter::PrintParameter(Text_t* buffer, Int_t buflen)
00038 {
00039 TRACE((12,"TGo4EventStoreParameter::PrintParameter()",__LINE__, __FILE__));
00040 Int_t locallen=64000;
00041 Text_t localbuf[locallen];
00042 if(buflen<0 && buffer!=0)
00043 return 0;
00044 Int_t size=0;
00045 Int_t restlen=locallen;
00046 Text_t* current=localbuf;
00047 current=TGo4Status::PrintIndent(current,restlen);
00048 TString woparam=ClassName();
00049 woparam.ReplaceAll("Parameter","");
00050 current=TGo4Status::PrintBuffer(current,restlen, "Eventstore: \t\t%s \n",woparam.Data());
00051 current=TGo4Status::PrintIndent(current,restlen);
00052 current=TGo4Status::PrintBuffer(current,restlen, " Name: \t\t%s \n",GetName());
00053
00054
00055 if(buffer==0)
00056 {
00057 cout << localbuf << endl;
00058 }
00059 else
00060 {
00061 size=locallen-restlen;
00062 if(size>buflen-1)
00063 size=buflen-1;
00064 strncpy(buffer,localbuf,size);
00065 }
00066 return size;
00067 }
00068
00069 Bool_t TGo4EventStoreParameter::UpdateFrom(TGo4Parameter* rhs)
00070 {
00071 TRACE((12,"TGo4EventStoreParameter::UpdateFrom()",__LINE__, __FILE__));
00072 if(rhs && rhs->InheritsFrom("TGo4EventStoreParameter"))
00073 {
00074 TGo4EventStoreParameter* storpar=dynamic_cast<TGo4EventStoreParameter*>(rhs);
00075 if(!storpar) return kFALSE;
00076 SetName(storpar->GetName());
00077 fiID=storpar->GetID();
00078 return kTRUE;
00079 }
00080 else
00081 {
00082 return kFALSE;
00083 }
00084 return kFALSE;
00085 }
00086
00087 ClassImp(TGo4EventStoreParameter)
00088
00089