def UserInterActivate():
    while (True):
        print(g_Title),
        iIndex = raw_input()
        if iIndex == '1':
            ProcessManager.Run()
        elif iIndex == '2':
            CollectData.AnalyzeLog()
        elif iIndex == "q":
            break
        else:
            print(u"输入参数不正确,请输入[1-3之内的数值]")
        print ""