Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ project(EDM4EIC
LANGUAGES CXX)

SET( ${PROJECT_NAME}_VERSION_MAJOR 8 )
SET( ${PROJECT_NAME}_VERSION_MINOR 3 )
SET( ${PROJECT_NAME}_VERSION_MINOR 4 )
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/AIDASoft/podio/tree/master/tests/schema_evolution
##
schema_version: 830
schema_version: 840

options :
# should getters / setters be prefixed with get / set?
Expand Down Expand Up @@ -614,6 +614,15 @@ datatypes:
- edm4eic::Cluster cluster // reference to the cluster
- edm4eic::Track track // reference to the track

edm4eic::TrackProtoClusterMatch:
Description: "Match between a ProtoCluster and a Track"
Author: "D. Anderson, D. Kalinkin"
Members:
- float weight // weight of this association
OneToOneRelations:
- edm4eic::Track from // reference to the track
- edm4eic::ProtoCluster to // reference to the protocluster

links:
edm4eic::TrackProtoClusterLink:
Description: "Link between a ProtoCluster and a Track"
Expand Down