Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014 #include "TGo4UserSourceParameter.h"
00015
00016 #include "TGo4Status.h"
00017 #include "TGo4Log.h"
00018 #include "Go4EventServerTypes.h"
00019
00020 TGo4UserSourceParameter::TGo4UserSourceParameter(const char* name, const char* expr, Int_t port)
00021 : TGo4EventSourceParameter(name, GO4EV_USER), fiPort(port), fxExpression(expr)
00022 {
00023 }
00024
00025 TGo4UserSourceParameter::TGo4UserSourceParameter()
00026 : TGo4EventSourceParameter("default user event source", GO4EV_USER), fiPort(0)
00027 {
00028 }
00029
00030 TGo4UserSourceParameter::~TGo4UserSourceParameter()
00031 {
00032 }
00033
00034 Int_t TGo4UserSourceParameter::PrintParameter(Text_t* buffer, Int_t buflen)
00035 {
00036 GO4TRACE((12,"TGo4UserSourceParameter::PrintParameter()",__LINE__, __FILE__));
00037 Int_t locallen=128000;
00038 Text_t localbuf[128000];
00039 if(buflen<0 && buffer!=0)
00040 return 0;
00041 Int_t size=0;
00042 Text_t* current=localbuf;
00043 Int_t restlen=locallen;
00044
00045 Int_t delta=TGo4EventSourceParameter::PrintParameter(current,restlen);
00046 restlen-=delta;
00047 current+=delta;
00048 current=TGo4Status::PrintIndent(current,restlen);
00049 current=TGo4Status::PrintBuffer(current,restlen, " Expression: %s\n",GetExpression());
00050 if(buffer==0)
00051 {
00052 std::cout << localbuf << std::endl;
00053 }
00054 else
00055 {
00056 size=locallen-restlen;
00057 if(size>buflen-1)
00058 size=buflen-1;
00059 strncpy(buffer,localbuf,size);
00060 }
00061 return size;
00062 }