#!/usr/bin/env python2 # Run the calibration stage. import os, sys, os.path runs = ["forward-muon-2GeV-bothFGDs", "sideways-muon-2GeV-TPC1","forward-electrons-2GeV-FGD2","sideways-muons-1GeV-FGD1"] for name in runs: inname = name + ".root" if not os.path.exists(inname): print "MISSING INPUT" sys.exit(0) outname = name + "-SimDetectorResponse.root" # only execute if the file doesn't already exist. if not os.path.exists(outname): status = os.system("RunSimDetectorResponse.exe -o %s %s" % (outname, inname)) if status != 0: sys.exit(status)