Skip to content

Commit 755315f

Browse files
Fixes in apass1 for MayJune 2022 data
- TRD: remove the checks for QC: they are badly configured, and anyway not used; - VDRIFT: restore correct command - REMAPPING: fix syntax
1 parent 724b5d7 commit 755315f

File tree

2 files changed

+6
-35
lines changed

2 files changed

+6
-35
lines changed

DATA/production/configurations/2022/MayJunePilotBeam/apass1/setenv_extra.sh

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ if [[ $remappingITS == 1 ]] || [[ $remappingMFT == 1 ]]; then
3131
if [[ $remappingMFT == 1 ]]; then
3232
REMAPPING=$REMAPPING"MFT/Calib/ClusterDictionary"
3333
fi
34+
RAMAPPING=$REMAPPING\"
3435
fi
3536

3637
echo remapping = $REMAPPING
@@ -68,7 +69,7 @@ export ITS_CONFIG=" --tracking-mode sync_misaligned"
6869
export CONFIG_EXTRA_PROCESS_o2_its_reco_workflow="ITSVertexerParam.phiCut=0.5;ITSVertexerParam.clusterContributorsCut=3;ITSVertexerParam.tanLambdaCut=0.2"
6970

7071
# ad-hoc options for GPU reco workflow
71-
export CONFIG_EXTRA_PROCESS_o2_gpu_reco_workflow="$VDRIFT;GPU_global.dEdxDisableResidualGainMap=1"
72+
export CONFIG_EXTRA_PROCESS_o2_gpu_reco_workflow="TPCGasParam.DriftV=$VDRIFT;GPU_global.dEdxDisableResidualGainMap=1"
7273

7374
# ad-hoc settings for TOF reco
7475
# export ARGS_EXTRA_PROCESS_o2_tof_reco_workflow="--use-ccdb --ccdb-url-tof \"http://alice-ccdb.cern.ch\""
@@ -81,19 +82,19 @@ export ARGS_EXTRA_PROCESS_o2_tof_reco_workflow="--use-ccdb"
8182
export PVERTEXER="pvertexer.acceptableScale2=9;pvertexer.minScale2=2.;pvertexer.nSigmaTimeTrack=4.;pvertexer.timeMarginTrackTime=0.5;pvertexer.timeMarginVertexTime=7.;pvertexer.nSigmaTimeCut=10;pvertexer.dbscanMaxDist2=36;pvertexer.dcaTolerance=3.;pvertexer.pullIniCut=100;pvertexer.addZSigma2=0.1;pvertexer.tukey=20.;pvertexer.addZSigma2Debris=0.01;pvertexer.addTimeSigma2Debris=1.;pvertexer.maxChi2Mean=30;pvertexer.timeMarginReattach=3.;pvertexer.addTimeSigma2Debris=1.;pvertexer.dbscanDeltaT=24;pvertexer.maxChi2TZDebris=100;pvertexer.maxMultRatDebris=1.;pvertexer.dbscanAdaptCoef=20.;"
8283
export SVTX="svertexer.checkV0Hypothesis=false;svertexer.checkCascadeHypothesis=false"
8384

84-
export CONFIG_EXTRA_PROCESS_o2_primary_vertexing_workflow="$VDRIFT;$PVERTEXER;$MFT_STROBELGT"
85+
export CONFIG_EXTRA_PROCESS_o2_primary_vertexing_workflow="TPCGasParam.DriftV=$VDRIFT;$PVERTEXER;$MFT_STROBELGT"
8586
export CONFIG_EXTRA_PROCESS_o2_secondary_vertexing_workflow="$SVTX"
8687

8788
# ad-hoc settings for its-tpc matching
8889
export ITSTPCMATCH="tpcitsMatch.maxVDriftUncertainty=0.2;tpcitsMatch.safeMarginTimeCorrErr=10.;tpcitsMatch.cutMatchingChi2=1000;tpcitsMatch.crudeAbsDiffCut[0]=5;tpcitsMatch.crudeAbsDiffCut[1]=5;tpcitsMatch.crudeAbsDiffCut[2]=0.3;tpcitsMatch.crudeAbsDiffCut[3]=0.3;tpcitsMatch.crudeAbsDiffCut[4]=10;tpcitsMatch.crudeNSigma2Cut[0]=200;tpcitsMatch.crudeNSigma2Cut[1]=200;tpcitsMatch.crudeNSigma2Cut[2]=200;tpcitsMatch.crudeNSigma2Cut[3]=200;tpcitsMatch.crudeNSigma2Cut[4]=900;"
89-
export CONFIG_EXTRA_PROCESS_o2_tpcits_match_workflow="$VDRIFT;$ITSEXTRAERR;$ITSTPCMATCH"
90+
export CONFIG_EXTRA_PROCESS_o2_tpcits_match_workflow="TPCGasParam.DriftV=$VDRIFT;$ITSEXTRAERR;$ITSTPCMATCH"
9091

9192
# ad-hoc settings for TOF matching
9293
export ARGS_EXTRA_PROCESS_o2_tof_matcher_workflow="--output-type matching-info,calib-info --enable-dia"
93-
export CONFIG_EXTRA_PROCESS_o2_tof_matcher_workflow="$VDRIFT;$ITSEXTRAERR"
94+
export CONFIG_EXTRA_PROCESS_o2_tof_matcher_workflow="TPCGasParam.DriftV=$VDRIFT;$ITSEXTRAERR"
9495

9596
# ad-hoc settings for TRD matching
96-
export CONFIG_EXTRA_PROCESS_o2_trd_global_tracking="$VDRIFT;$ITSEXTRAERR"
97+
export CONFIG_EXTRA_PROCESS_o2_trd_global_tracking="TPCGasParam.DriftV=$VDRIFT;$ITSEXTRAERR"
9798

9899
# ad-hoc settings for FT0
99100
export ARGS_EXTRA_PROCESS_o2_ft0_reco_workflow="--ft0-reconstructor"

DATA/production/qc-async/trd.json

Lines changed: 0 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -80,36 +80,6 @@
8080
"pulseheightpeakupper": "5.0"
8181
}
8282
}
83-
},
84-
"checks": {
85-
"QcCheck": {
86-
"active": "false",
87-
"className": "o2::quality_control_modules::trd::RawDataCheck",
88-
"moduleName": "QcTRD",
89-
"policy": "OnAny",
90-
"detectorName": "TRD",
91-
"dataSource": [
92-
{
93-
"type": "Task",
94-
"name": "RawDataTask",
95-
"MOs": ["trackletsperevent"]
96-
}
97-
]
98-
},
99-
"PulseHeightCheck": {
100-
"active": "false",
101-
"className": "o2::quality_control_modules::trd::PulseHeightCheck",
102-
"moduleName": "QcTRD",
103-
"policy": "OnAny",
104-
"detectorName": "TRD",
105-
"dataSource": [
106-
{
107-
"type": "Task",
108-
"name": "PulseHeightTask",
109-
"MOs": ["trackletsperevent"]
110-
}
111-
]
112-
}
11383
}
11484
},
11585
"dataSamplingPolicies": [

0 commit comments

Comments
 (0)