fdhwlib  2.0.25
/home/kopmann/git-mirror/fdhwlib/fdhwlib/hw4/flthitrate.h
Go to the documentation of this file.
00001 /***************************************************************************
00002     FltHitRate.h  -  description
00003 
00004     begin                : Mon Jul 3 2000
00005     copyright            : (C) 2000 by Andreas Kopmann
00006     email                : kopmann@hpe.fzk.de
00007  ***************************************************************************/
00008 
00009 
00010 #ifndef _HW4_FLTHITRATE_H_INCLUDED
00011 #define _HW4_FLTHITRATE_H_INCLUDED
00012 
00013 
00014 #include <hw4/fltdef.h>
00015 #include <hw4/baseregister.h>
00016 
00017 
00018 
00019 namespace hw4 {
00020 
00021 // --- forward declaration(s)
00022 
00023 class BaseRegisterItem;
00024         
00025         
00033 class FltHitrate : public BaseRegister {
00034 public:
00035   FltHitrate(const char *name, int slotID, int regID, int r, int w, int len, int addrShift);
00036   ~FltHitrate();
00037 
00038   BaseRegisterItem *hitrate;
00039   BaseRegisterItem *overflow;
00040   BaseRegisterItem *pileup;
00041 
00042 };
00043 
00044 } // namespace hw4
00045         
00046 #endif /* _HW4_FLTHITRATE_H_INCLUDED */
00047