Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Association between Reco Cluster and ReconstructedParticle #52

Merged
merged 11 commits into from
Oct 16, 2024
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
Loading