17 |
|
print '\t\twith luminosity = %s and xsec = %s'%(job.lumi,job.xsec) |
18 |
|
print '\t\tdefined as type %s'%job.type |
19 |
|
print '\t\tcuts applied: %s'%job.treecut |
20 |
< |
print '\t\tsplitiing factor: %s'%job.split |
20 |
> |
print '\t\tScalefactor: %s'%job.sf |
21 |
> |
print '\t\tSplitting: %s'%job.split |
22 |
> |
|
23 |
> |
if job.subsamples: |
24 |
> |
print '\t\tSubsamples:' |
25 |
> |
print '\t\tGroups: %s'%job.group |
26 |
> |
print '\t\tnames: %s'%job.subnames |
27 |
> |
print '\t\tcuts: %s'%job.subcuts |
28 |
> |
#print job.subcuts |
29 |
> |
print '\t\tActive: %s'%job.active |
30 |
|
print '\t\tSystematics available:' |
31 |
|
for sys in job.SYS: print '\t\t\t\033[1;32m- %s\033[1;m'%sys |
32 |
|
comments=str.split(job.comment,'\n') |
34 |
|
for comment in comments: |
35 |
|
print '\t\t\t'+ comment |
36 |
|
print '' |
37 |
< |
infofile.close() |
37 |
> |
infofile.close() |