Skip to content

Commit

Permalink
Fix max track size in vertex SoA (#499)
Browse files Browse the repository at this point in the history
Make the size consistent with the buffer in track SoA.
  • Loading branch information
VinInn authored and fwyzard committed Oct 20, 2020
1 parent f479758 commit c459fea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CUDADataFormats/Vertex/interface/ZVertexSoA.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
// These vertices are clusterized and fitted only along the beam line (z)
// to obtain their global coordinate the beam spot position shall be added (eventually correcting for the beam angle as well)
struct ZVertexSoA {
static constexpr uint32_t MAXTRACKS = 16 * 1024;
static constexpr uint32_t MAXTRACKS = 32 * 1024;
static constexpr uint32_t MAXVTX = 1024;

int16_t idv[MAXTRACKS]; // vertex index for each associated (original) track (-1 == not associate)
Expand Down

0 comments on commit c459fea

Please sign in to comment.