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

/Go4EventServer/TGo4UserSourceParameter.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 "TGo4UserSourceParameter.h"
00017 
00018 #include <iostream.h>
00019 
00020 #include "Go4StatusBase/TGo4Status.h"
00021 #include "Go4Log/TGo4Log.h"
00022 
00023 TGo4UserSourceParameter::TGo4UserSourceParameter(const char* name)
00024 : TGo4EventSourceParameter(name, GO4EV_USER), fiPort(0)
00025 {
00026 }
00027 
00028 TGo4UserSourceParameter::TGo4UserSourceParameter()
00029 : TGo4EventSourceParameter("default user event source", GO4EV_USER), fiPort(0)
00030 {
00031 }
00032 
00033 TGo4UserSourceParameter::~TGo4UserSourceParameter()
00034 {
00035 }
00036 
00037 Int_t TGo4UserSourceParameter::PrintParameter(Text_t* buffer, Int_t buflen)
00038 {
00039    TRACE((12,"TGo4UserSourceParameter::PrintParameter()",__LINE__, __FILE__));
00040    Int_t locallen=128000;
00041    Text_t localbuf[locallen];
00042    if(buflen<0 && buffer!=0)
00043       return 0;
00044    Int_t size=0;
00045    Text_t* current=localbuf;
00046    Int_t restlen=locallen;
00047    
00048    Int_t delta=TGo4EventSourceParameter::PrintParameter(current,restlen);
00049    restlen-=delta;
00050    current+=delta;
00051    current=TGo4Status::PrintIndent(current,restlen);      
00052    current=TGo4Status::PrintBuffer(current,restlen, "  Expression: %s\n",GetExpression());
00053    if(buffer==0)
00054       {
00055           cout << localbuf << endl;
00056       }
00057    else
00058       {
00059          size=locallen-restlen;
00060          if(size>buflen-1)
00061             size=buflen-1;
00062          strncpy(buffer,localbuf,size);
00063       }
00064    return size;
00065 }
00066 
00067 ClassImp(TGo4UserSourceParameter)
00068 
00069 //----------------------------END OF GO4 SOURCE FILE ---------------------

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