Skip to content
Permalink
d5a738a582
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
19 lines (15 sloc) 444 Bytes
package jat.application.DE405Propagator;
import jat.core.astronomy.SolarSystemBodies;
import jat.core.ephemeris.DE405Plus;
import jat.core.units.unitCheck;
import jat.core.util.jatMessages;
public class DE405PropagatorGlobals {
unitCheck uc = new unitCheck();
SolarSystemBodies sb = new SolarSystemBodies();
DE405Plus Eph;
// PathUtil path;
jatMessages messages;
public DE405PropagatorGlobals() {
messages = new jatMessages();
}
}