|
models/onchipcommunication/link/HoAreaModel.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 HOAREAMODEL_H_ 00009 #define HOAREAMODEL_H_ 00010 00011 #include <vector> 00012 #include "models/onchipcommunication/common/AreaModel.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 00023 class HoAreaModel : public LinkAreaModel { 00024 public: 00025 00026 HoAreaModel(cosi::library::onchipcommunication::Technology pTech); 00027 00028 virtual ~HoAreaModel(); 00029 00030 double GetDeviceArea(Name pName, 00031 cosi::quantity::onchipcommunication::Interface pSource, 00032 cosi::quantity::onchipcommunication::Interface pDest, 00033 WiringPath pPath, 00034 cosi::quantity::onchipcommunication::LinkParameter pParam); 00035 double GetWiringArea(Name pName, 00036 cosi::quantity::onchipcommunication::Interface pSource, 00037 cosi::quantity::onchipcommunication::Interface pDest, 00038 WiringPath pPath, 00039 cosi::quantity::onchipcommunication::LinkParameter pParam); 00040 00041 private: 00042 double mHopt; 00043 double mKopt; 00044 double mWmin; 00045 double mR0 ; 00046 double mC0; 00047 double mCp; 00048 std::vector<double> mR; 00049 std::vector<double> mC; 00050 std::vector<double> mPitch; 00051 00052 }; 00053 00054 } 00055 00056 } 00057 00058 } 00059 00060 #endif /*HoAREAMODEL_H_*/ Generated on Sun Sep 7 18:37:42 2008 for COSI by 1.5.4 |