@@ -82,7 +82,8 @@ DECLARE_SOA_COLUMN(DotProdTrackJetOverJet, trackdotjetoverjet, float); //! The d
8282DECLARE_SOA_COLUMN (DeltaRJetTrack, rjettrack, float ); // ! The DR jet-track
8383DECLARE_SOA_COLUMN (SignedIP2D, ip2d, float ); // ! The track signed 2D IP
8484DECLARE_SOA_COLUMN (SignedIP2DSign, ip2dsigma, float ); // ! The track signed 2D IP significance
85- DECLARE_SOA_COLUMN (SignedIP3D, ip3d, float ); // ! The track signed 3D IP
85+ DECLARE_SOA_COLUMN (SignedIPz, ipz, float ); // ! The track signed z IP
86+ DECLARE_SOA_COLUMN (SignedIPzSign, ipzsigma, float ); // ! The track signed z IP significance
8687DECLARE_SOA_COLUMN (SignedIP3DSign, ip3dsigma, float ); // ! The track signed 3D IP significance
8788DECLARE_SOA_COLUMN (MomFraction, momfraction, float ); // ! The track momentum fraction of the jets
8889DECLARE_SOA_COLUMN (DeltaRTrackVertex, rtrackvertex, float ); // ! DR between the track and the closest SV, to be decided whether to add to or not
@@ -108,7 +109,8 @@ DECLARE_SOA_TABLE(bjetTracksParams, "AOD", "BJETTRACKSPARAM",
108109 trackInfo::DeltaRJetTrack,
109110 trackInfo::SignedIP2D,
110111 trackInfo::SignedIP2DSign,
111- trackInfo::SignedIP3D,
112+ trackInfo::SignedIPz,
113+ trackInfo::SignedIPzSign,
112114 trackInfo::SignedIP3DSign,
113115 trackInfo::MomFraction,
114116 trackInfo::DeltaRTrackVertex);
@@ -460,7 +462,7 @@ struct BJetTreeCreator {
460462 }
461463
462464 if (produceTree) {
463- bjetTracksParamsTable (bjetParamsTable.lastIndex () + 1 , constituent.pt (), constituent.eta (), dotProduct, dotProduct / analysisJet.p (), deltaRJetTrack, std::abs (constituent.dcaXY ()) * sign, constituent.sigmadcaXY (), std::abs (constituent.dcaXYZ ()) * sign, constituent.sigmadcaXYZ (), constituent.p () / analysisJet.p (), RClosestSV);
465+ bjetTracksParamsTable (bjetParamsTable.lastIndex () + 1 , constituent.pt (), constituent.eta (), dotProduct, dotProduct / analysisJet.p (), deltaRJetTrack, std::abs (constituent.dcaXY ()) * sign, constituent.sigmadcaXY (), std::abs (constituent.dcaZ ()) * sign, constituent. sigmadcaZ () , constituent.sigmadcaXYZ (), constituent.p () / analysisJet.p (), RClosestSV);
464466 }
465467 trackIndices.push_back (bjetTracksParamsTable.lastIndex ());
466468 }
@@ -531,7 +533,7 @@ struct BJetTreeCreator {
531533 }
532534
533535 if (produceTree) {
534- bjetTracksParamsTable (bjetParamsTable.lastIndex () + 1 , constituent.pt (), constituent.eta (), dotProduct, dotProduct / analysisJet.p (), deltaRJetTrack, std::abs (constituent.dcaXY ()) * sign, constituent.sigmadcaXY (), std::abs (constituent.dcaXYZ ()) * sign, constituent.sigmadcaXYZ (), constituent.p () / analysisJet.p (), 0 .);
536+ bjetTracksParamsTable (bjetParamsTable.lastIndex () + 1 , constituent.pt (), constituent.eta (), dotProduct, dotProduct / analysisJet.p (), deltaRJetTrack, std::abs (constituent.dcaXY ()) * sign, constituent.sigmadcaXY (), std::abs (constituent.dcaZ ()) * sign, constituent. sigmadcaZ () , constituent.sigmadcaXYZ (), constituent.p () / analysisJet.p (), 0 .);
535537 }
536538 trackIndices.push_back (bjetTracksParamsTable.lastIndex ());
537539 }
0 commit comments