Skip to content
Snippets Groups Projects
Commit c1eeb83c authored by Sergey Gorbunov's avatar Sergey Gorbunov Committed by Florian Uhlig
Browse files

correct the size of the strip arrays

parent 6ac5b037
No related branches found
No related tags found
1 merge request!325Bug fix: size of the strip vectors, debug info for L1Vector
...@@ -199,8 +199,8 @@ void L1Algo::SetData(const vector<L1StsHit>& StsHits_, int nStsStrips_, const ve ...@@ -199,8 +199,8 @@ void L1Algo::SetData(const vector<L1StsHit>& StsHits_, int nStsStrips_, const ve
hitToBestTrackF.resize(NhitsGlobal * 2); hitToBestTrackF.resize(NhitsGlobal * 2);
hitToBestTrackB.resize(NhitsGlobal * 2); hitToBestTrackB.resize(NhitsGlobal * 2);
#endif #endif
vStripToTrack.resize(NhitsGlobal * 2); vStripToTrack.resize(NStsStrips);
vStripToTrackB.resize(NhitsGlobal * 2); vStripToTrackB.resize(NStsStrips);
TripForHit[0].resize(nHits); TripForHit[0].resize(nHits);
TripForHit[1].resize(nHits); TripForHit[1].resize(nHits);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment