25namespace strangeness_tracking
39 LOGP(fatal,
"Mismatch between input SVertices indices and kinematics (not requested?): V0: {}/{} Cascades: {}/{} Decay3Bodys: {}/{}",
47 auto pattIt = clusPatt.begin();
48 auto pattIt2 = clusPatt.begin();
74 int nv = vtxRefs.size();
75 for (
int iv = 0; iv < nv; iv++) {
76 const auto& vtref = vtxRefs[iv];
77 int it = vtref.getFirstEntry(), itLim = it + vtref.getEntries();
78 for (; it < itLim; it++) {
79 auto tvid = trackIndex[it];
104 LOG(
debug) <<
"VtxRefs size: " << vtxRefs.size();
122 std::sort(
mSortedITSindexes.begin(),
mSortedITSindexes.end(), [&](
int i,
int j) { return mUtils.getBinIndex(mInputITStracks[i].getEta(), mInputITStracks[i].getPhi()) < mUtils.getBinIndex(mInputITStracks[j].getEta(), mInputITStracks[j].getPhi()); });
138 daughterTracks.resize(2);
152 if (!
recreateV0(posTrack, negTrack, correctedV0, iThread)) {
157 auto v0R = std::sqrt(
v0.calcR2());
159 for (
int& iBinV0 : iBinsV0) {
173 LOG(
debug) <<
"Mother propagation to decay vertex failed";
176 decayVtxTrackClone.getPxPyPzGlo(strangeTrack.
mDecayMom);
177 std::array<float, 3> momPos, momNeg;
188 LOG(
debug) <<
"ITS Track matched with a V0 decay topology ....";
189 LOG(
debug) <<
"Number of ITS track clusters attached: " << itsTrack.getNumberOfClusters();
207 daughterTracks.resize(3);
212 auto cascR = std::sqrt(casc.
calcR2());
214 for (
int& iBinCasc : iBinsCasc) {
222 LOG(
debug) <<
"----------------------";
232 LOG(
debug) <<
"Mother propagation to decay vertex failed";
235 decayVtxTrackClone.getPxPyPzGlo(strangeTrack.
mDecayMom);
236 std::array<float, 3> momV0, momBach;
238 mFitter3Body[iThread].getTrack(1).getPxPyPzGlo(momBach);
242 LOG(
debug) <<
"ITS Track matched with a Cascade decay topology ....";
243 LOG(
debug) <<
"Number of ITS track clusters attached: " << itsTrack.getNumberOfClusters();
263 daughterTracks.resize(3);
267 auto dec3bodyR = std::sqrt(dec3body.
calcR2());
269 for (
int& iBin3Body : iBins3Body) {
281 if (
matchDecayToITStrack(dec3bodyR, strangeTrack, structClus, itsTrack, daughterTracks, iThread)) {
285 LOG(
debug) <<
"Mother propagation to decay vertex failed";
288 decayVtxTrackClone.getPxPyPzGlo(strangeTrack.
mDecayMom);
289 std::array<float, 3> momPos, momNeg, momBach;
295 if (daughterTracks[
kBach].getCharge() > 0) {
301 LOG(
debug) <<
"ITS Track matched with a dec3body decay topology ....";
302 LOG(
debug) <<
"Number of ITS track clusters attached: " << itsTrack.getNumberOfClusters();
347 auto& lastClus = trackClusters[0];
352 std::vector<ITSCluster> motherClusters;
353 std::array<unsigned int, 7> nAttachments;
354 nAttachments.fill(-1);
357 bool isMotherUpdated =
false;
359 for (
int iClus{0}; iClus < trackClusters.size(); iClus++) {
360 auto& clus = trackClusters[iClus];
361 auto& compClus = trackClusSizes[iClus];
362 int nUpdOld = nUpdates;
363 double clusRad = sqrt(clus.getX() * clus.getX() - clus.getY() * clus.getY());
364 auto diffR = decayR - clusRad;
365 auto relDiffR = diffR / decayR;
366 auto lay = geom->getLayer(clus.getSensorID());
368 LOG(
debug) <<
"decayR: " << decayR <<
", diffR: " << diffR <<
", clus rad: " << clusRad <<
", radTol: " << radTol;
369 if (relDiffR > -radTol) {
370 LOG(
debug) <<
"Try to attach cluster to Mother, layer: " << lay;
372 motherClusters.push_back(clus);
374 nAttachments[lay] = 0;
375 isMotherUpdated =
true;
377 LOG(
debug) <<
"Cluster attached to Mother";
383 if (relDiffR < radTol && !isMotherUpdated) {
384 bool isDauUpdated =
false;
385 LOG(
debug) <<
"Try to attach cluster to Daughters, layer: " << lay;
386 for (
int iDau{0}; iDau < daughterTracks.size(); iDau++) {
387 auto& dauTrack = daughterTracks[iDau];
389 nAttachments[lay] = iDau + 1;
399 if (nUpdates == nUpdOld) {
404 if (nUpdates < trackClusters.size() || motherClusters.size() < nMinClusMother) {
409 motherTrackClone.resetCovariance();
411 LOG(
debug) <<
"Clusters attached, starting inward-outward refit";
413 std::reverse(motherClusters.begin(), motherClusters.end());
416 for (
auto& clus : motherClusters) {
423 LOG(
debug) <<
"Inward-outward refit finished, starting final topology refit";
433 LOG(
debug) <<
"Cascade V0 refit failed";
437 nCand =
mFitter3Body[iThread].process(cascV0Upd, daughterTracks[
kBach], motherTrackClone);
438 }
catch (std::runtime_error& e) {
439 LOG(
debug) <<
"Fitter3Body failed: " << e.what();
442 if (!nCand || !
mFitter3Body[iThread].propagateTracksToVertex()) {
443 LOG(
debug) <<
"Fitter3Body failed: propagation to vertex failed";
452 }
catch (std::runtime_error& e) {
453 LOG(
debug) <<
"Fitter3Body failed: " << e.what();
456 if (!nCand || !
mFitter3Body[iThread].propagateTracksToVertex()) {
457 LOG(
debug) <<
"Fitter3Body failed: propagation to vertex failed";
466 }
catch (std::runtime_error& e) {
467 LOG(
debug) <<
"Fitter4Body failed: " << e.what();
470 if (!nCand || !
mFitter4Body[iThread].propagateTracksToVertex()) {
471 LOG(
debug) <<
"Fitter4Body failed: propagation to vertex failed";
483 structClus.
arr = nAttachments;
495 if (!track.rotate(
alpha)) {
503 if (
mCorrType == o2::base::PropagatorF::MatCorrType::USEMatCorrNONE) {
504 float thick =
layer < 3 ? 0.005 : 0.01;
505 constexpr float radl = 9.36f;
506 constexpr float rho = 2.33f;
507 if (!track.correctForMaterial(thick, thick * rho * radl)) {
511 auto chi2 = std::abs(track.getPredictedChi2Quiet(clus));
517 if (!track.update(clus)) {
std::int16_t getSensorID() const
GPUd() value_type estimateLTFast(o2 static GPUd() float estimateLTIncrement(const o2 PropagatorImpl * Instance(bool uninitialized=false)
static const GlobalParams & Instance()
TO BE DONE: extend to generic N body vertex.
const Track & getProng(int i) const
GIndex getProngID(int i) const
static GeometryTGeo * Instance()
const MCLabContCl * mITSClsLabels
std::vector< std::vector< o2::track::TrackParCovF > > mDaughterTracks
o2::MCCompLabel getStrangeTrackLabel(const TrackITS &itsTrack, const StrangeTrack &strangeTrack, const ClusAttachments &structClus)
double calcV0alpha(const V0 &v0)
const StrangenessTrackingParamConfig * mStrParams
double calcMotherMass(const std::array< float, 3 > &pDauFirst, const std::array< float, 3 > &pDauSecond, PID pidDauFirst, PID pidDauSecond)
gsl::span< const TrackITS > mInputITStracks
global topology matching chi2
std::vector< std::vector< StrangeTrack > > mStrangeTrackVec
std::vector< int > mTracksIdxTable
void processV0(int iv0, const V0 &v0, const V0Index &v0Idx, int iThread=0)
void processCascade(int icasc, const Cascade &casc, const CascadeIndex &cascIdx, const V0 &cascV0, int iThread=0)
std::vector< ITSCluster > getTrackClusters(const TrackITS &itsTrack)
std::vector< DCAFitter4 > mFitter4Body
o2::base::PropagatorImpl< float >::MatCorrType mCorrType
std::vector< int > getTrackClusterSizes(const TrackITS &itsTrack)
void getClusterSizesITS(std::vector< int > &clusSizeVec, const gsl::span< const o2::itsmft::CompClusterExt > ITSclus, gsl::span< const unsigned char >::iterator &pattIt, const o2::itsmft::TopologyDictionary *mdict)
std::vector< std::vector< o2::MCCompLabel > > mStrangeTrackLabels
std::vector< ITSCluster > mInputITSclusters
bool matchDecayToITStrack(float decayR, StrangeTrack &strangeTrack, ClusAttachments &structClus, const TrackITS &itsTrack, std::vector< o2::track::TrackParCovF > &daughterTracks, int iThread=0)
std::vector< o2::its::TrackITS > mSortedITStracks
input ITS Track MC labels
gsl::span< const Decay3Body > mInput3BodyTracks
bool recreateV0(const o2::track::TrackParCov &posTrack, const o2::track::TrackParCov &negTrack, V0 &newV0, int iThread=0)
std::vector< std::vector< ClusAttachments > > mClusAttachments
std::vector< DCAFitter3 > mFitter3Body
std::vector< VBracket > mITSvtxBrackets
std::vector< int > mSortedITSindexes
double calcMotherMass3body(const std::array< float, 3 > &pDauFirst, const std::array< float, 3 > &pDauSecond, const std::array< float, 3 > &pDauThird, PID pidDauFirst, PID pidDauSecond, PID pidDauThird)
float mGlobalChi2
number of threads (externally driven)
gsl::span< const V0Index > mInputV0Indices
bool updateTrack(const ITSCluster &clus, o2::track::TrackParCov &track)
void process3Body(int i3body, const Decay3Body &dec3body, const Decay3BodyIndex &dec3bodyIdx, int iThread=0)
gsl::span< const Decay3BodyIndex > mInput3BodyIndices
gsl::span< const int > mInputITSidxs
gsl::span< const V0 > mInputV0tracks
const o2::itsmft::TopologyDictionary * mITSDict
gsl::span< const CascadeIndex > mInputCascadeIndices
ClusAttachments mStructClus
bool loadData(const o2::globaltracking::RecoContainer &recoData)
gsl::span< const Cascade > mInputCascadeTracks
MCLabSpan mITSTrkLabels
input ITS Cluster MC labels
std::vector< int > mInputClusterSizes
static constexpr ID Lambda
static constexpr ID Helium3
static constexpr ID Deuteron
static constexpr ID Proton
static constexpr ID Alpha
GLfloat GLfloat GLfloat alpha
GLboolean GLboolean GLboolean b
GLenum GLuint GLint GLint layer
GLboolean GLboolean GLboolean GLboolean a
void convertCompactClusters(gsl::span< const itsmft::CompClusterExt > clusters, gsl::span< const unsigned char >::iterator &pattIt, std::vector< o2::BaseCluster< float > > &output, const its3::TopologyDictionary *dict)
convert compact clusters to 3D spacepoints
void convertCompactClusters(gsl::span< const itsmft::CompClusterExt > clusters, gsl::span< const unsigned char >::iterator &pattIt, std::vector< o2::BaseCluster< float > > &output, const itsmft::TopologyDictionary *dict)
convert compact clusters to 3D spacepoints
TrackParametrizationWithError< float > TrackParCovF
a couple of static helper functions to create timestamp values for CCDB queries or override obsolete ...
auto getITSTracks() const
bool isTrackSourceLoaded(int src) const
auto getDecays3BodyIdx() const
auto getITSTracksClusterRefs() const
auto getPrimaryVertexMatchedTracks() const
auto getCascadesIdx() const
auto getPrimaryVertexMatchedTrackRefs() const
auto getITSClustersPatterns() const
std::unique_ptr< const o2::dataformats::MCTruthContainer< o2::MCCompLabel > > mcITSClusters
auto getITSTracksMCLabels() const
auto getITSClusters() const
auto getDecays3Body() const
std::array< unsigned int, 7 > arr
int getBinIndex(float eta, float phi)
std::vector< int > getBinRect(float eta, float phi, float deltaEta, float deltaPhi)
LOG(info)<< "Compressed in "<< sw.CpuTime()<< " s"