Class PtcCreateUniverseCommand
- java.lang.Object
-
- cern.accsoft.steering.jmad.kernel.AbstractJMadExecutable
-
- cern.accsoft.steering.jmad.kernel.cmd.AbstractCommand
-
- cern.accsoft.steering.jmad.kernel.cmd.ptc.PtcCreateUniverseCommand
-
- All Implemented Interfaces:
Command,JMadExecutable
public class PtcCreateUniverseCommand extends AbstractCommand
This class represents the madx-command to initialize the ptc-universe
-
-
Constructor Summary
Constructors Constructor Description PtcCreateUniverseCommand()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetName()has to be implemented in order to return the name of the command (keyword);java.lang.BooleangetNtpsa()java.util.List<Parameter>getParameters()this may be overridden if the command has parameters.java.lang.IntegergetSectorNMul()java.lang.IntegergetSectorNMulMax()java.lang.BooleangetSymPrint()voidsetNtpsa(java.lang.Boolean ntpsa)voidsetSectorNMul(java.lang.Integer sectorNMul)voidsetSectorNMulMax(java.lang.Integer sectorNMulMax)voidsetSymPrint(java.lang.Boolean symPrint)-
Methods inherited from class cern.accsoft.steering.jmad.kernel.cmd.AbstractCommand
compose, toString
-
Methods inherited from class cern.accsoft.steering.jmad.kernel.AbstractJMadExecutable
getOutputFile, getResultType, setOutputFile
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface cern.accsoft.steering.jmad.kernel.JMadExecutable
getOutputFile, getResultType, setOutputFile
-
-
-
-
Method Detail
-
getName
public java.lang.String getName()
Description copied from interface:Commandhas to be implemented in order to return the name of the command (keyword);- Returns:
- the name of the command (MadX keyword)
-
getParameters
public java.util.List<Parameter> getParameters()
Description copied from class:AbstractCommandthis may be overridden if the command has parameters.- Specified by:
getParametersin interfaceCommand- Overrides:
getParametersin classAbstractCommand- Returns:
- all the parameter for the command
-
getSectorNMulMax
public java.lang.Integer getSectorNMulMax()
-
setSectorNMulMax
public void setSectorNMulMax(java.lang.Integer sectorNMulMax)
-
getSectorNMul
public java.lang.Integer getSectorNMul()
-
setSectorNMul
public void setSectorNMul(java.lang.Integer sectorNMul)
-
getNtpsa
public java.lang.Boolean getNtpsa()
-
setNtpsa
public void setNtpsa(java.lang.Boolean ntpsa)
-
getSymPrint
public java.lang.Boolean getSymPrint()
-
setSymPrint
public void setSymPrint(java.lang.Boolean symPrint)
-
-