Skip to content

Commit 245d09b

Browse files
Fix event time error calculation for TOF
1 parent 3a4878b commit 245d09b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

PWGLF/TableProducer/Strangeness/strangenesstofpid.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2088,7 +2088,7 @@ struct strangenesstofpid {
20882088

20892089
nTof.tofExpMom = nTofExt.tofExpMom();
20902090
nTof.tofEvTime = reassociateTracks.value ? collision.eventTime() : nTofExt.tofEvTime();
2091-
nTof.tofEvTimeErr = reassociateTracks.value ? collision.eventTime() : nTofExt.tofEvTimeErr();
2091+
nTof.tofEvTimeErr = reassociateTracks.value ? collision.eventTimeErr() : nTofExt.tofEvTimeErr();
20922092
// nTof.tofEvTimeErr = nTofExt.tofEvTimeErr();
20932093
nTof.tofSignal = nTofExt.tofSignal() + (doBCshift.value ? deltaTimeBc : 0.0f);
20942094
nTof.length = nTofExt.length();

0 commit comments

Comments
 (0)