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