Skip to content

Commit 99b7941

Browse files
committed
suppress timeNS extraction, will be done using IR methods
1 parent df9672a commit 99b7941

File tree

2 files changed

+1
-6
lines changed

2 files changed

+1
-6
lines changed

Detectors/FIT/FT0/reconstruction/include/FT0Reconstruction/InteractionTag.h

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,6 @@ struct InteractionTag : public o2::conf::ConfigurableParamHelper<InteractionTag>
3232
return rp.isValidTime(RecPoints::TimeMean) && (rp.getTrigger().amplA + rp.getTrigger().amplC) > minAmplitudeAC;
3333
}
3434

35-
float getInteractionTimeNS(const RecPoints& rp, const o2::InteractionRecord& refIR) const
36-
{
37-
return rp.getInteractionRecord().differenceInBCNS(refIR); // RS FIXME do we want use precise MeanTime?
38-
}
39-
4035
O2ParamDef(InteractionTag, "ft0tag");
4136
};
4237

Detectors/GlobalTracking/src/MatchTPCITS.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1573,7 +1573,7 @@ int MatchTPCITS::prepareInteractionTimes()
15731573
if (!mFT0Params->isSelected(ft)) {
15741574
continue;
15751575
}
1576-
auto fitTime = time2TPCTimeBin(mFT0Params->getInteractionTimeNS(ft, mStartIR) * 1e-3); // FIT time in TPC timebins
1576+
auto fitTime = time2TPCTimeBin(ft.getInteractionRecord().differenceInBCNS(mStartIR) * 1e-3); // FIT time in TPC timebins
15771577
// find corresponding ITS ROF, works both in cont. and trigg. modes (ignore T0 MeanTime within the BC)
15781578
for (; rof < nITSROFs; rof++) {
15791579
if (mITSROFTimes[rof] < fitTime) {

0 commit comments

Comments
 (0)