File tree Expand file tree Collapse file tree 2 files changed +1
-6
lines changed
FIT/FT0/reconstruction/include/FT0Reconstruction Expand file tree Collapse file tree 2 files changed +1
-6
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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) {
You can’t perform that action at this time.
0 commit comments