00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018 #include "TGo4MarkerSetup.h"
00019
00020 TGo4MarkerSetup::TGo4MarkerSetup(const Text_t * name)
00021 :TGo4Status(name,"Go4 Marker Setup"),
00022 fxMarkerList(0),fxRegionList(0),fxPolygonList(0),fxLateXList(0), fxArrowList(0)
00023 {
00024 fxMarkerList= new TList;
00025 fxRegionList= new TList;
00026 fxPolygonList= new TList;
00027 fxLateXList= new TList;
00028 fxArrowList= new TList;
00029 }
00030
00031 TGo4MarkerSetup::TGo4MarkerSetup()
00032 :TGo4Status(),
00033 fxMarkerList(0),fxRegionList(0),fxPolygonList(0),fxLateXList(0), fxArrowList(0)
00034 {
00035
00036 }
00037
00038 TGo4MarkerSetup::~TGo4MarkerSetup()
00039 {
00040 if(fxMarkerList) fxMarkerList->Delete();
00041 delete fxMarkerList;
00042 if(fxRegionList)fxRegionList->Delete();
00043 delete fxRegionList;
00044 if(fxPolygonList)fxPolygonList->Delete();
00045 delete fxPolygonList;
00046 if(fxLateXList) fxLateXList->Delete();
00047 delete fxLateXList;
00048 if(fxArrowList) fxArrowList->Delete();
00049 delete fxArrowList;
00050
00051 }
00052
00053
00054 ClassImp(TGo4MarkerSetup)
00055 ClassImp(TGo4GraphicEntry)
00056 ClassImp(TGo4ArrowEntry)
00057 ClassImp(TGo4LateXEntry)
00058
00059
00060
00061