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

/Go4StatusAnalysis/TGo4EventProcStatus.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 "TGo4EventProcStatus.h"
00017 
00018 #include <iostream.h>
00019 
00020 #include "Go4Log/TGo4Log.h"
00021 #include "Go4Event/TGo4EventProcessor.h"
00022 
00023 TGo4EventProcStatus::TGo4EventProcStatus() : TGo4ObjectStatus()
00024 {
00025 }
00026 
00027 TGo4EventProcStatus::TGo4EventProcStatus(TGo4EventProcessor* ev)
00028 : TGo4ObjectStatus(ev)
00029 {
00030 }
00031 
00032 TGo4EventProcStatus::~TGo4EventProcStatus()
00033 {
00034 }
00035 
00036 Int_t TGo4EventProcStatus::PrintStatus(Text_t* buffer, Int_t buflen)
00037 {
00038    TRACE((12,"TGo4EventProcStatus::PrintStatus()",__LINE__, __FILE__));
00039    if(buflen<=0 && buffer!=0)
00040       return 0;
00041    Int_t locallen=128000;
00042    Text_t localbuf[locallen];
00043    Int_t size=0;
00044    Text_t* current=localbuf;
00045    Int_t restlen=locallen;
00046    Int_t delta= TGo4ObjectStatus::PrintStatus(current,restlen);
00047    restlen-=delta;
00048    current+= delta;
00049    current=PrintIndent(current,restlen);
00050    current=PrintBuffer(current,restlen, "G-OOOO-> Eventprocessor Status Class Printout <-OOOO-G\n");
00051    current=PrintIndent(current,restlen);
00052    current=PrintBuffer(current,restlen, "G-OOOO-> ---------------------------------------------- <-OOOO-G\n");
00053    // put printout of further infos here:
00054 
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 ClassImp(TGo4EventProcStatus)
00071 
00072 //----------------------------END OF GO4 SOURCE FILE ---------------------

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