00001 // CatalyzedTranslationReaction.h: interface for the CatalyzedTranslationReaction class. 00002 // 00004 00005 #if !defined(AFX_CATALYZEDTRANSLATIONREACTION_H__DF954876_EDF7_465C_8ABA_8CF741E9CEBB__INCLUDED_) 00006 #define AFX_CATALYZEDTRANSLATIONREACTION_H__DF954876_EDF7_465C_8ABA_8CF741E9CEBB__INCLUDED_ 00007 00008 #if _MSC_VER > 1000 00009 #pragma once 00010 #endif // _MSC_VER > 1000 00011 00012 #include "Reaction.h" 00013 00014 class CatalyzedTranslationReaction : public Reaction 00015 { 00016 public: 00017 double GetRate() const; 00018 CatalyzedTranslationReaction(Chemical *mRNA, Chemical *catalyst, Chemical *protein, RateConstant *k_tr, std::string reactionName); 00019 virtual ~CatalyzedTranslationReaction(); 00020 std::vector<JElement *> *GetChemicalJacobian(); 00021 void SetTeXForm(); 00022 protected: 00023 int k_tr; 00024 int mRNA, catalyst, protein; 00025 00026 }; 00027 00028 #endif // !defined(AFX_CATALYZEDTRANSLATIONREACTION_H__DF954876_EDF7_465C_8ABA_8CF741E9CEBB__INCLUDED_)