Changeset 1506
- Timestamp:
- Feb 18, 2014 11:54:46 AM (8 years ago)
- Location:
- topdoc/trunk/src
- Files:
-
- 1 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
topdoc/trunk/src/bcda/doc_bcda_iocs.py
r1487 r1506 3 3 ''' 4 4 Document the IOCs maintained by BCDA (from configurations on the DSERVs) 5 6 Compare the IOCs with this list of known IOCs (XML content): 7 8 :alive: http://bcda.xray.aps.anl.gov/cgi-bin/alivexml.cgi 9 5 10 ''' 6 11 … … 176 181 177 182 processConfigXml(cmd_args.xmlFile) 183 import ask_alive 184 ioc_db = ask_alive.identify_iocs() 178 185 179 186 -
topdoc/trunk/src/topdoc/__init__.py
r1503 r1506 3 3 LOG_FILE = 'topdoc.log' 4 4 logging_started = False 5 6 7 # TODO: consider refactoring to use PyMSI 8 # see: http://www-csr.bessy.de/control/pymsi/pymsi.html 5 9 6 10 -
topdoc/trunk/src/topdoc/template.py
r1505 r1506 60 60 {P=12ida1:,SCANREC=12ida1:scan1,Q=m5,POS="$(Q).VAL",RDBK="$(Q).RBV"} 61 61 } 62 62 63 # TODO: or (starting with base 3.15) 64 global { P=12ida1:,SCANREC=12ida1:scan1 } 65 file "$(SSCAN)/sscanApp/Db/scanParms.db" 66 { 67 {Q=m1,POS="$(Q).VAL",RDBK="$(Q).RBV"} 68 {Q=m2,POS="$(Q).VAL",RDBK="$(Q).RBV"} 69 {Q=m3,POS="$(Q).VAL",RDBK="$(Q).RBV"} 70 {Q=m4,POS="$(Q).VAL",RDBK="$(Q).RBV"} 71 {Q=m5,POS="$(Q).VAL",RDBK="$(Q).RBV"} 72 } 73 63 74 ''' 64 75 tokenLog = TokenLog.TokenLog()
Note: See TracChangeset
for help on using the changeset viewer.