15 |
|
self.datasvc_url = cfg_params.get("USER.datasvc_url",url) |
16 |
|
|
17 |
|
self.FacOps_savannah = 'https://savannah.cern.ch/support/?func=additem&group=cmscompinfrasup' |
18 |
< |
stage_out_faq='https://twiki.cern.ch/twiki/bin/view/CMS/SWGuideCrabFaq#How_to_store_output_with_CRAB_2' |
18 |
> |
stage_out_faq='https://twiki.cern.ch/twiki/bin/view/CMS/SWGuideCrabHowTo#Stageout_and_publication' |
19 |
|
self.dataPub_faq = 'https://twiki.cern.ch/twiki/bin/view/CMS/SWGuideCrabForPublication' |
20 |
|
|
21 |
|
self.srm_version = cfg_params.get("USER.srm_version",'srmv2') |
58 |
|
raise CrabException(msg) |
59 |
|
self.sched = common.scheduler.name().upper() |
60 |
|
self.protocol = self.srm_version |
61 |
+ |
|
62 |
+ |
self.forced_path = '/store/user/' |
63 |
|
if self.sched in ['CAF','LSF']: |
64 |
|
self.protocol = 'direct' |
65 |
|
self.SE = {'CAF':'caf.cern.ch', 'LSF':''} |
66 |
< |
|
67 |
< |
self.forced_path = '/store/user/' |
66 |
> |
if self.sched == 'CAF': self.forced_path = '/store/caf/user/' |
67 |
> |
|
68 |
|
if not self.usePhedex: |
69 |
|
self.forced_path = self.user_remote_dir |
70 |
|
return |