ATLAS Offline Software
Cache.icc
Go to the documentation of this file.
1 /*
2  Copyright (C) 2002-2024 CERN for the benefit of the ATLAS collaboration
3 */
4 
5 namespace ActsTrk::Cache{
6 
7  template<typename OT>
8  StatusCode Helper<OT>::insert(IDCWriteHandle& wh,
9  DataVector<OT>* dv,
10  unsigned int range_start,
11  unsigned int range_end) {
12  auto ce = std::make_unique<CacheEntry<OT>>(dv, range_start, range_end);
13  return wh.addOrDelete(std::move(ce));
14  }
15 
16 }