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
30 lines (24 sloc) 715 Bytes
package jat.application.missionPlan;
import jat.core.ephemeris.DE405Body.body;
import jat.core.ephemeris.DE405Plus;
import jat.core.spacetime.TimeAPL;
import jat.core.util.PathUtil;
import jat.core.util.jatMessages;
public class MissionPlanParameters {
TimeAPL simulationDate;
int number = body.values().length;
boolean[] planetOnOff;
PathUtil path;
jatMessages messages;
DE405Plus Eph;
public MissionPlanParameters() {
messages=new jatMessages();
planetOnOff=new boolean[number];
simulationDate = new TimeAPL(2003, 3, 1, 12, 0, 0);
for (int i = 0; i < number; i++)
this.planetOnOff[i] = true;
}
public MissionPlanParameters(boolean[] planetOnOff) {
this.planetOnOff = planetOnOff;
}
}