ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/COMP/CRAB/python/crab_help.py
Revision: 1.95
Committed: Fri May 22 12:51:55 2009 UTC (15 years, 11 months ago) by spiga
Content type: text/x-python
Branch: MAIN
Changes since 1.94: +4 -0 lines
Log Message:
crab documentation update

File Contents

# Content
1
2 ###########################################################################
3 #
4 # H E L P F U N C T I O N S
5 #
6 ###########################################################################
7
8 import common
9
10 import sys, os, string
11
12 import tempfile
13
14 ###########################################################################
15 def usage():
16 print 'in usage()'
17 usa_string = common.prog_name + """ [options]
18
19 The most useful general options (use '-h' to get complete help):
20
21 -create -- Create all the jobs.
22 -submit n -- Submit the first n available jobs. Default is all.
23 -status [range] -- check status of all jobs.
24 -getoutput|-get [range] -- get back the output of all jobs: if range is defined, only of selected jobs.
25 -extend -- Extend an existing task to run on new fileblocks if there.
26 -publish [dbs_url] -- after the getouput, publish the data user in a local DBS instance.
27 -kill [range] -- kill submitted jobs.
28 -resubmit [range] -- resubmit killed/aborted/retrieved jobs.
29 -copyData [range] -- copy locally the output stored on remote SE.
30 -renewCredential -- renew credential on the server.
31 -clean -- gracefully cleanup the directory of a task.
32 -match|-testJdl [range] -- check if resources exist which are compatible with jdl.
33 -report -- print a short report about the task
34 -list [range] -- show technical job details.
35 -postMortem [range] -- provide a file with information useful for post-mortem analysis of the jobs.
36 -printId [range] -- print the job SID or Task Unique ID while using the server.
37 -createJdl [range] -- provide files with a complete Job Description (JDL).
38 -validateCfg [fname] -- parse the ParameterSet using the framework's Python API.
39 -continue|-c [dir] -- Apply command to task stored in [dir].
40 -h [format] -- Detailed help. Formats: man (default), tex, html, txt.
41 -cfg fname -- Configuration file name. Default is 'crab.cfg'.
42 -debug N -- set the verbosity level to N.
43 -v -- Print version and exit.
44
45 "range" has syntax "n,m,l-p" which correspond to [n,m,l,l+1,...,p-1,p] and all possible combination
46
47 Example:
48 crab -create -submit 1
49 """
50 print usa_string
51 sys.exit(2)
52
53 ###########################################################################
54 def help(option='man'):
55 help_string = """
56 =pod
57
58 =head1 NAME
59
60 B<CRAB>: B<C>ms B<R>emote B<A>nalysis B<B>uilder
61
62 """+common.prog_name+""" version: """+common.prog_version_str+"""
63
64 This tool B<must> be used from an User Interface and the user is supposed to
65 have a valid Grid certificate.
66
67 =head1 SYNOPSIS
68
69 B<"""+common.prog_name+"""> [I<options>] [I<command>]
70
71 =head1 DESCRIPTION
72
73 CRAB is a Python program intended to simplify the process of creation and submission of CMS analysis jobs to the Grid environment .
74
75 Parameters for CRAB usage and configuration are provided by the user changing the configuration file B<crab.cfg>.
76
77 CRAB generates scripts and additional data files for each job. The produced scripts are submitted directly to the Grid. CRAB makes use of BossLite to interface to the Grid scheduler, as well as for logging and bookkeeping.
78
79 CRAB supports any CMSSW based executable, with any modules/libraries, including user provided ones, and deals with the output produced by the executable. CRAB provides an interface to CMS data discovery services (DBS and DLS), which are completely hidden to the final user. It also splits a task (such as analyzing a whole dataset) into smaller jobs, according to user requirements.
80
81 CRAB can be used in two ways: StandAlone and with a Server.
82 The StandAlone mode is suited for small task, of the order of O(100) jobs: it submits the jobs directly to the scheduler, and these jobs are under user responsibility.
83 In the Server mode, suited for larger tasks, the jobs are prepared locally and then passed to a dedicated CRAB server, which then interacts with the scheduler on behalf of the user, including additional services, such as automatic resubmission, status caching, output retrieval, and more.
84 The CRAB commands are exactly the same in both cases.
85
86 CRAB web page is available at
87
88 I<https://twiki.cern.ch/twiki/bin/view/CMS/SWGuideCrab>
89
90 =head1 HOW TO RUN CRAB FOR THE IMPATIENT USER
91
92 Please, read all the way through in any case!
93
94 Source B<crab.(c)sh> from the CRAB installation area, which have been setup either by you or by someone else for you.
95
96 Modify the CRAB configuration file B<crab.cfg> according to your need: see below for a complete list. A template and commented B<crab.cfg> can be found on B<$CRABDIR/python/crab.cfg>
97
98 ~>crab -create
99 create all jobs (no submission!)
100
101 ~>crab -submit 2 -continue [ui_working_dir]
102 submit 2 jobs, the ones already created (-continue)
103
104 ~>crab -create -submit 2
105 create _and_ submit 2 jobs
106
107 ~>crab -status
108 check the status of all jobs
109
110 ~>crab -getoutput
111 get back the output of all jobs
112
113 ~>crab -publish
114 publish all user outputs in the DBS specified in the crab.cfg (dbs_url_for_publication) or written as argument of this option
115
116 =head1 RUNNING CMSSW WITH CRAB
117
118 =over 4
119
120 =item B<A)>
121
122 Develop your code in your CMSSW working area. Do anything which is needed to run interactively your executable, including the setup of run time environment (I<eval `scramv1 runtime -sh|csh`>), a suitable I<ParameterSet>, etc. It seems silly, but B<be extra sure that you actually did compile your code> I<scramv1 b>.
123
124 =item B<B)>
125
126 Source B<crab.(c)sh> from the CRAB installation area, which have been setup either by you or by someone else for you. Modify the CRAB configuration file B<crab.cfg> according to your need: see below for a complete list.
127
128 The most important parameters are the following (see below for complete description of each parameter):
129
130 =item B<Mandatory!>
131
132 =over 6
133
134 =item B<[CMSSW]> section: datasetpath, pset, splitting parameters, output_file
135
136 =item B<[USER]> section: output handling parameters, such as return_data, copy_data etc...
137
138 =back
139
140 =item B<Run it!>
141
142 You must have a valid voms-enabled Grid proxy. See CRAB web page for details.
143
144 =back
145
146 =head1 RUNNING MULTICRAB
147
148 MultiCRAB is a CRAB extension to submit the same job to multiple datasets in one go.
149
150 The use case for multicrab is when you have your analysis code that you want to run on several datasets, typically some signals plus some backgrounds (for MC studies)
151 or on different streams/configuration/runs for real data taking. You want to run exactly the same code, and also the crab.cfg are different only for few keys:
152 for sure datasetpath but also other keys, such as eg total_number_of_events, in case you want to run on all signals but only a fraction of background, or anything else.
153 So far, you would have to create a set of crab.cfg, one for each dataset you want to access, and submit several instances of CRAB, saving the output to different locations.
154 Multicrab is meant to automatize this procedure.
155 In addition to the usual crab.cfg, there is a new configuration file called multicrab.cfg. The syntax is very similar to that of crab.cfg, namely
156 [SECTION] <crab.cfg Section>.Key=Value
157
158 Please note that it is mandatory to add explicitly the crab.cfg [SECTION] in front of [KEY].
159 The role of multicrab.cfg is to apply modification to the template crab.cfg, some which are common to all tasks, and some which are task specific.
160
161 =head2 So there are two sections:
162
163 =over 2
164
165 =item B<[COMMON]>
166
167 section: which applies to all task, and which is fully equivalent to modify directly the template crab.cfg
168
169 =item B<[DATASET]>
170
171 section: there could be an arbitrary number of sections, one for each dataset you want to run. The names are free (but COMMON and MULTICRAB), and they will be used as ui_working_dir for the task as well as an appendix to the user_remote_dir in case of output copy to remote SE. So, the task corresponding to section, say [SIGNAL] will be placed in directory SIGNAL, and the output will be put on /SIGNAL/, so SIGNAL will be added as last subdir in the user_remote_dir.
172
173 =back
174
175 For further details please visit
176
177 I<https://twiki.cern.ch/twiki/bin/view/CMS/SWGuideMultiCrab>
178
179 =head1 HOW TO RUN ON CONDOR-G
180
181 The B<Condor-G> mode for B<CRAB> is a special submission mode next to the standard Resource Broker submission. It is designed to submit jobs directly to a site and not using the Resource Broker.
182
183 Due to the nature of B<Condor-G> submission, the B<Condor-G> mode is restricted to OSG sites within the CMS Grid, currently the 7 US T2: Florida(ufl.edu), Nebraska(unl.edu), San Diego(ucsd.edu), Purdue(purdue.edu), Wisconsin(wisc.edu), Caltech(ultralight.org), MIT(mit.edu).
184
185 =head2 B<Requirements:>
186
187 =over 2
188
189 =item installed and running local Condor scheduler
190
191 (either installed by the local Sysadmin or self-installed using the VDT user interface: http://www.uscms.org/SoftwareComputing/UserComputing/Tutorials/vdt.html)
192
193 =item locally available LCG or OSG UI installation
194
195 for authentication via Grid certificate proxies ("voms-proxy-init -voms cms" should result in valid proxy)
196
197 =item set the environment variable EDG_WL_LOCATION to the edg directory of the local LCG or OSG UI installation
198
199 =back
200
201 =head2 B<What the Condor-G mode can do:>
202
203 =over 2
204
205 =item submission directly to multiple OSG sites,
206
207 the requested dataset must be published correctly by the site in the local and global services.
208 Previous restrictions on submitting only to a single site have been removed. SE and CE whitelisting
209 and blacklisting work as in the other modes.
210
211 =back
212
213 =head2 B<What the Condor-G mode cannot do:>
214
215 =over 2
216
217 =item submit jobs if no condor scheduler is running on the submission machine
218
219 =item submit jobs if the local condor installation does not provide Condor-G capabilities
220
221 =item submit jobs to an LCG site
222
223 =item support Grid certificate proxy renewal via the myproxy service
224
225 =back
226
227 =head2 B<CRAB configuration for Condor-G mode:>
228
229 The CRAB configuration for the Condor-G mode only requires one change in crab.cfg:
230
231 =over 2
232
233 =item select condor_g Scheduler:
234
235 scheduler = condor_g
236
237 =back
238
239 =head1 COMMANDS
240
241 =over 4
242
243 =item B<-create>
244
245 Create the jobs: from version 1_3_0 it is only possible to create all jobs.
246 The maximum number of jobs depends on dataset and splitting directives. This set of identical jobs accessing the same dataset are defined as a task.
247 This command create a directory with default name is I<crab_0_date_time> (can be changed via ui_working_dir parameter, see below). Inside this directory it is placed whatever is needed to submit your jobs. Also the output of your jobs (once finished) will be place there (see after). Do not cancel by hand this directory: rather use -clean (see).
248 See also I<-continue>.
249
250 =item B<-submit [range]>
251
252 Submit n jobs: 'n' is either a positive integer or 'all' or a [range]. Default is all.
253 If 'n' is passed as argument, the first 'n' suitable jobs will be submitted. Please note that this is behaviour is different from other commands, where -command N means act the command to the job N, and not to the first N jobs. If a [range] is passed, the selected jobs will be submitted.
254 This option must be used in conjunction with -create (to create and submit immediately) or with -continue (which is assumed by default), to submit previously created jobs. Failure to do so will stop CRAB and generate an error message. See also I<-continue>.
255
256 =item B<-continue [dir] | -c [dir]>
257
258 Apply the action on the task stored on directory [dir]. If the task directory is the standard one (crab_0_date_time), the more recent in time is taken. Any other directory must be specified.
259 Basically all commands (but -create) need -continue, so it is automatically assumed. Of course, the standard task directory is used in this case.
260
261 =item B<-status>
262
263 Check the status of the jobs, in all states. All the info (e.g. application and wrapper exit codes) will be available only after the output retrieval.
264
265 =item B<-getoutput|-get [range]>
266
267 Retrieve the output declared by the user via the output sandbox. By default the output will be put in task working dir under I<res> subdirectory. This can be changed via config parameters. B<Be extra sure that you have enough free space>. See I<range> below for syntax.
268
269 =item B<-publish [dbs_url]>
270
271 Publish user output in a local DBS instance after retrieving of output. By default the publish uses the dbs_url_for_publication specified in the crab.cfg file, otherwise you can write it as argument of this option.
272
273 =item B<-resubmit [range]>
274
275 Resubmit jobs which have been previously submitted and have been either I<killed> or are I<aborted>. See I<range> below for syntax.
276
277 =item B<-extend>
278
279 Create new jobs for an existing task, checking if new blocks are available for the given dataset.
280
281 =item B<-kill [range]>
282
283 Kill (cancel) jobs which have been submitted to the scheduler. A range B<must> be used in all cases, no default value is set.
284
285 =item B<-copyData [range]>
286
287 Copy locally (on current working directory) the output previously stored on remote SE by the jobs. Of course, only if copy_data option has been set.
288
289 =item B<-renewCredential >
290
291 If using the server modality, this command allows to delegate a valid credential (proxy/token) to the server associated with the task.
292
293 =item B<-match|-testJdl [range]>
294
295 Check if the job can find compatible resources. It is equivalent of doing I<edg-job-list-match> on edg.
296
297 =item B<-printId [range]>
298
299 Just print the job identifier, which can be the SID (Grid job identifier) of the job(s) or the taskId if you are using CRAB with the server or local scheduler Id. If [range] is "full", the the SID of all the jobs are printed, also in the case of submission with server.
300
301 =item B<-printJdl [range]>
302
303 Collect the full Job Description in a file located under share directory. The file base name is File- .
304
305 =item B<-postMortem [range]>
306
307 Try to collect more information of the job from the scheduler point of view.
308
309 =item B<-list [range]>
310
311 Dump technical information about jobs: for developers only.
312
313 =item B<-report>
314
315 Print a short report about the task, namely the total number of events and files processed/requested/available, the name of the datasetpath, a summary of the status of the jobs, the list of runs and lumi sections, and so on. In principle it should contain all the info needed for analysis. Work in progress.
316
317 =item B<-clean [dir]>
318
319 Clean up (i.e. erase) the task working directory after a check whether there are still running jobs. In case, you are notified and asked to kill them or retrieve their output. B<Warning> this will possibly delete also the output produced by the task (if any)!
320
321 =item B<-help [format] | -h [format]>
322
323 This help. It can be produced in three different I<format>: I<man> (default), I<tex> and I<html>.
324
325 =item B<-v>
326
327 Print the version and exit.
328
329 =item B<range>
330
331 The range to be used in many of the above commands has the following syntax. It is a comma separated list of jobs ranges, each of which may be a job number, or a job range of the form first-last.
332 Example: 1,3-5,8 = {1,3,4,5,8}
333
334 =back
335
336 =head1 OPTION
337
338 =over 4
339
340 =item B<-cfg [file]>
341
342 Configuration file name. Default is B<crab.cfg>.
343
344 =item B<-debug [level]>
345
346 Set the debug level: high number for high verbosity.
347
348 =back
349
350 =head1 CONFIGURATION PARAMETERS
351
352 All the parameter describe in this section can be defined in the CRAB configuration file. The configuration file has different sections: [CRAB], [USER], etc. Each parameter must be defined in its proper section. An alternative way to pass a config parameter to CRAB is via command line interface; the syntax is: crab -SECTION.key value . For example I<crab -USER.outputdir MyDirWithFullPath> .
353 The parameters passed to CRAB at the creation step are stored, so they cannot be changed by changing the original crab.cfg . On the other hand the task is protected from any accidental change. If you want to change any parameters, this require the creation of a new task.
354 Mandatory parameters are flagged with a *.
355
356 B<[CRAB]>
357
358 =over 4
359
360 =item B<jobtype *>
361
362 The type of the job to be executed: I<cmssw> jobtypes are supported
363
364 =item B<scheduler *>
365
366 The scheduler to be used: I<glitecoll> is the more efficient grid scheduler and should be used. Other choice are I<glite>, same as I<glitecoll> but without bulk submission (and so slower) or I<condor_g> (see specific paragraph) or I<edg> which is the former Grid scheduler, which will be dismissed in some future
367 From version 210, also local scheduler are supported, for the time being only at CERN. I<LSF> is the standard CERN local scheduler or I<CAF> which is LSF dedicated to CERN Analysis Facilities.
368
369 =item B<use_server>
370
371 To use the server for job handling (recommended) 0=no (default), 1=true. The server to be used will be found automatically from a list of available ones: it can also be specified explicitly by using I<server_name> (see below)
372
373 =item B<server_name>
374
375 To use the CRAB-server support it is needed to fill this key with server name as <Server_DOMAIN> (e.g. cnaf,fnal). If this is set, I<use_server> is set to true automatically.
376 If I<server_name=None> crab works in standalone way, same as using I<use_server=0> and no I<server_name>.
377 The server available to users can be found from CRAB web page.
378
379 =back
380
381 B<[CMSSW]>
382
383 =over 4
384
385 =item B<datasetpath *>
386
387 the path of processed dataset as defined on the DBS. It comes with the format I</PrimaryDataset/DataTier/Process> . In case no input is needed I<None> must be specified.
388
389 =item B<ads *>
390
391 you may want to run over an AnalysisDataSet. After define the related path in I<datasetpath>, take care to specify ads=1.
392
393 =item B<runselection *>
394
395 within a dataset you can restrict to run on a specific run number or run number range. For example runselection=XYZ or runselection=XYZ1-XYZ2 .
396
397 =item B<use_parent *>
398
399 within a dataset you can ask to run over the related parent files too. E.g., this will give you access to the RAW data while running over a RECO sample. Setting use_parent=1 CRAB determines the parent files from DBS and will add secondaryFileNames = cms.untracked.vstring( <LIST of parent FIles> ) to the pool source section of your parameter set.
400
401 =item B<pset *>
402
403 the ParameterSet to be used. Both .cfg and .py parameter sets are supported for the relevant versions of CMSSW.
404
405 =item I<Of the following three parameter exactly two must be used, otherwise CRAB will complain.>
406
407 =item B<total_number_of_events *>
408
409 the number of events to be processed. To access all available events, use I<-1>. Of course, the latter option is not viable in case of no input. In this case, the total number of events will be used to split the task in jobs, together with I<event_per_job>.
410
411 =item B<events_per_job*>
412
413 number of events to be accessed by each job. Since a job cannot cross the boundary of a fileblock it might be that the actual number of events per job is not exactly what you asked for. It can be used also with No input.
414
415 =item B<number_of_jobs *>
416
417 Define the number of job to be run for the task. The number of event for each job is computed taking into account the total number of events required as well as the granularity of EventCollections. Can be used also with No input.
418
419 =item B<split_by_run *>
420
421 to activate the split run based (each job will access a different run) use I<split_by_run>=1. You can definfe also I<number_of_jobs> and/or I<runselection>. NOTE: the Run Based combined with Event Based split is not yet available.
422
423 =item B<output_file *>
424
425 the output files produced by your application (comma separated list). From CRAB 2_2_2 onward, if TFileService is defined in user Pset, the corresponding output file is automatically added to the list of output files. User can avoid this by setting B<skip_TFileService_output> = 1 (default is 0 == file included). The Edm output produced via PoolOutputModule can be automatically added by setting B<get_edm_output> = 1 (default is 0 == no)
426
427 =item B<skip_TFileService_output>
428
429 Force CRAB to skip the inclusion of file produced by TFileService to list of output files. Default is I<0>, namely the file is included.
430
431 =item B<get_edm_output>
432
433 Force CRAB to add the EDM output file, as defined in PSET in PoolOutputModule (if any) to be added to the list of output files. Default is 0 (== no inclusion)
434
435 =item B<increment_seeds>
436
437 Specifies a comma separated list of seeds to increment from job to job. The initial value is taken
438 from the CMSSW config file. I<increment_seeds=sourceSeed,g4SimHits> will set sourceSeed=11,12,13 and g4SimHits=21,22,23 on
439 subsequent jobs if the values of the two seeds are 10 and 20 in the CMSSW config file.
440
441 See also I<preserve_seeds>. Seeds not listed in I<increment_seeds> or I<preserve_seeds> are randomly set for each job.
442
443 =item B<preserve_seeds>
444
445 Specifies a comma separated list of seeds to which CRAB will not change from their values in the user
446 CMSSW config file. I<preserve_seeds=sourceSeed,g4SimHits> will leave the Pythia and GEANT seeds the same for every job.
447
448 See also I<increment_seeds>. Seeds not listed in I<increment_seeds> or I<preserve_seeds> are randomly set for each job.
449
450 =item B<first_run>
451
452 First run to be generated in a generation jobs. Relevant only for no-input workflow.
453
454 =item B<generator>
455
456 Name of the generator your MC job is using. Some generators require CRAB to skip events, others do not.
457 Possible values are pythia, comphep, and madgraph. This will skip events in your generator input file.
458
459 =item B<executable>
460
461 The name of the executable to be run on remote WN. The default is cmsrun. The executable is either to be found on the release area of the WN, or has been built on user working area on the UI and is (automatically) shipped to WN. If you want to run a script (which might internally call I<cmsrun>, use B<USER.script_exe> instead.
462
463 =item I<DBS and DLS parameters:>
464
465 =item B<dbs_url>
466
467 The URL of the DBS query page. For expert only.
468
469 =item B<show_prod>
470
471 To enable CRAB to show data hosted on Tier1s sites specify I<show_prod> = 1. By default those data are masked.
472
473 =item B<no_block_boundary>
474
475 To remove fileblock boundaries in job splitting specify I<no_block_boundary> = 1.
476
477 =back
478
479 B<[USER]>
480
481 =over 4
482
483 =item B<additional_input_files>
484
485 Any additional input file you want to ship to WN: comma separated list. IMPORTANT NOTE: they will be placed in the WN working dir, and not in ${CMS_SEARCH_PATH}. Specific files required by CMSSW application must be placed in the local data directory, which will be automatically shipped by CRAB itself. You do not need to specify the I<ParameterSet> you are using, which will be included automatically. Wildcards are allowed.
486
487 =item B<script_exe>
488
489 A user script that will be run on WN (instead of default cmsrun). It is up to the user to setup properly the script itself to run on WN enviroment. CRAB guarantees that the CMSSW environment is setup (e.g. scram is in the path) and that the modified pset.cfg will be placed in the working directory, with name CMSSW.cfg . The user must ensure that a job report named crab_fjr.xml will be written. This can be guaranteed by passing the arguments "-j crab_fjr.xml" to cmsRun in the script. The script itself will be added automatically to the input sandbox so user MUST NOT add it within the B<USER.additional_input_files>.
490
491 =item B<ui_working_dir>
492
493 Name of the working directory for the current task. By default, a name I<crab_0_(date)_(time)> will be used. If this card is set, any CRAB command which require I<-continue> need to specify also the name of the working directory. A special syntax is also possible, to reuse the name of the dataset provided before: I<ui_working_dir : %(dataset)s> . In this case, if e.g. the dataset is SingleMuon, the ui_working_dir will be set to SingleMuon as well.
494
495 =item B<thresholdLevel>
496
497 This has to be a value between 0 and 100, that indicates the percentage of task completeness (jobs in a ended state are complete, even if failed). The server will notify the user by e-mail (look at the field: B<eMail>) when the task will reach the specified threshold. Works just with the server_mode = 1.
498
499 =item B<eMail>
500
501 The server will notify the specified e-mail when the task will reaches the specified B<thresholdLevel>. A notification is also sent when the task will reach the 100\% of completeness. This field can also be a list of e-mail: "B<eMail = user1@cern.ch, user2@cern.ch>". Works just with the server_mode = 1.
502
503 =item B<return_data *>
504
505 The output produced by the executable on WN is returned (via output sandbox) to the UI, by issuing the I<-getoutput> command. B<Warning>: this option should be used only for I<small> output, say less than 10MB, since the sandbox cannot accommodate big files. Depending on Resource Broker used, a size limit on output sandbox can be applied: bigger files will be truncated. To be used in alternative to I<copy_data>.
506
507 =item B<outputdir>
508
509 To be used together with I<return_data>. Directory on user interface where to store the output. Full path is mandatory, "~/" is not allowed: the default location of returned output is ui_working_dir/res .
510
511 =item B<logdir>
512
513 To be used together with I<return_data>. Directory on user interface where to store the standard output and error. Full path is mandatory, "~/" is not allowed: the default location of returned output is ui_working_dir/res .
514
515 =item B<copy_data *>
516
517 The output (only that produced by the executable, not the std-out and err) is copied to a Storage Element of your choice (see below). To be used as an alternative to I<return_data> and recommended in case of large output.
518
519 =item B<storage_element>
520
521 To be used with <copy_data>=1
522 If you want to copy the output of your analysis in a official CMS Tier2 or Tier3, you have to write the CMS Site Name of the site, as written in the SiteDB https://cmsweb.cern.ch/sitedb/reports/showReport?reportid=se_cmsname_map.ini (i.e T2_IT_legnaro). You have also to specify the <remote_dir>(see below)
523
524 If you want to copy the output in a not_official_CMS remote site you have to specify the complete storage element name (i.e se.xxx.infn.it).You have also to specify the <storage_path> and the <storage_port> if you do not use the default one(see below).
525
526 =item B<user_remote_dir>
527
528 To be used with <copy_data>=1 and <storage_element> official CMS sites.
529 This is the directory or tree of directories where your output will be stored. This directory will be created under the mountpoint ( which will be discover by CRAB if an official CMS storage Element has been used, or taken from the crab.cfg as specified by the user). B<NOTE> This part of the path will be used as logical file name of your files in the case of publication without using an official CMS storage Element.
530
531 =item B<storage_path>
532
533 To be used with <copy_data>=1 and <storage_element> not official CMS sites.
534 This is the full path of the Storage Element writeable by all, the mountpoint of SE (i.e /srm/managerv2?SFN=/pnfs/se.xxx.infn.it/yyy/zzz/)
535
536
537 =item B<storage_pool>
538
539 If you are using CAF scheduler, you can specify the storage pool where to write your output.
540 The default is cmscafuser. If you do not want to use the default, you can overwrite it specifing None
541
542 =item B<storage_port>
543
544 To choose the storage port specify I<storage_port> = N (default is 8443) .
545
546 =item B<publish_data*>
547
548 To be used with <copy_data>=1
549 To publish your produced output in a local istance of DBS set publish_data = 1
550 All the details about how to use this functionality are written in https://twiki.cern.ch/twiki/bin/view/CMS/SWGuideCrabForPublication
551 N.B 1) if you are using an official CMS site to stored data, the remote dir will be not considered. The directory where data will be stored is decided by CRAB, following the CMS policy in order to be able to re-read published data.
552 2) if you are using a not official CMS site to store data, you have to check the <lfn>, that will be part of the logical file name of you published files, in order to be able to re-read the data.
553
554 =item B<publish_data_name>
555
556 You produced output will be published in your local DBS with dataset name <primarydataset>/<publish_data_name>/USER
557
558 =item B<dbs_url_for_publication>
559
560 Specify the URL of your local DBS istance where CRAB has to publish the output files
561
562 =item B<pubilish_zero_event>
563
564 T0 force zero event files publication specify I<pubilish_zero_event> = 1
565
566 =item B<srm_version>
567
568 To choose the srm version specify I<srm_version> = (srmv1 or srmv2).
569
570 =item B<xml_report>
571
572 To be used to switch off the screen report during the status query, enabling the db serialization in a file. Specifying I<xml_report> = FileName CRAB will serialize the DB into CRAB_WORKING_DIR/share/FileName.
573
574 =item B<usenamespace>
575
576 To use the automate namespace definition (perfomed by CRAB) it is possible to set I<usenamespace>=1. The same policy used for the stage out in case of data publication will be applied.
577
578 =item B<debug_wrapper>
579
580 To enable the higer verbose level on wrapper specify I<debug_wrapper> = 1. The Pset contents before and after the CRAB maipulation will be written together with other useful infos.
581
582 =item B<deep_debug>
583
584 To be used in case of unexpected job crash when the sdtout and stderr files are lost. Submitting again the same jobs specifying I<deep_debug> = 1 these files will be reported back. NOTE: it works only on standalone mode for debugging purpose.
585
586 =item B<dontCheckSpaceLeft>
587
588 Set it to 1 to skip the check of free space left on your working directory before attempting to get the output back. Default is 0 (=False)
589
590
591 =item B<local_stage_out>
592
593 To use the local stage out (i.e. to the closeSE), in case of remote stage out failure, set I<local_stage_out> = 1 .
594
595 =back
596
597 B<[EDG]>
598
599 =over 4
600
601 =item B<RB>
602
603 Which RB you want to use instead of the default one, as defined in the configuration of your UI. The ones available for CMS are I<CERN> and I<CNAF>. They are actually identical, being a collection of all RB/WMS available for CMS: the configuration files needed to change the broker will be automatically downloaded from CRAB web page and used.
604 You can use any other RB which is available, if you provide the proper configuration files. E.g., for RB XYZ, you should provide I<edg_wl_ui.conf.CMS_XYZ> and I<edg_wl_ui_cmd_var.conf.CMS_XYZ> for EDG RB, or I<glite.conf.CMS_XYZ> for glite WMS. These files are searched for in the current working directory, and, if not found, on crab web page. So, if you put your private configuration files in the working directory, they will be used, even if they are not available on crab web page.
605 Please get in contact with crab team if you wish to provide your RB or WMS as a service to the CMS community.
606
607 =item B<proxy_server>
608
609 The proxy server to which you delegate the responsibility to renew your proxy once expired. The default is I<myproxy.cern.ch> : change only if you B<really> know what you are doing.
610
611 =item B<role>
612
613 The role to be set in the VOMS. See VOMS documentation for more info.
614
615 =item B<group>
616
617 The group to be set in the VOMS, See VOMS documentation for more info.
618
619 =item B<dont_check_proxy>
620
621 If you do not want CRAB to check your proxy. The creation of the proxy (with proper length), its delegation to a myproxyserver is your responsibility.
622
623 =item B<dont_check_myproxy>
624
625 If you want to to switch off only the proxy renewal set I<dont_check_myproxy>=1. The proxy delegation to a myproxyserver is your responsibility.
626
627 =item B<requirements>
628
629 Any other requirements to be add to JDL. Must be written in compliance with JDL syntax (see LCG user manual for further info). No requirement on Computing element must be set.
630
631 =item B<additional_jdl_parameters:>
632
633 Any other parameters you want to add to jdl file:semicolon separated list, each
634 item B<must> be complete, including the closing ";".
635
636 =item B<wms_service>
637
638 With this field it is also possible to specify which WMS you want to use (https://hostname:port/pathcode) where "hostname" is WMS name, the "port" generally is 7443 and the "pathcode" should be something like "glite_wms_wmproxy_server".
639
640 =item B<max_cpu_time>
641
642 Maximum CPU time needed to finish one job. It will be used to select a suitable queue on the CE. Time in minutes.
643
644 =item B<max_wall_clock_time>
645
646 Same as previous, but with real time, and not CPU one.
647
648 =item B<ce_black_list>
649
650 All the CE (Computing Element) whose name contains the following strings (comma separated list) will not be considered for submission. Use the dns domain (e.g. fnal, cern, ifae, fzk, cnaf, lnl,....). You may use hostnames or CMS Site names (T2_DE_DESY) or substrings.
651
652 =item B<ce_white_list>
653
654 Only the CE (Computing Element) whose name contains the following strings (comma separated list) will be considered for submission. Use the dns domain (e.g. fnal, cern, ifae, fzk, cnaf, lnl,....). You may use hostnames or CMS Site names (T2_DE_DESY) or substrings. Please note that if the selected CE(s) does not contain the data you want to access, no submission can take place.
655
656 =item B<se_black_list>
657
658 All the SE (Storage Element) whose name contains the following strings (comma separated list) will not be considered for submission.It works only if a datasetpath is specified. You may use hostnames or CMS Site names (T2_DE_DESY) or substrings.
659
660 =item B<se_white_list>
661
662 Only the SE (Storage Element) whose name contains the following strings (comma separated list) will be considered for submission.It works only if a datasetpath is specified. Please note that if the selected CE(s) does not contain the data you want to access, no submission can take place. You may use hostnames or CMS Site names (T2_DE_DESY) or substrings.
663
664 =item B<remove_default_blacklist>
665
666 CRAB enforce the T1s Computing Eelements Black List. By default it is appended to the user defined I<CE_black_list>. To remove the enforced T1 black lists set I<remove_default_blacklist>=1.
667
668 =item B<virtual_organization>
669
670 You do not want to change this: it is cms!
671
672 =item B<retry_count>
673
674 Number of time the Grid will try to resubmit your job in case of Grid related problem.
675
676 =item B<shallow_retry_count>
677
678 Number of time shallow resubmission the Grid will try: resubmissions are tried B<only> if the job aborted B<before> start. So you are guaranteed that your jobs run strictly once.
679
680 =item B<maxtarballsize>
681
682 Maximum size of tar-ball in Mb. If bigger, an error will be generated. The actual limit is that on the RB input sandbox. Default is 9.5 Mb (sandbox limit is 10 Mb)
683
684 =item B<skipwmsauth>
685
686 Temporary useful parameter to allow the WMSAuthorisation handling. Specifying I<skipwmsauth> = 1 the pyopenssl problmes will disappear. It is needed working on gLite UI outside of CERN.
687
688 =back
689
690 B<[LSF]> or B<[CAF]>
691
692 =over 4
693
694 =item B<queue>
695
696 The LSF queue you want to use: if none, the default one will be used. For CAF, the proper queue will be automatically selected.
697
698 =item B<resource>
699
700 The resources to be used within a LSF queue. Again, for CAF, the right one is selected.
701
702 =item B<copyCommand>
703
704 To define the command to be used to copy both Input and Output sandboxes to final location. Default is cp
705
706 =back
707
708 =head1 FILES
709
710 I<crab> uses a configuration file I<crab.cfg> which contains configuration parameters. This file is written in the INI-style. The default filename can be changed by the I<-cfg> option.
711
712 I<crab> creates by default a working directory 'crab_0_E<lt>dateE<gt>_E<lt>timeE<gt>'
713
714 I<crab> saves all command lines in the file I<crab.history>.
715
716 =head1 HISTORY
717
718 B<CRAB> is a tool for the CMS analysis on the Grid environment. It is based on the ideas from CMSprod, a production tool originally implemented by Nikolai Smirnov.
719
720 =head1 AUTHORS
721
722 """
723 author_string = '\n'
724 for auth in common.prog_authors:
725 #author = auth[0] + ' (' + auth[2] + ')' + ' E<lt>'+auth[1]+'E<gt>,\n'
726 author = auth[0] + ' E<lt>' + auth[1] +'E<gt>,\n'
727 author_string = author_string + author
728 pass
729 help_string = help_string + author_string[:-2] + '.'\
730 """
731
732 =cut
733 """
734
735 pod = tempfile.mktemp()+'.pod'
736 pod_file = open(pod, 'w')
737 pod_file.write(help_string)
738 pod_file.close()
739
740 if option == 'man':
741 man = tempfile.mktemp()
742 pod2man = 'pod2man --center=" " --release=" " '+pod+' >'+man
743 os.system(pod2man)
744 os.system('man '+man)
745 pass
746 elif option == 'tex':
747 fname = common.prog_name+'-v'+common.prog_version_str
748 tex0 = tempfile.mktemp()+'.tex'
749 pod2tex = 'pod2latex -full -out '+tex0+' '+pod
750 os.system(pod2tex)
751 tex = fname+'.tex'
752 tex_old = open(tex0, 'r')
753 tex_new = open(tex, 'w')
754 for s in tex_old.readlines():
755 if string.find(s, '\\begin{document}') >= 0:
756 tex_new.write('\\title{'+common.prog_name+'\\\\'+
757 '(Version '+common.prog_version_str+')}\n')
758 tex_new.write('\\author{\n')
759 for auth in common.prog_authors:
760 tex_new.write(' '+auth[0]+
761 '\\thanks{'+auth[1]+'} \\\\\n')
762 tex_new.write('}\n')
763 tex_new.write('\\date{}\n')
764 elif string.find(s, '\\tableofcontents') >= 0:
765 tex_new.write('\\maketitle\n')
766 continue
767 elif string.find(s, '\\clearpage') >= 0:
768 continue
769 tex_new.write(s)
770 tex_old.close()
771 tex_new.close()
772 print 'See '+tex
773 pass
774 elif option == 'html':
775 fname = common.prog_name+'-v'+common.prog_version_str+'.html'
776 pod2html = 'pod2html --title='+common.prog_name+\
777 ' --infile='+pod+' --outfile='+fname
778 os.system(pod2html)
779 print 'See '+fname
780 pass
781 elif option == 'txt':
782 fname = common.prog_name+'-v'+common.prog_version_str+'.txt'
783 pod2text = 'pod2text '+pod+' '+fname
784 os.system(pod2text)
785 print 'See '+fname
786 pass
787
788 sys.exit(0)