#!/usr/bin/env python2 import os, sys, os.path, commands try: pkgpath = sys.argv[1] except IndexError: pkgpath = ".." input_name = "sideways-muon-2GeV-TPC1_reco.root" if not os.path.exists(input_name): print "MISSING INPUT" sys.exit(0) dumpValidationFile = 'RunOARecon.valid.sideways-muon-2GeV.dump' # Get a dump of the file status = os.system("ValidateReconGlobal_2GeVMuon.exe -O no_interactive_window -O filesuffix=_sidewaysmuon " + " -O tpc_min_frac=99.0 -O fgd_min_frac=70.0 -O p0d_min_frac=96.0 -O tecal_min_frac=90.0 -O smrd_min_frac=55.0 " + input_name + " >& " + dumpValidationFile) eventDump = commands.getoutput('cat ' + dumpValidationFile) # Look for strings that should or shouldn't be in the file. valid = True # check that ratio of 1:2 tracker tracks is small if eventDump.find('Good, the ratio is less') == -1: print "!!!!!! Problem with number of reconstructed tracker tracks; too many multi-track events." valid = False # check that recon momentum is sensible if eventDump.find('Good, the mean momentum is') == -1: print "!!!!!! Problem with reconstructed momentum of global PIDs." valid = False # check that track quality is sensible. if eventDump.find('Good, the mean is') == -1: print "!!!!!! Problem with quality of global PIDs." valid = False # check that ECAL TrShVal is sensible. if eventDump.find('Good, the mean Tracker ECAL TrShVal') == -1: print "!!!!!! Problem with ECAL TrShVal of global PIDs." valid = False # check that TPC mu-pull is sensible. if eventDump.find('Good, the mean TPC Mu-pull is in range') == -1: print "!!!!!! Problem with TPC Mu-pull PID." valid = False # check that fraction of used tracks is reasonable. if eventDump.find('Bad: too small a fraction of tracks have') != -1: print "!!!!!! Problem with fractional contribution from sub-detector to global track." valid = False if not valid: print eventDump print "Failed to finish 660ValidateSidewaysMuonRecon validation cleanly." print "" print "FAIL"