ATLAS Offline Software
Loading...
Searching...
No Matches
grl_maker.py
Go to the documentation of this file.
1from DataQualityUtils.doZLumi import makeGRL
2import sys
3
4mydir = sys.argv[1]
5run_list = sys.argv[2:]
6print("Targetdir = ", mydir)
7print("Run List = ", run_list)
8for i in run_list:
9 run = int(i)
10 outfile = mydir+'/'+str(run)+'_grl.xml'
11 makeGRL(run, 'PHYS_StandardGRL_All_Good', outfile)
12 print(run)
void print(char *figname, TCanvas *c1)