You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
set parallel world in test script + toggle ideal ITS in anchored simulation (#1908)
* set pw in test script + toggle ideal ITS in anchored simulation
* remove duplicated flag for pw activation
* fix string check
* fix variable declaration
* fix check
Copy file name to clipboardExpand all lines: MC/run/ANCHOR/anchorMC.sh
+10-3Lines changed: 10 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -244,6 +244,11 @@ TIMESTAMP=`grep "Determined timestamp to be" timestampsampling_${ALIEN_JDL_LPMRU
244
244
echo_info "TIMESTAMP IS ${TIMESTAMP}"
245
245
246
246
# -- Create aligned geometry using ITS ideal alignment to avoid overlaps in geant
247
+
ENABLEPW=0
248
+
if [[ ${remainingargs}==*"GeometryManagerParam.useParallelWorld=1"* ]];then
249
+
ENABLEPW=1
250
+
fi
251
+
247
252
if [ "${ENABLEPW}"=="0" ];then
248
253
CCDBOBJECTS_IDEAL_MC="ITS/Calib/Align"
249
254
TIMESTAMP_IDEAL_MC=1
@@ -257,13 +262,15 @@ fi
257
262
258
263
# TODO This can potentially be removed or if needed, should be taken over by o2dpg_sim_workflow_anchored.py and O2_dpg_workflow_runner.py
259
264
if [ "${ENABLEPW}"=="0" ];then
260
-
echo"run with echo in pipe"|${O2_ROOT}/bin/o2-create-aligned-geometry-workflow ${ALIEN_JDL_CCDB_CONDITION_NOT_AFTER:+--condition-not-after ${ALIEN_JDL_CCDB_CONDITION_NOT_AFTER}}--configKeyValues "HBFUtils.startTime=${TIMESTAMP}" --condition-remap=file://${ALICEO2_CCDB_LOCALCACHE}=ITS/Calib/Align -b --run
265
+
echo"run with echo in pipe"|${O2_ROOT}/bin/o2-create-aligned-geometry-workflow --configKeyValues "HBFUtils.startTime=${TIMESTAMP}" --condition-remap=file://${ALICEO2_CCDB_LOCALCACHE}=ITS/Calib/Align -b --run
261
266
else
262
-
echo"run with echo in pipe"|${O2_ROOT}/bin/o2-create-aligned-geometry-workflow ${ALIEN_JDL_CCDB_CONDITION_NOT_AFTER:+--condition-not-after ${ALIEN_JDL_CCDB_CONDITION_NOT_AFTER}}--configKeyValues "HBFUtils.startTime=${TIMESTAMP}" -b --run
267
+
echo"run with echo in pipe"|${O2_ROOT}/bin/o2-create-aligned-geometry-workflow --configKeyValues "HBFUtils.startTime=${TIMESTAMP}" -b --run
0 commit comments