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