30 |
|
input = cms.untracked.int32(-1) |
31 |
|
) |
32 |
|
inFileName = 'EcalHcalCombined2011_{0:08d}.0.root'.format(RUNNUMBER) |
33 |
< |
if not os.access('moe5/{0}'.format(inFileName), os.R_OK): |
33 |
> |
if not os.access('tb_data/{0}'.format(inFileName), os.R_OK): |
34 |
|
cmd = ['scp','-Cp','daq@cmsmoe5:/data0/spool/{0}'.format(inFileName), |
35 |
< |
'moe5/{0}'.format(inFileName)] |
35 |
> |
'tb_data/{0}'.format(inFileName)] |
36 |
|
print ' '.join(cmd) |
37 |
|
subprocess.call(cmd) |
38 |
|
|
39 |
|
|
40 |
|
process.source = cms.Source("PoolSource", |
41 |
|
fileNames = cms.untracked.vstring( |
42 |
< |
"file:moe5/{0}".format(inFileName), |
42 |
> |
"file:tb_data/{0}".format(inFileName), |
43 |
|
) |
44 |
|
) |
45 |
|
|