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
Copy file name to clipboardExpand all lines: DATA/common/setenv_calib.sh
+25-23Lines changed: 25 additions & 23 deletions
Original file line number
Diff line number
Diff line change
@@ -42,7 +42,7 @@ if [[ ${DISABLE_TRD_PH:-} == 1 ]]; then CAN_DO_CALIB_TRD_T0=0; fi
42
42
:${CALIB_TPC_SCDCALIB_SLOTLENGTH:=600}# the slot length needs to be known both on the aggregator and the processing nodes, therefore it is defined (in seconds!) here
43
43
:${CALIB_TPC_SCDCALIB_SENDTRKDATA:=1}# by default, we want to write the track information in addition to unbinned residuals to allow finer filtering offline
44
44
45
-
if [[ $BEAMTYPE!="cosmic" ]] || [[ ${FORCECALIBRATIONS:-}== 1 ]] ;then
45
+
if [[ $BEAMTYPE!="cosmic" ]] || [[ ${FORCECALIBRATIONS:-}== 1 ]] ;then# Calibrations enabled in non-COSMIC runs
46
46
47
47
# here we won't deal with calibrations only for async! e.g. EMC_ASYNC_RECALIB; we want that they are always explicitly enabled
48
48
@@ -88,26 +88,6 @@ if [[ $BEAMTYPE != "cosmic" ]] || [[ ${FORCECALIBRATIONS:-} == 1 ]] ; then
88
88
if [[ $CAN_DO_CALIB_TPC_VDRIFTTGL== 1 ]];then
89
89
if [[ -z${CALIB_TPC_VDRIFTTGL+x} ]];then CALIB_TPC_VDRIFTTGL=1;fi
90
90
fi
91
-
# IDCs (by default we enable it for running the synch. reco on the EPNs, but not on staging since we have only 1 calibration node available)
92
-
if [[ $CAN_DO_CALIB_TPC_IDC== 1 ]];then
93
-
if [[ -z${CALIB_TPC_IDC+x} ]];then
94
-
if [[ $EPNSYNCMODE== 1 ]] && [[ "${GEN_TOPO_DEPLOYMENT_TYPE:-}"!="ALICE_STAGING" ]];then
95
-
CALIB_TPC_IDC=1;
96
-
else
97
-
CALIB_TPC_IDC=0;
98
-
fi
99
-
fi
100
-
fi
101
-
# SAC (by default we enable it for running the synch. reco on the EPNs)
102
-
if [[ $CAN_DO_CALIB_TPC_SAC== 1 ]];then
103
-
if [[ -z${CALIB_TPC_SAC+x} ]];then
104
-
if [[ $EPNSYNCMODE== 1 ]];then
105
-
CALIB_TPC_SAC=1;
106
-
else
107
-
CALIB_TPC_SAC=0;
108
-
fi
109
-
fi
110
-
fi
111
91
112
92
# calibrations for TRD
113
93
if [[ $CAN_DO_CALIB_TRD_VDRIFTEXB== 1 ]] ;then
@@ -170,6 +150,28 @@ if [[ $BEAMTYPE != "cosmic" ]] || [[ ${FORCECALIBRATIONS:-} == 1 ]] ; then
170
150
fi
171
151
fi
172
152
153
+
# Calibrations irrespective of COSMIC or non-COSMIC run:
154
+
# IDCs (by default we enable it for running the synch. reco on the EPNs, but not on staging since we have only 1 calibration node available)
155
+
if [[ $CAN_DO_CALIB_TPC_IDC== 1 ]];then
156
+
if [[ -z${CALIB_TPC_IDC+x} ]];then
157
+
if [[ $EPNSYNCMODE== 1 ]] && [[ "${GEN_TOPO_DEPLOYMENT_TYPE:-}"!="ALICE_STAGING" ]];then
158
+
CALIB_TPC_IDC=1;
159
+
else
160
+
CALIB_TPC_IDC=0;
161
+
fi
162
+
fi
163
+
fi
164
+
# SAC (by default we enable it for running the synch. reco on the EPNs)
0 commit comments