Skip to content

Commit

Permalink
Association between Reco Cluster and Track (#52)
Browse files Browse the repository at this point in the history
Co-authored-by: Dmitry Kalinkin <[email protected]>
  • Loading branch information
jdbrice and veprbl authored Oct 16, 2024
1 parent 7a62748 commit 33e68e6
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ cmake_minimum_required(VERSION 3.12)
project(EDM4EIC
LANGUAGES CXX)

SET( ${PROJECT_NAME}_VERSION_MAJOR 7 )
SET( ${PROJECT_NAME}_VERSION_MAJOR 8 )
SET( ${PROJECT_NAME}_VERSION_MINOR 0 )
SET( ${PROJECT_NAME}_VERSION_PATCH 0 )
SET( ${PROJECT_NAME}_VERSION "${${PROJECT_NAME}_VERSION_MAJOR}.${${PROJECT_NAME}_VERSION_MINOR}.${${PROJECT_NAME}_VERSION_PATCH}" )
Expand Down
11 changes: 10 additions & 1 deletion edm4eic.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
## If there are schema version changes that can be evolved, see the podio documentation
## for an example: https://github.com/hegner/podio/blob/master/tests/schema_evolution.yaml
##
schema_version: 700
schema_version: 800

options :
# should getters / setters be prefixed with get / set?
Expand Down Expand Up @@ -560,3 +560,12 @@ datatypes:
OneToOneRelations:
- edm4hep::RawCalorimeterHit rawHit // reference to the digitized calorimeter hit
- edm4hep::SimCalorimeterHit simHit // reference to the simulated calorimeter hit

edm4eic::TrackClusterMatch:
Description: "Match between a Cluster and a Track"
Author: "D. Anderson, D. Brandenburg, D. Kalinkin, S. Joosten"
Members:
- float weight // weight of this association
OneToOneRelations:
- edm4eic::Cluster cluster // reference to the cluster
- edm4eic::Track track // reference to the track

0 comments on commit 33e68e6

Please sign in to comment.