Skip to content

Commit 2ec4bde

Browse files
committed
fix magic number
1 parent e827389 commit 2ec4bde

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

PWGJE/TableProducer/secondaryVertexReconstruction.cxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,8 +101,8 @@ struct SecondaryVertexReconstruction {
101101
int runNumber{0};
102102
float toMicrometers = 10000.; // from cm to µm
103103
double bz{0.};
104-
constexpr int TwoProngCount = 2;
105-
constexpr int ThreeProngCount = 3;
104+
static constexpr int TwoProngCount = 2;
105+
static constexpr int ThreeProngCount = 3;
106106

107107
void init(InitContext const&)
108108
{

0 commit comments

Comments
 (0)