Skip to content
Snippets Groups Projects
Commit 198cbf3e authored by Tim Martin's avatar Tim Martin
Browse files

schema update v1 Aux too

parent 58bfa04d
No related branches found
No related tags found
1 merge request!74315[ATR-28845] Inline schema evolution in TrigCompositeAuxContainer_v2 of linkColIndices
......@@ -37,6 +37,7 @@ namespace xAOD {
public:
using sgkey_t = SG::sgkey_t;
using index_type = uint32_t;
/// Default constuctor
TrigCompositeAuxContainer_v1();
......@@ -45,8 +46,8 @@ namespace xAOD {
std::vector< std::string > name;
std::vector< std::vector< std::string > > linkColNames;
std::vector< std::vector< sgkey_t > > linkColKeys;
std::vector< std::vector< uint16_t > > linkColIndices;
std::vector< std::vector< sgkey_t > > linkColKeys;
std::vector< std::vector< index_type > > linkColIndices;
std::vector< std::vector< uint32_t > > linkColClids;
}; // class TrigCompositeAuxContainer_v1
......
......@@ -223,7 +223,7 @@ namespace xAOD {
/// Raw access to the persistent link labels.
const std::vector< sgkey_t >& linkColKeys() const;
/// Raw access to the persistent link indices.
const std::vector< uint32_t >& linkColIndices() const;
const std::vector< index_type >& linkColIndices() const;
/// Raw access to the persistent link CLIDs
const std::vector< uint32_t >& linkColClids() const;
......@@ -235,7 +235,7 @@ namespace xAOD {
/// Raw access to the persistent link labels. Will attempt to access remapped link data.
const std::vector< sgkey_t >& linkColKeysRemap() const;
/// Raw access to the persistent link indices. Will attempt to access remapped link data.
const std::vector< uint32_t >& linkColIndicesRemap() const;
const std::vector< index_type >& linkColIndicesRemap() const;
/// @}
......@@ -284,7 +284,7 @@ namespace xAOD {
/// Raw access to the persistent link labels (non-const)
std::vector< sgkey_t >& linkColKeysNC();
/// Raw access to the persistent link indices (non-const)
std::vector< uint32_t >& linkColIndicesNC();
std::vector< index_type >& linkColIndicesNC();
/// Raw access to the persistent link CLIDs (non-const)
std::vector< uint32_t >& linkColClidsNC();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment