ATLAS Offline Software
Loading...
Searching...
No Matches
AllocTestWriteWithAlloc.cxx
Go to the documentation of this file.
1/*
2 * Copyright (C) 2002-2023 CERN for the benefit of the ATLAS collaboration.
3 */
10
11
14
15
16namespace DMTest {
17
18
23{
24 ATH_CHECK( m_containerKey.initialize() );
25 return StatusCode::SUCCESS;
26}
27
28
32StatusCode AllocTestWriteWithAlloc::execute (const EventContext& ctx) const
33{
35 atInt3 ("atInt3");
37 atInt4 ("atInt4");
38
40 ATH_CHECK( cont.record (std::make_unique<AllocTestContainer>(),
41 std::make_unique<AllocTestAuxContainer>()) );
42
43 for (size_t i = 0; i < 10; i++) {
44 cont->push_back (std::make_unique<AllocTest>());
45 cont->back()->setAtInt1 (ctx.evt()*100 + i);
46 cont->back()->setAtInt2 (ctx.evt()*100 + i + 10);
47 atInt3(*cont->back()) = ctx.evt()*100 + i + 20;
48 atInt4(*cont->back()) = ctx.evt()*100 + i + 30;
49 }
50 return StatusCode::SUCCESS;
51}
52
53
54} // namespace DMTest
Test writing AllocTest with a non-default allocator.
#define ATH_CHECK
Evaluate an expression and check for errors.
Testing an xAOD object with a non-standard memory allocator.
virtual StatusCode execute(const EventContext &ctx) const override
Algorithm event processing.
virtual StatusCode initialize() override
Gaudi initialize method.
SG::WriteHandleKey< AllocTestContainer > m_containerKey
SG::Accessor< T, ALLOC > Accessor
Definition AuxElement.h:572
StatusCode record(std::unique_ptr< T > data)
Record a const object to the store.
Definition B.h:23