Vega strike Python Modules doc  0.5.1
Documentation of the " Modules " folder of Vega strike
 All Data Structures Namespaces Files Functions Variables
patrol Namespace Reference

Data Structures

class  patrol
 

Functions

def initrandom
 

Function Documentation

def patrol.initrandom (   minsysaway,
  maxsysaway,
  minsigtopatrol,
  maxsigtopatrol,
  mincred,
  maxcred 
)

Definition at line 112 of file patrol.py.

References vsrandom.randrange().

113 def initrandom (minsysaway,maxsysaway,minsigtopatrol,maxsigtopatrol,mincred,maxcred):
114  nsys = vsrandom.randrange (minsysaway, maxsysaway)
115  nsig = vsrandom.randrange (minsigtopatrol, maxsigtopatrol)
116  return patrol (nsys, nsig,vsrandom.randrange(100.0,300.0),(1+nsys*0.5)*nsig*vsrandom.randrange (mincred,maxcred))