Class ChipCoordinates
java.lang.Object
uk.ac.manchester.spinnaker.nmpi.model.machine.ChipCoordinates
Represents a set of coordinates of a chip within a machine.
- 
Constructor SummaryConstructorsConstructorDescriptionChipCoordinates(int cabinet, int frame, int board) Create a new set of ChipCoordinates.
- 
Method Summary
- 
Constructor Details- 
ChipCoordinatespublic ChipCoordinates(int cabinet, int frame, int board) Create a new set of ChipCoordinates.- Parameters:
- cabinet- The cabinet containing the frame containing the board containing the chip.
- frame- The frame containing the board containing the chip.
- board- The board containing the chip.
 
 
- 
- 
Method Details- 
getCabinetpublic int getCabinet()Get the cabinet containing the frame containing the board containing the chip.- Returns:
- The cabinet number
 
- 
getFramepublic int getFrame()Get the frame containing the board containing the chip.- Returns:
- The frame number
 
- 
getBoardpublic int getBoard()Get the board containing the chip.- Returns:
- The board number
 
 
-