Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Keep short tracks pointing to ETOF #320

Merged
merged 1 commit into from
Mar 9, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion StRoot/StiMaker/StiStEventFiller.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -1230,7 +1230,7 @@ void StiStEventFiller::fillFlags(StTrack* gTrack)
// when EEMC is turned back on after BES-II, eTOF stays or goes?
int evtTime = mEvent->time();
bool doShort2EMC = (evtTime < 1538352000 || evtTime > 1633046400); // t < 2018-10-01 or t > 2021-10-01
bool doShort2ETOF = (evtTime > 1525910400 && evtTime < 1633046400); // 2018-05-10 < t < 2021-10-01
bool doShort2ETOF = (evtTime > 1525910400); // 2018-05-10 < t < (no end)

if ((doShort2EMC || doShort2ETOF) && gTrack->geometry()) {
const StThreeVectorF &momentum = gTrack->geometry()->momentum();
Expand Down