1 //*-- Author : Valeri Fine 19/02/2000 begin_html mailto://fine@bnl.gov end_html 2 ////////////////////////////////////////////////////////////////////////// 3 // // 4 // The collection of typdef declaration to allow a transition from thee // 5 // STAR St_base library to ROOT-based libSTAR from the regular ROOT // 6 // distribution // 7 // // 8 ////////////////////////////////////////////////////////////////////////// 9 10 #ifndef STAR_baseTypeDef 11 #define STAR_baseTypeDef 12 13 // $Id: StTypeDefs.h,v 1.4 2000/04/27 17:41:48 fine Exp $ 14 15 class TCL; 16 class TDataSet; 17 class TDataSetIter; 18 class TFileSet; 19 class TVolume; 20 class TVolumePosition; 21 class TVolumeView; 22 class TVolumeViewIter; 23 class TObjectSet; 24 class TPointPosition; 25 class TPoints3D; 26 class TPointsArray3D; 27 class TPolyLineShape; 28 class TTable; 29 class TTable3Points; 30 class TTableIter; 31 class TTablePoints; 32 class TTableSorter; 33 class TTableDescriptor; 34 35 typedef TCL StCL; 36 typedef TDataSet St_DataSet ; 37 typedef TDataSetIter St_DataSetIter; 38 typedef TFileSet St_FileSet; 39 typedef TVolume St_Node; 40 typedef TVolumePosition St_NodePosition; 41 typedef TVolumeView St_NodeView; 42 typedef TVolumeViewIter St_NodeViewIter; 43 typedef TObjectSet St_ObjectSet; 44 typedef TPointPosition St_PointPosition; 45 typedef TPoints3D St_Points3D; 46 typedef TPointsArray3D St_PointsArray3D; 47 typedef TPolyLineShape St_PolyLineShape; 48 typedef TTable St_Table; 49 typedef TTable3Points St_Table3Points; 50 typedef TTableIter St_TableIter; 51 typedef TTablePoints St_TablePoints; 52 typedef TTableSorter St_TableSorter; 53 typedef TTableDescriptor St_tableDescriptor; 54 55 // $Log: StTypeDefs.h,v $ 56 // Revision 1.4 2000/04/27 17:41:48 fine 57 // wrong typedef for TCL class fixed 58 // 59 // Revision 1.3 2000/04/27 17:16:16 fine 60 // wrong typedef for TCL class fixed 61 // 62 // Revision 1.2 2000/03/24 20:38:45 fine 63 // *** empty log message *** 64 // 65 // Revision 1.1 2000/02/25 00:48:06 fine 66 // temporary interface for ROOT 2.23/12 with STAR classes inside 67 // 68 #endif 69