~janusz-martyniak/mcdb/mice.cdb.client.api-python

« back to all changes in this revision

Viewing changes to src/cdb/__init__.py

  • Committer: Antony Wilson
  • Date: 2011-09-01 08:10:55 UTC
  • Revision ID: antony.wilson@stfc.ac.uk-20110901081055-5hcu1wbeh9f75sdd
add calibration, fixes to cabling, pylint stuff

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
 
18
18
The CablingSuperMouse class is used to set and retrieve cabling data.
19
19
 
 
20
The Calibration class is used to retrieve calibration data.
 
21
 
 
22
The CalibrationSuperMouse class is used to set and retrieve calibration data.
 
23
 
20
24
The Control class is used to retrieve control parameter values.
21
25
 
22
26
The ControlSuperMouse class is used to set and retrieve control parameter
36
40
from cdb._beamline_supermouse import BeamlineSuperMouse
37
41
from cdb._cabling import Cabling
38
42
from cdb._cabling_supermouse import CablingSuperMouse
 
43
from cdb._calibration import Calibration
 
44
from cdb._calibration_supermouse import CalibrationSuperMouse
39
45
from cdb._control import Control
40
46
from cdb._control_supermouse import ControlSuperMouse
41
47
from cdb._geometry import Geometry
42
48
from cdb._geometry_supermouse import GeometrySuperMouse
43
49
 
44
50
__all__ = ["CdbError", "CdbPermanentError", "CdbTemporaryError", "AlarmHandler",
45
 
"Beamline", "BeamlineSuperMouse", "Cabling", "CablingSuperMouse", "Control",
46
 
"ControlSuperMouse", "Geometry", "GeometrySuperMouse"]
 
51
"Beamline", "BeamlineSuperMouse", "Cabling", "CablingSuperMouse", "Calibration",
 
52
"CalibrationSuperMouse", "Control", "ControlSuperMouse", "Geometry",
 
53
"GeometrySuperMouse"]
47
54
 
48
 
__version__ = '0.0.0.2'
 
55
__version__ = '0.0.0.3'
49
56