Lines Matching refs:eph

173     JPLEphemeris* eph = NULL;  in load()  local
185 eph = new JPLEphemeris(); in load()
186 if (eph == NULL) in load()
190 eph->startDate = readDouble(in); in load()
191 eph->endDate = readDouble(in); in load()
192 eph->daysPerInterval = readDouble(in); in load()
195 delete eph; in load()
202 eph->au = readDouble(in); // kilometers per astronomical unit in load()
203 eph->earthMoonMassRatio = readDouble(in); in load()
209 eph->coeffInfo[i].offset = readUint(in) - 3; in load()
210 eph->coeffInfo[i].nCoeffs = readUint(in); in load()
211 eph->coeffInfo[i].nGranules = readUint(in); in load()
215 delete eph; in load()
219 eph->DENum = readUint(in); in load()
221 switch (eph->DENum) in load()
224 eph->recordSize = DE200RecordSize; in load()
227 eph->recordSize = DE405RecordSize; in load()
230 eph->recordSize = DE406RecordSize; in load()
233 delete eph; in load()
237 eph->librationCoeffInfo.offset = readUint(in); in load()
238 eph->librationCoeffInfo.nCoeffs = readUint(in); in load()
239 eph->librationCoeffInfo.nGranules = readUint(in); in load()
242 delete eph; in load()
247 in.ignore(eph->recordSize * 8 - 2856); in load()
249 in.ignore(eph->recordSize * 8); in load()
252 delete eph; in load()
256 unsigned int nRecords = (unsigned int) ((eph->endDate - eph->startDate) / in load()
257 eph->daysPerInterval); in load()
258 eph->records.resize(nRecords); in load()
261 eph->records[i].t0 = readDouble(in); in load()
262 eph->records[i].t1 = readDouble(in); in load()
266 eph->records[i].coeffs = new double[eph->recordSize - 2]; in load()
267 for (unsigned int j = 0; j < eph->recordSize - 2; j++) in load()
268 eph->records[i].coeffs[j] = readDouble(in); in load()
273 delete eph; in load()
278 return eph; in load()