Cantera  2.0
RxnSpecies.h
Go to the documentation of this file.
1 /**
2  * @file RxnSpecies.h
3  *
4  */
5 
6 // Copyright 2001 California Institute of Technology
7 
8 
9 #ifndef CKR_RXNSPECIES_H
10 #define CKR_RXNSPECIES_H
11 
12 #include <string>
13 #include <vector>
14 
15 namespace ckr
16 {
17 
18 typedef vector_int group_t;
19 typedef std::vector<group_t> grouplist_t;
20 
21 /**
22  * A class for species in a reaction.
23  *
24  */
26 {
27 public:
28  RxnSpecies() :
29  number(0) {}
30  std::string name; //!< The name of the object.
31  double number; //!< The number of units (molecules, etc.).
32  grouplist_t groups;
33 };
34 
35 }
36 
37 #endif