00001 // HeterodimerizationReaction.h: interface for the HeterodimerizationReaction class. 00002 // 00004 00005 #if !defined(AFX_HETERODIMERIZATIONREACTION_H__BC8DE5DC_C30B_4372_8668_DEC280E75FDA__INCLUDED_) 00006 #define AFX_HETERODIMERIZATIONREACTION_H__BC8DE5DC_C30B_4372_8668_DEC280E75FDA__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 HeterodimerizationReaction : public Reaction 00016 { 00017 public: 00018 double GetRate() const; 00019 HeterodimerizationReaction(Chemical *ReactantA, Chemical *ReactantB, Chemical *Heterodimer, RateConstant *k_dim, std::string reactionName); 00020 virtual ~HeterodimerizationReaction(); 00021 std::vector<JElement *> *GetChemicalJacobian(); 00022 void SetTeXForm(); 00023 protected: 00024 int k_dim; 00025 int ReactantA, ReactantB, Heterodimer; 00026 00027 }; 00028 00029 #endif // !defined(AFX_HETERODIMERIZATIONREACTION_H__BC8DE5DC_C30B_4372_8668_DEC280E75FDA__INCLUDED_)