-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathloadobjects.py
43 lines (30 loc) · 853 Bytes
/
loadobjects.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Created on Mon Oct 23 22:13:48 2017
Loads the objects to communicate with the TOPAS, winspec, flip mirror, and
power meter.
@author: pohno
"""
#load winspec definition
from winspec import WinSpec
#load topas definition
from topas import TOPAS
#load flipmirror definition
from flipmirror import FlipMirror
#load power meter object
from powermeter import PowerMeter
#load acquisition data type
from acquisition import Acquisition
#import time
import time
#import os
import os
#create single winspec object to interact with detector
winspec = WinSpec()
#create single topas object to interact with TOPAS
topas = TOPAS()
#create single flipmirror object to interact with the flip mirror
flip = FlipMirror()
#create single powermeter object to interact with the power meter
pm = PowerMeter()