Skip to content

Commit

Permalink
Keep existing function name for less downstream breakage
Browse files Browse the repository at this point in the history
  • Loading branch information
tmadlener committed Jun 28, 2024
1 parent 0fc80a4 commit 202154d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions edm4hep.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -571,11 +571,11 @@ datatypes:
void setCovMatrix(float value, edm4hep::Cartesian dimI, edm4hep::Cartesian dimJ) { getCovMatrix().setValue(value, dimI, dimJ); }\n
/// Set the primary vertex flag for this vertex
void setPrimaryVertex(bool value=true) { setType(utils::setBit(getType(), BITPrimaryVertex, value)); }\n
void setPrimary(bool value=true) { setType(utils::setBit(getType(), BITPrimaryVertex, value)); }\n
/// Set the secondary vertex flag for this vertex
void setSecondaryVertex(bool value=true) { setType(utils::setBit(getType(), BITSecondaryVertex, value)); }\n
void setSecondary(bool value=true) { setType(utils::setBit(getType(), BITSecondaryVertex, value)); }\n
/// Set the tertiary vertex flag for this vertex
void setTertiaryVertex(bool value=true) { setType(utils::setBit(getType(), BITTertiaryVertex, value)); }\n
void setTertiary(bool value=true) { setType(utils::setBit(getType(), BITTertiaryVertex, value)); }\n
"

#------- ReconstructedParticle
Expand Down

0 comments on commit 202154d

Please sign in to comment.