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