diff --git a/edm4hep.yaml b/edm4hep.yaml index 851e77347..b9d51801b 100644 --- a/edm4hep.yaml +++ b/edm4hep.yaml @@ -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 "