1 |
|
#!/usr/bin/env python |
2 |
< |
from samplesinfo import sample |
2 |
> |
from samplesclass import sample |
3 |
|
import pickle |
4 |
|
import sys |
5 |
|
|
12 |
|
print '\n\n\t\033[1;34mLOADED INFO OF %s SAMPLES\033[1;m\n'%len(info) |
13 |
|
|
14 |
|
for job in info: |
15 |
< |
print '\t\033[1;31m-->%s: %s\033[1;m'%(job.getname(),job.plotname()) |
15 |
> |
print '\t\033[1;31m-->%s: %s\033[1;m'%(job.name,job.group) |
16 |
|
print '\t\tstored in file %s'%job.getpath() |
17 |
|
print '\t\twith luminosity = %s and xsec = %s'%(job.lumi,job.xsec) |
18 |
|
print '\t\tdefined as type %s'%job.type |