| 29 |  | T( theInfo, the_ff ) | 
| 30 |  | { | 
| 31 |  | GenericData* data; | 
| 32 | < | DoubleArrayData * etaValue; | 
| 33 | < | vector<double> etaArray; | 
| 32 | > | DoubleVectorGenericData * etaValue; | 
| 33 |  | int i,j; | 
| 34 |  |  | 
| 35 |  | for(i = 0; i < 3; i++){ | 
| 45 |  | // retrieve eta array from simInfo if it exists | 
| 46 |  | data = info->getProperty(ETAVALUE_ID); | 
| 47 |  | if(data){ | 
| 48 | < | etaValue = dynamic_cast<DoubleArrayData*>(data); | 
| 48 | > | etaValue = dynamic_cast<DoubleVectorGenericData*>(data); | 
| 49 |  |  | 
| 50 |  | if(etaValue){ | 
| 52 | – | etaArray = etaValue->getData(); | 
| 51 |  |  | 
| 52 |  | for(i = 0; i < 3; i++){ | 
| 53 |  | for (j = 0; j < 3; j++){ | 
| 54 | < | eta[i][j] = etaArray[3*i+j]; | 
| 54 | > | eta[i][j] = (*etaValue)[3*i+j]; | 
| 55 |  | oldEta[i][j] = eta[i][j]; | 
| 56 |  | } | 
| 57 |  | } |