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