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