|
models/onchipcommunication/link/HoDelayModel.hGo to the documentation of this file.00001 //============================================================================ 00002 // Author : Alessandro Pinto <apinto@eecs.berkeley.edu> 00003 // University of California, Berkeley 00004 // 545 Cory Hall, Berkeley, CA 94720 00005 // Copyright : See COPYING file that comes with this distribution 00006 //============================================================================ 00007 00008 #ifndef HODELAYMODEL_H_ 00009 #define HODELAYMODEL_H_ 00010 00011 #include <vector> 00012 #include "models/onchipcommunication/common/DelayModel.h" 00013 #include "io/onchipcommunication/HoOrionModelParser.h" 00014 #include "include/onchipcommunication/typedefs.h" 00015 00016 namespace cosi { 00017 00018 namespace models { 00019 00020 namespace onchipcommunication { 00021 00022 class HoDelayModel : public LinkDelayModel { 00023 public: 00024 HoDelayModel(cosi::library::onchipcommunication::Technology pTech); 00025 virtual ~HoDelayModel(); 00026 double GetDelay(Name pName, 00027 cosi::quantity::onchipcommunication::Interface pSource, 00028 cosi::quantity::onchipcommunication::Interface pDest, 00029 WiringPath pPath, 00030 cosi::quantity::onchipcommunication::LinkParameter pParam); 00031 private: 00032 double mHopt; 00033 double mKopt; 00034 double mWmin; 00035 double mR0; 00036 double mC0; 00037 double mCp; 00038 double mD ; 00039 std::vector<double> mR; 00040 std::vector<double> mC; 00041 std::vector<double> mPitch; 00042 00043 }; 00044 00045 } 00046 00047 } 00048 00049 } 00050 00051 #endif /*HODELAYMODEL_H_*/ Generated on Sun Sep 7 18:37:42 2008 for COSI by 1.5.4 |