|
ATLAS Offline Software
|
Go to the documentation of this file.
35 return StatusCode::SUCCESS;
45 std::ostringstream ost1;
47 for (
const H*
h : *hvec)
48 ost1 <<
" " <<
h->aFloat();
53 std::ostringstream ost2;
55 for (
const H*
h : *hview)
56 ost2 <<
" " <<
h->aFloat();
61 auto vecnew = std::make_unique<HVec>();
62 auto store = std::make_unique<HAuxContainer>();
63 vecnew->setStore (
store.get());
64 for (
size_t i = 0;
i < hview->size();
i++) {
65 vecnew->push_back (
new H);
66 *vecnew->back() = *(*hview)[
i];
69 auto viewnew = std::make_unique<HView>();
70 for (
size_t i = 0;
i < vecnew->size();
i++)
71 viewnew->push_back (vecnew->at(vecnew->size()-1-
i));
80 return StatusCode::SUCCESS;
Algorithm to test reading xAOD data with schema evolution (HVec/HView)
SG::ReadHandleKey< DMTest::HVec > m_hviewKey
Test for xAOD schema evolution.
virtual StatusCode execute(const EventContext &ctx) const override
Algorithm event processing.
virtual StatusCode initialize() override
Algorithm initialization; called at the beginning of the job.
Handle class for recording to StoreGate.
::StatusCode StatusCode
StatusCode definition for legacy code.
Test for xAOD schema evolution.
SG::WriteHandleKey< DMTest::HView > m_viewWriteKey
SG::ReadHandleKey< DMTest::HVec > m_hvecKey
StatusCode record(std::unique_ptr< T > data)
Record a const object to the store.
Handle class for reading from StoreGate.
SG::WriteHandleKey< DMTest::HVec > m_vecWriteKey
const T * get(const ReadHandleKey< T > &key)
Convenience function to retrieve an object given a ReadHandleKey.