Skip to content
Snippets Groups Projects
Commit 8b05ed2b authored by Johannes Junggeburth's avatar Johannes Junggeburth :dog2:
Browse files

Remove mcCollectionType

parent 953e407c
No related branches found
No related tags found
No related merge requests found
......@@ -28,7 +28,6 @@ MuonSimHitAuxContainer_v1::MuonSimHitAuxContainer_v1()
SIM_AUXVARIABLE(kineticEnergy);
SIM_AUXVARIABLE(mcEventIndex);
SIM_AUXVARIABLE(mcBarcode);
SIM_AUXVARIABLE(mcCollectionType);
}
} // namespace xAOD
#undef SIM_AUXVARIABLE
\ No newline at end of file
/*
Copyright (C) 2002-2023 CERN for the benefit of the ATLAS collaboration
Copyright (C) 2002-2024 CERN for the benefit of the ATLAS collaboration
*/
// EDM include(s):
......@@ -15,7 +15,6 @@ namespace {
static const SG::AuxElement::Accessor<unsigned short> acc_mcEventIndex{preFixStr+"mcEventIndex"};
static const SG::AuxElement::Accessor<unsigned int> acc_mcBarcode{preFixStr+"mcBarcode"};
static const SG::AuxElement::Accessor<char> acc_mcCollectionType{preFixStr+"mcCollectionType"};
}
#define IMPLEMENT_SETTER_GETTER( DTYPE, GETTER, SETTER) \
......@@ -80,7 +79,6 @@ void MuonSimHit_v1::setGenParticleLink(const HepMcParticleLink& link) {
m_hepMCLink.release();
acc_mcEventIndex(*this) = link.eventIndex();
acc_mcBarcode(*this) = link.barcode();
acc_mcCollectionType(*this) = 'a'; // Hard-coding as this only ever had a single value in production
}
}
......
......@@ -34,8 +34,6 @@ class MuonSimHitAuxContainer_v1 : public AuxContainerBase {
/// Information needed to save the HEPMC particle link
std::vector<unsigned short> mcEventIndex{};
std::vector<unsigned int> mcBarcode{};
std::vector<char> mcCollectionType{};
/// @}
};
} // namespace xAOD
......
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