00001 #ifndef FTFBASEHIT
00002 #define FTFBASEHIT
00003
00004
00005
00006 #include "l3Coordinates.h"
00007
00008 class FtfBaseTrack ;
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027 typedef l3ThreeVector Ftf3DHit;
00028
00029
00030 class FtfBaseHit
00031 {
00032 public:
00033 void print ( ) ;
00034 void print ( int level ) ;
00035
00036 int id ;
00037 short row ;
00038 void *track;
00039 void *nextTrackHit ;
00040 void *nextMcTrackHit;
00041 float xyChi2 ;
00042 float szChi2 ;
00043 float x ;
00044 float y ;
00045 float z ;
00046 float dx ;
00047 float dy ;
00048 float dz ;
00049 float q ;
00050 float wxy ;
00051 float wz ;
00052 float s ;
00053 } ;
00054 #endif
00055