Simulation Core
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

20 lines
480 B

  1. module CCommon
  2. use CCommonVariables
  3. implicit none
  4. public
  5. contains
  6. ! Input routines
  7. subroutine SetStandRack(v)
  8. implicit none
  9. integer, intent(in) :: v
  10. if(Common%StandRack == v) return
  11. Common%StandRack = v
  12. ! call Common%OnStandRackChange%Run(v)
  13. end subroutine
  14. integer function GetStandRack()
  15. implicit none
  16. GetStandRack = Common%StandRack
  17. end function
  18. end module CCommon