00001 /********************************************************************** 00002 ** This program is part of 'MOOSE', the 00003 ** Messaging Object Oriented Simulation Environment. 00004 ** Copyright (C) 2003-2014 Upinder S. Bhalla. and NCBS 00005 ** It is made available under the terms of the 00006 ** GNU Lesser General Public License version 2.1 00007 ** See the file COPYING.LIB for the full notice. 00008 **********************************************************************/ 00009 00010 #ifndef _XFER_INFO_H 00011 #define _XFER_INFO_H 00012 00017 class XferInfo { 00018 public: 00019 XferInfo( Id ks ) 00020 : ksolve( ks ) 00021 {;} 00022 00027 vector< double > values; 00032 vector< double > lastValues; 00033 00039 vector< double > subzero; 00040 00045 vector< unsigned int > xferPoolIdx; 00046 00052 vector< unsigned int > xferVoxel; 00053 00060 Id ksolve; 00061 00062 }; 00063 00064 #endif // _XFER_INFO_H