Changeset 1443 for bcdaqwidgets/trunk/src/bcdaqwidgets_demos/vlinac.py
- Timestamp:
- Oct 15, 2013 8:22:10 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
bcdaqwidgets/trunk/src/bcdaqwidgets_demos/vlinac.py
r1402 r1443 1 1 #!/usr/bin/env python 2 2 3 ########### SVN repository information ###################4 # $Date$5 # $Author$6 # $Revision$7 # $URL$8 # $Id$9 ########### SVN repository information ###################10 11 3 ''' 12 comment 4 provide a basic GUI for the APS EPICS Virtual Linac demo software 13 5 14 6 Copyright (c) 2009 - 2013, UChicago Argonne, LLC. … … 38 30 39 31 class DemoView(QtGui.QWidget): 32 '''simple entry and label widgets for the most important PVs''' 40 33 41 34 def __init__(self, parent=None, prefix='unknown'): … … 178 171 # - - - - - - - - - - - - - - - - - - methods 179 172 180 def _demo_():173 def main(): 181 174 '''demonstrate use of this module''' 182 175 user = os.environ['USER'] … … 191 184 192 185 if __name__ == '__main__': 193 _demo_() 186 main() 187 188 189 ########### SVN repository information ################### 190 # $Date$ 191 # $Author$ 192 # $Revision$ 193 # $URL$ 194 # $Id$ 195 ########### SVN repository information ###################
Note: See TracChangeset
for help on using the changeset viewer.