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