From 0c011ad32e6cfb02e887fb0f56368f289392708c Mon Sep 17 00:00:00 2001 From: "se.gorbunov" <se.gorbunov@gsi.de> Date: Wed, 8 Sep 2021 15:51:25 +0000 Subject: [PATCH] L1: bugfix in station time-measurement flag --- reco/L1/L1Algo/L1Algo.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reco/L1/L1Algo/L1Algo.cxx b/reco/L1/L1Algo/L1Algo.cxx index 6595844999..92259b4be1 100644 --- a/reco/L1/L1Algo/L1Algo.cxx +++ b/reco/L1/L1Algo/L1Algo.cxx @@ -118,7 +118,7 @@ void L1Algo::Init(const L1Vector<fscal>& geo, const bool UseHitErrors, const boo L1Station& st = vStations[i]; st.type = geo[ind++]; st.timeInfo = 1; - if (st.type == 0) st.timeInfo = 0; + if (st.type == 1) st.timeInfo = 0; st.z = geo[ind++]; st.materialInfo.thick = geo[ind++]; st.Rmin = geo[ind++]; -- GitLab