Skip to content

Commit

Permalink
Set innerparam to the rigidity
Browse files Browse the repository at this point in the history
  • Loading branch information
mpuccio authored and shahor02 committed Jan 13, 2024
1 parent c536d10 commit 2ee3c8c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Detectors/AOD/src/AODProducerWorkflowSpec.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -2487,7 +2487,7 @@ AODProducerWorkflowDPL::TrackExtraInfo AODProducerWorkflowDPL::processBarrelTrac
if (contributorsGID[GIndex::Source::TPC].isIndexSet()) {
const auto& tpcOrig = data.getTPCTrack(contributorsGID[GIndex::TPC]);
const auto& tpcClData = mTPCCounters[contributorsGID[GIndex::TPC]];
extraInfoHolder.tpcInnerParam = tpcOrig.getP();
extraInfoHolder.tpcInnerParam = tpcOrig.getP() / tpcOrig.getAbsCharge();
extraInfoHolder.tpcChi2NCl = tpcOrig.getNClusters() ? tpcOrig.getChi2() / tpcOrig.getNClusters() : 0;
extraInfoHolder.tpcSignal = tpcOrig.getdEdx().dEdxTotTPC;
extraInfoHolder.tpcNClsFindable = tpcOrig.getNClusters();
Expand Down

0 comments on commit 2ee3c8c

Please sign in to comment.