00001
00002
00003
00004
00005
00006
00007
00008 #ifndef FTFHIT
00009 #define FTFHIT
00010 #include "FtfBaseHit.h"
00011
00012 class FtfPara ;
00013 class FtfTrack ;
00014
00015
00016 class FtfHit: public FtfBaseHit {
00017 public:
00018 void printLinks ( ) ;
00019 void printLinks ( int level ) ;
00020 void setStatus ( FtfTrack* this_track ) ;
00021
00022 long id ;
00023 short phiIndex ;
00024 short etaIndex ;
00025 short flags ;
00026 short sector ;
00027
00028 void* nextVolumeHit ;
00029 void* nextRowHit ;
00030 float r ;
00031 float phi ;
00032 float dphi ;
00033 float eta ;
00034 float xp ;
00035 float yp ;
00036 short buffer1 ;
00037 short buffer2 ;
00038 unsigned short hardwareId ;
00039 } ;
00040 #endif
00041