~vpec/maus/tof_calib_read

« back to all changes in this revision

Viewing changes to macros/test/is_entire_module_bad.py

  • Committer: tunnell
  • Date: 2010-09-20 10:52:02 UTC
  • Revision ID: tunnell@itchy-20100920105202-ce4w9jm59zvgnsxq
moving stuff from tucs

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
execfile('src/load.py', globals()) # don't remove this!
 
2
 
 
3
u1 = Use(run='-1 month', useDateProg=True, runType='CIS')
 
4
x1 = ReadCISFile(getScans=False, cut=3, processingDir='/tmp/ctunnell/recis', badCut=27)
 
5
 
 
6
processors = [u1, x1, IsEntireModuleBad()]
 
7
 
 
8
Go(processors)
 
9
 
 
10