fdhwlib
2.0.25
|
00001 /*************************************************************************** 00002 FltStatistic.h - description 00003 00004 begin : Mon Oct 9 2000 00005 copyright : (C) 2000 by Andreas Kopmann 00006 email : kopmann@hpe.fzk.de 00007 ***************************************************************************/ 00008 00009 00010 #ifndef _HW4_FLTSTATISTIC_H_INCLUDED 00011 #define _HW4_FLTSTATISTIC_H_INCLUDED 00012 00013 #include <hw4/fltdef.h> 00014 #include <hw4/baseregister.h> 00015 #include <hw4/fltsigneditem.h> 00016 00017 00018 namespace hw4 { 00019 00020 // --- forward declaration(s) 00021 00022 class BaseRegisterItem; 00023 00042 class FltStatistic : public BaseRegister { 00043 public: 00044 FltStatistic(const char * name, int slotID, int regID, int r, int w, int len, int addrShift); 00045 ~FltStatistic(); 00046 00047 FltSignedItem *sum; 00048 00049 BaseRegisterItem *sumSq; 00050 }; 00051 00052 } // namespace hw4 00053 00054 #endif // _HW4_FLTSTATISTIC_H_INCLUDED