Skip to content

Commit

Permalink
Fix ExtraCode to actually get it generated properly
Browse files Browse the repository at this point in the history
  • Loading branch information
tmadlener committed Jul 1, 2024
1 parent d9210e3 commit 56b4c26
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 @@ -570,11 +570,11 @@ datatypes:
/// Set the position covariance matrix value for the two passed dimensions\n
void setCovMatrix(float value, edm4hep::Cartesian dimI, edm4hep::Cartesian dimJ) { getCovMatrix().setValue(value, dimI, dimJ); }\n
/// Set the primary vertex flag for this vertex
/// Set the primary vertex flag for this vertex\n
void setPrimary(bool value=true) { setType(utils::setBit(getType(), BITPrimaryVertex, value)); }\n
/// Set the secondary vertex flag for this vertex
/// Set the secondary vertex flag for this vertex\n
void setSecondary(bool value=true) { setType(utils::setBit(getType(), BITSecondaryVertex, value)); }\n
/// Set the tertiary vertex flag for this vertex
/// Set the tertiary vertex flag for this vertex\n
void setTertiary(bool value=true) { setType(utils::setBit(getType(), BITTertiaryVertex, value)); }\n
"

Expand Down

0 comments on commit 56b4c26

Please sign in to comment.