fc7e1e45 |
1 | ## default OCDB, if autoOCDB is set put in any 4 digit year starting with 20 |
fc7e1e45 |
2 | ## by default the OCDB year set automatically for each chunk |
3 | ## based on the path |
4 | ## to disable set autoOCDB=0 |
5 | # |
6 | #autoOCDB=0 |
39527a15 |
7 | defaultOCDB="local:///cvmfs/alice-ocdb.cern.ch/calibration/data/2010/OCDB/" |
71353a5f |
8 | |
9 | ## force the run number (disables automatic guessing from chunk path) |
10 | #runNumber=167123 |
fc7e1e45 |
11 | |
cb473870 |
12 | ## makeflow options |
39527a15 |
13 | #makeflowPath="/hera/alice/aux/cctools/bin" |
fc7e1e45 |
14 | #makeflowOptions="-T wq -N alice -d all -C ali-copilot.cern.ch:9097" |
15 | #makeflowOptions="-T wq -N alice -C ali-copilot.cern.ch:9097" |
39527a15 |
16 | makeflowOptions="-T condor" |
5de3064b |
17 | |
18 | ## batch system options |
39527a15 |
19 | #batchCommand="/usr/bin/qsub" |
20 | #batchFlags="-b y -cwd -l h_rt=24:0:0,h_rss=4G " |
21 | batchFlags="" |
fc7e1e45 |
22 | |
23 | ## Directory to store output, productionID from command line will be appended |
24 | # |
39527a15 |
25 | baseOutputDirectory="/eos/opstest/pbuncic/output" |
fc7e1e45 |
26 | |
71353a5f |
27 | #init aliroot |
5de3064b |
28 | #must be a script which executed a command in a modified environment |
29 | #e.g. alienv aliroot somemacro.C |
fc7e1e45 |
30 | # |
39527a15 |
31 | alirootEnv="/cvmfs/alice.cern.ch/bin/alienv setenv AliRoot/$ALIROOT_VERSION -c" |
fc7e1e45 |
32 | |
71353a5f |
33 | #run QA with a known good version of the QA script |
6fc48f9e |
34 | #trustedQAtrainMacro='/hera/alice/mkrzewic/gsisvn/Calibration/QAtrain_duo.C' |
fc7e1e45 |
35 | |
5de3064b |
36 | ## if set to 1, reconstruct in /tmp, then copy results to final place |
fc7e1e45 |
37 | # |
71353a5f |
38 | reconstructInTemporaryDir=0 |
fc7e1e45 |
39 | |
40 | ## trigger mask sent to the reconstruction |
41 | ## if you want to send an empty string use "\"\"" |
42 | ## usually, for filtered data use empty, |
43 | ## for unfiltered chunks use kCalibBarrel |
44 | # |
45 | #recoTriggerOptions="?Trigger=kCalibBarrel" |
46 | # |
47 | recoTriggerOptions="\"\"" |
48 | |
49 | ## merging is started when this percentage of input files is reconstructed |
5de3064b |
50 | # only relevant for batch systems |
fc7e1e45 |
51 | # |
cb473870 |
52 | percentProcessedFilesToContinue=100 |
fc7e1e45 |
53 | maxSecondsToWait=$(( 3600*24 )) |
54 | |
55 | ## maximal number of events to process (per chunk, -1 means no limit) |
56 | # |
39527a15 |
57 | nEvents=10 |
fc7e1e45 |
58 | |
59 | ## max no of chunks per run(0 means no limit) |
60 | # |
61 | nMaxChunks=0 |
62 | |
5de3064b |
63 | ## run these command(s) after the runnig dir has been set up, use to e.g. |
fc7e1e45 |
64 | # |
65 | postSetUpActionCPass0="" |
71353a5f |
66 | postSetUpActionCPass1="" |
fc7e1e45 |
67 | |
68 | ## detailed setting what to run |
69 | ## CPass0 |
70 | # |
71 | runCPass0reco=1 |
72 | runCPass0MergeMakeOCDB=1 |
73 | ## CPass1 |
74 | # |
75 | runCPass1reco=1 |
76 | runCPass1MergeMakeOCDB=1 |
77 | |
cb473870 |
78 | ## filtering |
79 | runESDfiltering=1 |
80 | filteringFactorHighPt=1e2 |
81 | filteringFactorV0s=1e1 |
cb473870 |
82 | |
fc7e1e45 |
83 | ## who to email upon completion |
84 | # |
5de3064b |
85 | MAILTO="" |
fc7e1e45 |
86 | |
fc7e1e45 |
87 | ## uncomment to just run the logic, dont check for data and dont process it - |
88 | ## fake the output files (for debugging) |
89 | # |
71353a5f |
90 | #pretend=1 |
fc7e1e45 |
91 | |
5de3064b |
92 | ##dump all output to stdout instead of a log for debugging |
fc7e1e45 |
93 | # |
94 | #dontRedirectStdOutToLog=1 |
95 | |
96 | ## uncomment this option to force streaming the logs to the final destination instead of the running directory |
97 | ## this way a log is always available even in case the batch system kills the job |
98 | # |
71353a5f |
99 | logToFinalDestination=1 |
fc7e1e45 |
100 | |
5ed7c82c |
101 | #set the downscaling factors during the filtering fro expert QA (overrides the previous values) |
102 | #AliAnalysisTaskFilteredTree_fLowPtTrackDownscaligF="1e-2" |
103 | #AliAnalysisTaskFilteredTree_fLowPtV0DownscaligF="1e-2" |
71353a5f |
104 | |
5de3064b |
105 | #this forces root to produce a coredump where it normally would just crash (floting point exception) |
71353a5f |
106 | ALIROOT_FORCE_COREDUMP=1 |
107 | |
108 | #run one job per run with valgrind... |
39527a15 |
109 | #profilingCommand="/usr/bin/valgrind --tool=callgrind --num-callers=40 -v --trace-children=yes" |
110 | #nEventsProfiling=5 |
71353a5f |
111 | |