00001 //------------------------------------------------------------- 00002 // Go4 Release Package v3.04-01 (build 30401) 00003 // 28-November-2008 00004 //--------------------------------------------------------------- 00005 // The GSI Online Offline Object Oriented (Go4) Project 00006 // Experiment Data Processing at EE 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 #ifndef TGO4STATUS_H 00017 #define TGO4STATUS_H 00018 00019 #include "TNamed.h" 00020 00021 class TGo4Status : public TNamed { 00022 public: 00023 00024 TGo4Status(); 00025 00026 TGo4Status(const char* name); 00027 00028 TGo4Status(const char* name, const char* title); 00029 00030 virtual ~TGo4Status(); 00031 00037 virtual Int_t PrintStatus(Text_t* buffer=0, Int_t buflen=0); 00038 00039 virtual void Print(Option_t * dummy="") const; 00040 00047 static Text_t* PrintIndent(Text_t* buffer, Int_t& buflen); 00048 00056 static Text_t* PrintBuffer(Text_t* buffer, Int_t& buflen, const Text_t* text,...); 00057 00058 00061 enum { 00062 kGo4NoReset = BIT(20), // don't reset this object 00063 kGo4CanDelete = BIT(21), // may delete this object 00064 kGo4BackStoreReset = BIT(22) // set for tree that belongs to backstore 00065 }; 00066 00067 ClassDef(TGo4Status,2) 00068 }; 00069 00070 #endif //TGO4STATUS_H 00071 00072 //----------------------------END OF GO4 SOURCE FILE ---------------------