00001 #!/usr/bin/env python 00002 # 00003 # Load Cable map and Calibration tables for Dry Run data 00004 # 00005 # Usage: 00006 # nuwa.py -A None -n -1 -m"DryRunTables" -m"Calibrate" daq...data 00007 # 00008 # 00009 00010 def configure( argv=[] ): 00011 """ Example of loading Dry Run cabling and calibration tables""" 00012 00013 # Add Static Tables 00014 import DataSvc 00015 DataSvc.Configure( 00016 pmtCalibDataPath="$DATASVCROOT/share/DryRun/pmtCalibTable_DryRunNominal.txt", 00017 feeCableMapPath="$DATASVCROOT/share/feeCableMap.txt") 00018 return 00019 00020 def run(app): 00021 ''' 00022 Run Time configuration 00023 ''' 00024 pass