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