From 246fe86b54e3b8d4fae5f01c27ecfba69b55153a Mon Sep 17 00:00:00 2001
From: Wouter Deconinck <wdconinc@gmail.com>
Date: Sun, 27 Mar 2022 23:53:34 +0000
Subject: [PATCH] eic_data.yaml: simID as uint32_t for compatibility with id()

---
 eic_data.yaml | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/eic_data.yaml b/eic_data.yaml
index 4dabf35..d493279 100644
--- a/eic_data.yaml
+++ b/eic_data.yaml
@@ -529,7 +529,7 @@ datatypes:
     Description: "Used to keep track of the correspondence between MC and reconstructed particles"
     Author: "S. Joosten"
     Members:
-      - int32_t           simID             // Index of corresponding MCParticle (position in MCParticles array) 
+      - uint32_t          simID             // Index of corresponding MCParticle (position in MCParticles array) 
       - float             weight            // weight of this association
     OneToOneRelations :
       - eicd::ReconstructedParticle  rec    // reference to the reconstructed particle
@@ -540,7 +540,7 @@ datatypes:
     Description: "Association between a Cluster and a MCParticle"
     Author : "S. Joosten"
     Members:
-      - int32_t           simID             // Index of corresponding MCParticle (position in MCParticles array) 
+      - uint32_t          simID             // Index of corresponding MCParticle (position in MCParticles array) 
       - float             weight            // weight of this association
     OneToOneRelations:
       - eicd::Cluster     rec               // reference to the cluster
@@ -550,7 +550,7 @@ datatypes:
     Description: "Association between a Track and a MCParticle"
     Author : "S. Joosten"
     Members:
-      - int32_t           simID             // Index of corresponding MCParticle (position in MCParticles array) 
+      - uint32_t          simID             // Index of corresponding MCParticle (position in MCParticles array) 
       - float             weight            // weight of this association
     OneToOneRelations:
       - eicd::Track       rec               // reference to the track
@@ -561,7 +561,7 @@ datatypes:
     Description: "Association between a Vertex and a MCParticle"
     Author : "S. Joosten"
     Members:
-      - int32_t           simID             // Index of corresponding MCParticle (position in MCParticles array) 
+      - uint32_t          simID             // Index of corresponding MCParticle (position in MCParticles array) 
       - float             weight            // weight of this association
     OneToOneRelations:
       - eicd::Vertex       rec               // reference to the vertex
-- 
GitLab