@@ -214,7 +214,6 @@ struct HfTaskFlow {
214214 Configurable<bool > isApplySameTrackCut{" isApplySameTrackCut" , false , " apply track1 == track2 cut" };
215215 Configurable<float > maxChi2ItsClusters{" maxChi2ItsClusters" , 36 .f , " max chi2 per ITS clusters" };
216216 Configurable<float > maxChi2TpcClusters{" maxChi2TpcClusters" , 2 .5f , " max chi2 per TPC clusters" };
217- Configurable<int > maxSigmaDCAxy{" maxSigmaDCAxy" , 7 , " maximum sigma deviations from expected DCA" };
218217 Configurable<float > maxMergingRadius{" maxMergingRadius" , 2.5 , " max radius for merging cut" };
219218 Configurable<float > mergingCut{" mergingCut" , 0.02 , " merging cut on track merge" };
220219 Configurable<float > minItsClusters{" minItsClusters" , 5 .0f , " cut for minimum ITS clusters" };
@@ -253,6 +252,8 @@ struct HfTaskFlow {
253252 Configurable<bool > useMftPtCut{" useMftPtCut" , false , " if true, use the Mft pt function cut" };
254253 } configMft;
255254
255+ TF1* fPtDepDCAxy = nullptr ;
256+
256257 HfHelper hfHelper;
257258 SliceCache cache;
258259 Service<o2::framework::O2DatabasePDG> pdg;
@@ -321,12 +322,6 @@ struct HfTaskFlow {
321322 Preslice<FilteredMftTracks> perColMftTracks = o2::aod::fwdtrack::collisionId;
322323 Preslice<FilteredTracksWDcaSel> perColTracks = aod::track::collisionId;
323324
324- // =========================
325- // Preslice : MC
326- // =========================
327-
328- // Preslice<MftTracksMcLabels> mftTracksPerCollision = aod::fwdtrack::collisionId;
329-
330325 // configurables for containers
331326 // TODO: flow of HF will need to be done vs. invariant mass, in the signal and side-band regions
332327 // either 1) add invariant mass axis or 2) define several containers for different inv. mass regions
@@ -437,6 +432,8 @@ struct HfTaskFlow {
437432 LOGF (info, " Offset for FV0-left: x = %.3f y = %.3f z = %.3f\n " , (*offsetFV0)[0 ].getX (), (*offsetFV0)[0 ].getY (), (*offsetFV0)[0 ].getZ ());
438433 LOGF (info, " Offset for FV0-right: x = %.3f y = %.3f z = %.3f\n " , (*offsetFV0)[1 ].getX (), (*offsetFV0)[1 ].getY (), (*offsetFV0)[1 ].getZ ());
439434
435+ fv0Det = o2::fv0::Geometry::instance (o2::fv0::Geometry::eUninitialized);
436+
440437 // =========================
441438 // Event histograms
442439 // =========================
@@ -479,8 +476,6 @@ struct HfTaskFlow {
479476 {configAxis.axisVertexEfficiency , " z-vtx (cm)" }};
480477 std::vector<AxisSpec> const userAxis = {{configAxis.axisMass , " m_{inv} (GeV/c^{2})" }};
481478
482- fv0Det = o2::fv0::Geometry::instance (o2::fv0::Geometry::eUninitialized);
483-
484479 // =========================
485480 // Initialization of histograms and CorrelationContainers for TpcTpc cases
486481 // =========================
0 commit comments