The ActiveMntGrp is a dictionay containing the devices used by measurments, e.g. by ascan. It is store in the environment. These are the functions accessing the ActiveMntGrp:
In [3]: blueskyDESY.getActiveMntGrp()
Out[3]:
{'counters': ['eh_c01', 'eh_c02', 'eh_c03'],
'mcas': ['eh_mca01'],
'timers': ['eh_t01'],
'sampleTime': 0.2}
blueskyDESY.setActiveMntGrp( {'counters': ['eh_c01', 'eh_c02', 'eh_c03'],\
'mcas': ['eh_mca01'], 'timers': ['eh_t01'], 'sampleTime': 0.2}
In [8]: blueskyDESY.setSampleTime( 0.123)
Out[8]: True
In [9]: blueskyDESY.getActiveMntGrp()
Out[9]:
{'counters': ['eh_c01', 'eh_c02', 'eh_c03'],
'timers': ['eh_t01'],
'sampleTime': 0.123}