00001 // ompetitiveDegradationReaction.h: interface for the CompetitiveDegradationReaction class. 00002 // 00004 00005 #if !defined(AFX_OMPETITIVEDEGRADATIONREACTION_H__95541F7D_E7E7_11D3_807F_00A0C9B3BAEA__INCLUDED_) 00006 #define AFX_COMPETITIVEDEGRADATIONREACTION_H__95541F7D_E7E7_11D3_807F_00A0C9B3BAEA__INCLUDED_ 00007 00008 #if _MSC_VER > 1000 00009 #pragma once 00010 #endif // _MSC_VER > 1000 00011 00012 #include "Reaction.h" 00013 00014 class CompetitiveDegradationReaction : public Reaction 00015 { 00016 public: 00017 double GetRate() const; 00018 CompetitiveDegradationReaction(Chemical *phosphorylatedprotein, Chemical *competitivebinder, RateConstant *kphx, RateConstant *Km, std::string name); 00019 virtual ~CompetitiveDegradationReaction(); 00020 std::vector<JElement *> *GetChemicalJacobian(); 00021 void SetTeXForm(); 00022 private: 00023 int phosphorylatedprotein, competitivebinder; // Local integer variables denoting place of various chemicals on the local chemical list 00024 int kphx, Km; // Local integer variables d 00025 00026 00027 }; 00028 00029 #endif // !defined(AFX_COMPETITIVEDEGRADATIONREACTION_H__95541F7D_E7E7_11D3_807F_00A0C9B3BAEA__INCLUDED_) 00030 00031