|
ATLAS Offline Software
|
Temporary container used until we have I/O for AuxStoreInternal.
More...
#include <TrackParticleAuxContainer_v4.h>
|
| TrackParticleAuxContainer_v4 () |
| Default constructor. More...
|
|
void | dump () const |
| Dumps contents (for debugging) More...
|
|
void | toTransient () |
| Function implementing soft schema evolution for the class. More...
|
|
virtual const void * | getData (SG::auxid_t auxid) const=0 |
| Pick up the const version from the base class. More...
|
|
virtual const IAuxTypeVector * | linkedVector (SG::auxid_t) const |
| Return interface for a linked variable. More...
|
|
virtual bool | insertMove (size_t pos, IAuxStore &other, const SG::auxid_set_t &ignore=SG::auxid_set_t())=0 |
| Move all elements from other to this store. More...
|
|
template<typename T , typename ALLOC > |
auxid_t | getAuxID (const std::string &name, std::vector< T, ALLOC > &, SG::AuxVarFlags flags=SG::AuxVarFlags::None, const SG::auxid_t linkedVariable=SG::null_auxid) |
| Get the auxiliary ID for one of the persistent variables. More...
|
|
template<typename T > |
auxid_t | getAuxID (const std::string &name, SG::PackedContainer< T > &, SG::AuxVarFlags flags=SG::AuxVarFlags::None, const SG::auxid_t linkedVariable=SG::null_auxid) |
| Get the auxiliary ID for one of the persistent variables. More...
|
|
template<typename T , typename ALLOC > |
void | regAuxVar (auxid_t auxid, const std::string &name, std::vector< T, ALLOC > &vec) |
| Register one of the persistent variables internally. More...
|
|
template<typename T > |
void | regAuxVar (auxid_t auxid, const std::string &name, SG::PackedContainer< T > &vec) |
| Register one of the persistent variables internally. More...
|
|
|
typedef AthContainers_detail::mutex | mutex_t |
| Mutex for multithread synchronization. More...
|
|
typedef AthContainers_detail::lock_guard< mutex_t > | guard_t |
|
Temporary container used until we have I/O for AuxStoreInternal.
This class is meant to serve as a temporary way to provide an auxiliary store with Athena I/O capabilities for the TrackParticle EDM. Will be exchanged for a generic auxiliary container type (AuxStoreInternal) later on.
- Author
- Edward Moyse
Definition at line 37 of file TrackParticleAuxContainer_v4.h.
◆ auxid_set_t
◆ auxid_t
◆ AuxVariable_t
template<class T , class ALLOC = std::allocator<T>>
◆ guard_t
◆ LinkedVariable_t
template<class T , class ALLOC = std::allocator<T>>
◆ mutex_t
◆ AuxStoreType
Type of the auxiliary store.
In the xAOD EDM we use auxiliary store objects in some cases to describe a single object, and in most cases to describe a container of objects. This enumeration declares which type the object implementing this interface is.
Enumerator |
---|
AST_ObjectStore | The store describes a single object.
|
AST_ContainerStore | The store describes a container.
|
Definition at line 66 of file IAuxStoreHolder.h.
◆ TrackParticleAuxContainer_v4()
xAOD::TrackParticleAuxContainer_v4::TrackParticleAuxContainer_v4 |
( |
| ) |
|
◆ clearDecorations()
bool xAOD::AuxContainerBase::clearDecorations |
( |
| ) |
|
|
overridevirtualinherited |
◆ dump()
void xAOD::TrackParticleAuxContainer_v4::dump |
( |
| ) |
const |
Dumps contents (for debugging)
Definition at line 109 of file TrackParticleAuxContainer_v4.cxx.
110 std::cout<<
" Dumping TrackParticleAuxContainer_v4"<<std::endl;
113 std::ostream_iterator<float>(std::cout,
", "));
116 std::ostream_iterator<float>(std::cout,
", "));
119 std::ostream_iterator<float>(std::cout,
", "));
122 std::ostream_iterator<float>(std::cout,
", "));
123 std::cout<<
"qOverP:";
125 std::ostream_iterator<float>(std::cout,
", "));
126 std::cout<<
"definingParametersCovMatrix: ";
129 std::ostream_iterator<float>(std::cout,
", "));
130 std::cout<<std::endl;
◆ getAuxID() [1/2]
Get the auxiliary ID for one of the persistent variables.
◆ getAuxID() [2/2]
template<typename T , typename ALLOC >
Get the auxiliary ID for one of the persistent variables.
◆ getAuxIDs()
◆ getData() [1/3]
const void * xAOD::AuxContainerBase::getData |
( |
auxid_t |
auxid | ) |
const |
|
overridevirtualinherited |
◆ getData() [2/3]
void * xAOD::AuxContainerBase::getData |
( |
auxid_t |
auxid, |
|
|
size_t |
size, |
|
|
size_t |
capacity |
|
) |
| |
|
overridevirtualinherited |
Get a pointer to a given array, creating the array if necessary.
Implements SG::IAuxStore.
Definition at line 461 of file AuxContainerBase.cxx.
467 if( ( auxid >=
m_vecs.size() ) || ( !
m_vecs[ auxid ] ) ) {
474 auxid_t linked_id =
r.linkedVariable( auxid );
475 if (linked_id != SG::null_auxid) {
481 std::cout <<
"ERROR xAOD::AuxContainerBase::getData "
482 <<
"Unknown variable ("
484 <<
") requested" << std::endl;
488 m_vecs[ auxid ]->reserve( capacity );
493 return m_vecs[ auxid ]->toPtr();
◆ getData() [3/3]
virtual const void* SG::IConstAuxStore::getData |
|
inherited |
Pick up the const version from the base class.
◆ getDecoration()
void * xAOD::AuxContainerBase::getDecoration |
( |
auxid_t |
auxid, |
|
|
size_t |
size, |
|
|
size_t |
capacity |
|
) |
| |
|
overridevirtualinherited |
◆ getDecorIDs()
◆ getDynamicAuxIDs()
◆ getIOData()
const void * xAOD::AuxContainerBase::getIOData |
( |
auxid_t |
auxid | ) |
const |
|
overridevirtualinherited |
Get a pointer to the data being stored for one aux data item.
Implements SG::IAuxStoreIO.
Definition at line 658 of file AuxContainerBase.cxx.
664 if( ( auxid >=
m_vecs.size() ) || ( !
m_vecs[ auxid ] ) ) {
668 std::cout <<
"ERROR xAOD::AuxContainerBase::getIOData "
669 <<
"Unknown variable ("
671 <<
") requested" << std::endl;
680 return m_vecs[ auxid ]->toVector();
◆ getIOType()
const std::type_info * xAOD::AuxContainerBase::getIOType |
( |
auxid_t |
auxid | ) |
const |
|
overridevirtualinherited |
◆ getSelectedAuxIDs()
◆ getStore() [1/2]
◆ getStore() [2/2]
◆ getStoreType()
virtual AuxStoreType xAOD::AuxContainerBase::getStoreType |
( |
| ) |
const |
|
inlineoverridevirtualinherited |
◆ getVector()
|
finaloverridevirtualinherited |
Return vector interface for one aux data item.
Implements SG::IConstAuxStore.
Definition at line 238 of file AuxContainerBase.cxx.
243 if( ( auxid >=
m_vecs.size() ) || ( !
m_vecs[ auxid ] ) ) {
249 auxids_nc.
insert( auxid );
251 auxid_t linked_id =
r.linkedVariable( auxid );
252 if (linked_id != SG::null_auxid) {
253 auxids_nc.insert( linked_id );
258 std::cout <<
"ERROR xAOD::AuxContainerBase::getData "
259 <<
"Unknown variable ("
261 <<
") requested" << std::endl;
◆ getWritableAuxIDs()
◆ insertMove() [1/2]
Insert contents of another store via move.
Definition at line 583 of file AuxContainerBase.cxx.
595 size_t other_size =
other.size();
607 if (
other.getData (
id)) {
608 void* src_ptr =
other.getData (
id, other_size, other_size);
616 const void* orig = v_dst->
toPtr();
618 if (orig != v_dst->
toPtr())
◆ insertMove() [2/2]
Move all elements from other
to this store.
- Parameters
-
pos | The starting index of the insertion. |
other | Store from which to do the move. |
ignore | Set of variables that should not be added to the store. |
Let len
be the size of other
. The store will be increased in size by len
elements, with the elements at pos
being copied to pos+len
. Then, for each auxiliary variable, the entire contents of that variable for other
will be moved to this store at index pos
. This will be done via move semantics if possible; otherwise, it will be done with a copy. Variables present in this store but not in other
will have the corresponding elements default-initialized. Variables in other
but not in this store will be added unless they are in ignore
.
Returns true if it is known that none of the vectors' memory moved, false otherwise.
Implemented in SG::AuxStoreInternal.
◆ isDecoration()
bool xAOD::AuxContainerBase::isDecoration |
( |
auxid_t |
auxid | ) |
const |
|
overridevirtualinherited |
◆ linkedVector() [1/3]
◆ linkedVector() [2/3]
◆ linkedVector() [3/3]
virtual const IAuxTypeVector* SG::IConstAuxStore::linkedVector |
|
inlineinherited |
Return interface for a linked variable.
- Parameters
-
auxid | The ID of the parent variable. |
If auxid
has a linked variable, then return the IAuxTypeVector
describing it. Otherwise, return nullptr
. May return nullptr
unconditionally if this store does not support linked variables.
Definition at line 189 of file IConstAuxStore.h.
◆ lock()
void xAOD::AuxContainerBase::lock |
( |
| ) |
|
|
overridevirtualinherited |
◆ lockDecoration()
void xAOD::AuxContainerBase::lockDecoration |
( |
SG::auxid_t |
auxid | ) |
|
|
overridevirtualinherited |
◆ memResource()
std::pmr::memory_resource * xAOD::AuxContainerBase::memResource |
( |
| ) |
|
|
inherited |
Return the memory resource to use.
Definition at line 158 of file AuxContainerBase.cxx.
160 const std::pmr::memory_resource* cptr = m_memResource.get();
161 std::pmr::memory_resource*
ptr ATLAS_THREAD_SAFE =
const_cast<std::pmr::memory_resource*
>( cptr );
163 #ifndef XAOD_STANDALONE
164 const EventContext& ctx = Gaudi::Hive::currentContext();
171 ptr = std::pmr::get_default_resource();
174 m_memResource.set(
ptr );
◆ name()
const char * xAOD::AuxContainerBase::name |
( |
| ) |
const |
|
inherited |
◆ regAuxVar() [1/2]
Register one of the persistent variables internally.
◆ regAuxVar() [2/2]
template<typename T , typename ALLOC >
void xAOD::AuxContainerBase::regAuxVar |
( |
auxid_t |
auxid, |
|
|
const std::string & |
name, |
|
|
std::vector< T, ALLOC > & |
vec |
|
) |
| |
|
inherited |
Register one of the persistent variables internally.
◆ regAuxVar1()
template<typename ELT , typename CONT >
void xAOD::AuxContainerBase::regAuxVar1 |
( |
auxid_t |
auxid, |
|
|
const std::string & |
name, |
|
|
CONT & |
vec |
|
) |
| |
|
privateinherited |
Common code between regAuxVar cases.
◆ reserve()
void xAOD::AuxContainerBase::reserve |
( |
size_t |
size | ) |
|
|
overridevirtualinherited |
◆ resize()
bool xAOD::AuxContainerBase::resize |
( |
size_t |
size | ) |
|
|
overridevirtualinherited |
◆ setName()
void xAOD::AuxContainerBase::setName |
( |
const char * |
name | ) |
|
|
inherited |
◆ setOption()
◆ setStore()
Set a different internal store object.
This function is used by the I/O infrastructure to possibly put a store object into this one, which can interact with dynamic variables directly.
Note that the object takes ownership of the received store.
- Parameters
-
store | The store that should be used for dynamic variable handling inside the object from now on |
Implements SG::IAuxStoreHolder.
Definition at line 194 of file AuxContainerBase.cxx.
◆ shift()
void xAOD::AuxContainerBase::shift |
( |
size_t |
pos, |
|
|
ptrdiff_t |
offs |
|
) |
| |
|
overridevirtualinherited |
◆ size()
size_t xAOD::AuxContainerBase::size |
( |
| ) |
const |
|
overridevirtualinherited |
◆ toTransient()
void xAOD::TrackParticleAuxContainer_v4::toTransient |
( |
| ) |
|
Function implementing soft schema evolution for the class.
This function is used to implement simple schema evolution rules that don't warrant creating a _v5 class yet.
Definition at line 136 of file TrackParticleAuxContainer_v4.cxx.
◆ ATLAS_THREAD_SAFE
◆ beamlineTiltX
std::vector< float > xAOD::TrackParticleAuxContainer_v4::beamlineTiltX |
|
private |
◆ beamlineTiltY
std::vector< float > xAOD::TrackParticleAuxContainer_v4::beamlineTiltY |
|
private |
◆ chiSquared
std::vector< float > xAOD::TrackParticleAuxContainer_v4::chiSquared |
|
private |
◆ d0
std::vector< float > xAOD::TrackParticleAuxContainer_v4::d0 |
|
private |
◆ definingParametersCovMatrix
std::vector< std::vector<float> > xAOD::TrackParticleAuxContainer_v4::definingParametersCovMatrix |
|
private |
◆ eProbabilityComb
std::vector< float > xAOD::TrackParticleAuxContainer_v4::eProbabilityComb |
|
private |
◆ eProbabilityHT
std::vector< float > xAOD::TrackParticleAuxContainer_v4::eProbabilityHT |
|
private |
◆ expectInnermostPixelLayerHit
std::vector< uint8_t > xAOD::TrackParticleAuxContainer_v4::expectInnermostPixelLayerHit |
|
private |
◆ expectNextToInnermostPixelLayerHit
std::vector< uint8_t > xAOD::TrackParticleAuxContainer_v4::expectNextToInnermostPixelLayerHit |
|
private |
◆ hitPattern
std::vector< uint32_t > xAOD::TrackParticleAuxContainer_v4::hitPattern |
|
private |
◆ identifierOfFirstHit
std::vector< uint64_t > xAOD::TrackParticleAuxContainer_v4::identifierOfFirstHit |
|
private |
◆ m_auxids
◆ m_locked
bool xAOD::AuxContainerBase::m_locked |
|
privateinherited |
◆ m_mutex
mutex_t xAOD::AuxContainerBase::m_mutex |
|
mutableprivateinherited |
◆ m_name
std::string xAOD::AuxContainerBase::m_name |
|
privateinherited |
◆ m_ownsStore
bool xAOD::AuxContainerBase::m_ownsStore |
|
privateinherited |
Flag deciding if the object owns the dynamic store or not.
Definition at line 241 of file AuxContainerBase.h.
◆ m_store
◆ m_storeIO
◆ m_vecs
◆ numberDoF
std::vector< float > xAOD::TrackParticleAuxContainer_v4::numberDoF |
|
private |
◆ numberOfContribPixelLayers
std::vector< uint8_t > xAOD::TrackParticleAuxContainer_v4::numberOfContribPixelLayers |
|
private |
◆ numberOfDBMHits
std::vector< uint8_t > xAOD::TrackParticleAuxContainer_v4::numberOfDBMHits |
|
private |
◆ numberOfGangedFlaggedFakes
std::vector< uint8_t > xAOD::TrackParticleAuxContainer_v4::numberOfGangedFlaggedFakes |
|
private |
◆ numberOfGangedPixels
std::vector< uint8_t > xAOD::TrackParticleAuxContainer_v4::numberOfGangedPixels |
|
private |
◆ numberOfIBLOverflowsdEdx
std::vector< uint8_t > xAOD::TrackParticleAuxContainer_v4::numberOfIBLOverflowsdEdx |
|
private |
◆ numberOfInnermostPixelLayerHits
std::vector< uint8_t > xAOD::TrackParticleAuxContainer_v4::numberOfInnermostPixelLayerHits |
|
private |
◆ numberOfInnermostPixelLayerOutliers
std::vector< uint8_t > xAOD::TrackParticleAuxContainer_v4::numberOfInnermostPixelLayerOutliers |
|
private |
◆ numberOfInnermostPixelLayerSharedHits
std::vector< uint8_t > xAOD::TrackParticleAuxContainer_v4::numberOfInnermostPixelLayerSharedHits |
|
private |
◆ numberOfInnermostPixelLayerSplitHits
std::vector< uint8_t > xAOD::TrackParticleAuxContainer_v4::numberOfInnermostPixelLayerSplitHits |
|
private |
◆ numberOfNextToInnermostPixelLayerHits
std::vector< uint8_t > xAOD::TrackParticleAuxContainer_v4::numberOfNextToInnermostPixelLayerHits |
|
private |
◆ numberOfNextToInnermostPixelLayerOutliers
std::vector< uint8_t > xAOD::TrackParticleAuxContainer_v4::numberOfNextToInnermostPixelLayerOutliers |
|
private |
◆ numberOfNextToInnermostPixelLayerSharedHits
std::vector< uint8_t > xAOD::TrackParticleAuxContainer_v4::numberOfNextToInnermostPixelLayerSharedHits |
|
private |
◆ numberOfNextToInnermostPixelLayerSplitHits
std::vector< uint8_t > xAOD::TrackParticleAuxContainer_v4::numberOfNextToInnermostPixelLayerSplitHits |
|
private |
◆ numberOfOutliersOnTrack
std::vector< uint8_t > xAOD::TrackParticleAuxContainer_v4::numberOfOutliersOnTrack |
|
private |
◆ numberOfPhiHoleLayers
std::vector< uint8_t > xAOD::TrackParticleAuxContainer_v4::numberOfPhiHoleLayers |
|
private |
◆ numberOfPhiLayers
std::vector< uint8_t > xAOD::TrackParticleAuxContainer_v4::numberOfPhiLayers |
|
private |
◆ numberOfPixelDeadSensors
std::vector< uint8_t > xAOD::TrackParticleAuxContainer_v4::numberOfPixelDeadSensors |
|
private |
◆ numberOfPixelHits
std::vector< uint8_t > xAOD::TrackParticleAuxContainer_v4::numberOfPixelHits |
|
private |
◆ numberOfPixelHoles
std::vector< uint8_t > xAOD::TrackParticleAuxContainer_v4::numberOfPixelHoles |
|
private |
◆ numberOfPixelOutliers
std::vector< uint8_t > xAOD::TrackParticleAuxContainer_v4::numberOfPixelOutliers |
|
private |
◆ numberOfPixelSharedHits
std::vector< uint8_t > xAOD::TrackParticleAuxContainer_v4::numberOfPixelSharedHits |
|
private |
◆ numberOfPixelSplitHits
std::vector< uint8_t > xAOD::TrackParticleAuxContainer_v4::numberOfPixelSplitHits |
|
private |
◆ numberOfPixelSpoiltHits
std::vector< uint8_t > xAOD::TrackParticleAuxContainer_v4::numberOfPixelSpoiltHits |
|
private |
◆ numberOfPrecisionHoleLayers
std::vector< uint8_t > xAOD::TrackParticleAuxContainer_v4::numberOfPrecisionHoleLayers |
|
private |
◆ numberOfPrecisionLayers
std::vector< uint8_t > xAOD::TrackParticleAuxContainer_v4::numberOfPrecisionLayers |
|
private |
◆ numberOfSCTDeadSensors
std::vector< uint8_t > xAOD::TrackParticleAuxContainer_v4::numberOfSCTDeadSensors |
|
private |
◆ numberOfSCTDoubleHoles
std::vector< uint8_t > xAOD::TrackParticleAuxContainer_v4::numberOfSCTDoubleHoles |
|
private |
◆ numberOfSCTHits
std::vector< uint8_t > xAOD::TrackParticleAuxContainer_v4::numberOfSCTHits |
|
private |
◆ numberOfSCTHoles
std::vector< uint8_t > xAOD::TrackParticleAuxContainer_v4::numberOfSCTHoles |
|
private |
◆ numberOfSCTOutliers
std::vector< uint8_t > xAOD::TrackParticleAuxContainer_v4::numberOfSCTOutliers |
|
private |
◆ numberOfSCTSharedHits
std::vector< uint8_t > xAOD::TrackParticleAuxContainer_v4::numberOfSCTSharedHits |
|
private |
◆ numberOfSCTSpoiltHits
std::vector< uint8_t > xAOD::TrackParticleAuxContainer_v4::numberOfSCTSpoiltHits |
|
private |
◆ numberOfTriggerEtaHoleLayers
std::vector< uint8_t > xAOD::TrackParticleAuxContainer_v4::numberOfTriggerEtaHoleLayers |
|
private |
◆ numberOfTriggerEtaLayers
std::vector< uint8_t > xAOD::TrackParticleAuxContainer_v4::numberOfTriggerEtaLayers |
|
private |
◆ numberOfTRTDeadStraws
std::vector< uint8_t > xAOD::TrackParticleAuxContainer_v4::numberOfTRTDeadStraws |
|
private |
◆ numberOfTRTHighThresholdHits
std::vector< uint8_t > xAOD::TrackParticleAuxContainer_v4::numberOfTRTHighThresholdHits |
|
private |
◆ numberOfTRTHighThresholdHitsTotal
std::vector< uint8_t > xAOD::TrackParticleAuxContainer_v4::numberOfTRTHighThresholdHitsTotal |
|
private |
◆ numberOfTRTHighThresholdOutliers
std::vector< uint8_t > xAOD::TrackParticleAuxContainer_v4::numberOfTRTHighThresholdOutliers |
|
private |
◆ numberOfTRTHits
std::vector< uint8_t > xAOD::TrackParticleAuxContainer_v4::numberOfTRTHits |
|
private |
◆ numberOfTRTHoles
std::vector< uint8_t > xAOD::TrackParticleAuxContainer_v4::numberOfTRTHoles |
|
private |
◆ numberOfTRTOutliers
std::vector< uint8_t > xAOD::TrackParticleAuxContainer_v4::numberOfTRTOutliers |
|
private |
◆ numberOfTRTSharedHits
std::vector< uint8_t > xAOD::TrackParticleAuxContainer_v4::numberOfTRTSharedHits |
|
private |
◆ numberOfTRTTubeHits
std::vector< uint8_t > xAOD::TrackParticleAuxContainer_v4::numberOfTRTTubeHits |
|
private |
◆ numberOfTRTXenonHits
std::vector< uint8_t > xAOD::TrackParticleAuxContainer_v4::numberOfTRTXenonHits |
|
private |
◆ numberOfUsedHitsdEdx
std::vector< uint8_t > xAOD::TrackParticleAuxContainer_v4::numberOfUsedHitsdEdx |
|
private |
◆ particleHypothesis
std::vector< uint8_t > xAOD::TrackParticleAuxContainer_v4::particleHypothesis |
|
private |
◆ patternRecoInfo
std::vector< uint64_t > xAOD::TrackParticleAuxContainer_v4::patternRecoInfo |
|
private |
◆ phi
std::vector< float > xAOD::TrackParticleAuxContainer_v4::phi |
|
private |
◆ pixeldEdx
std::vector< float > xAOD::TrackParticleAuxContainer_v4::pixeldEdx |
|
private |
◆ qOverP
std::vector< float > xAOD::TrackParticleAuxContainer_v4::qOverP |
|
private |
◆ radiusOfFirstHit
std::vector< float > xAOD::TrackParticleAuxContainer_v4::radiusOfFirstHit |
|
private |
◆ standardDeviationOfChi2OS
std::vector< uint8_t > xAOD::TrackParticleAuxContainer_v4::standardDeviationOfChi2OS |
|
private |
◆ supportsThinning
constexpr bool SG::IAuxStore::supportsThinning = true |
|
staticconstexprinherited |
Mark that this type supports thinning operations.
See AthContainers/supportsThinning.h and AthenaPoolCnvSvc/T_AthenaPoolCnv.h. Helps guide which pool converter template will be used. If false, the default pool converter will be used rather than the aux store-specific one. Ordinary xAOD type should not touch this, but may be overridden in a derived class to handle certain special cases.
Definition at line 199 of file IAuxStore.h.
◆ theta
std::vector< float > xAOD::TrackParticleAuxContainer_v4::theta |
|
private |
◆ trackFitter
std::vector< uint8_t > xAOD::TrackParticleAuxContainer_v4::trackFitter |
|
private |
◆ trackProperties
std::vector< uint8_t > xAOD::TrackParticleAuxContainer_v4::trackProperties |
|
private |
◆ TRTTrackOccupancy
std::vector< float> xAOD::TrackParticleAuxContainer_v4::TRTTrackOccupancy |
|
private |
◆ vx
std::vector< float > xAOD::TrackParticleAuxContainer_v4::vx |
|
private |
◆ vy
std::vector< float > xAOD::TrackParticleAuxContainer_v4::vy |
|
private |
◆ vz
std::vector< float > xAOD::TrackParticleAuxContainer_v4::vz |
|
private |
◆ z0
std::vector< float > xAOD::TrackParticleAuxContainer_v4::z0 |
|
private |
The documentation for this class was generated from the following files:
std::vector< uint8_t > numberOfContribPixelLayers
std::vector< uint8_t > numberOfNextToInnermostPixelLayerHits
std::string m_name
Name of the container in memory. Set externally.
std::vector< uint8_t > trackProperties
virtual bool shift(size_t pos, ptrdiff_t offs)=0
Shift the elements of the vector.
bool isLinked() const
Return true if this variable is linked from another one.
std::vector< float > eProbabilityHT
const char * name() const
Get the name of the container instance.
std::vector< uint8_t > numberOfPixelDeadSensors
std::vector< float > TRTTrackOccupancy
virtual bool insertMove(size_t pos, IAuxStore &other, const SG::auxid_set_t &ignore=SG::auxid_set_t())=0
Move all elements from other to this store.
std::vector< uint8_t > numberOfPixelSplitHits
virtual void lockDecoration(SG::auxid_t auxid)=0
Lock a decoration.
std::vector< uint8_t > expectInnermostPixelLayerHit
std::vector< uint8_t > trackFitter
std::vector< uint8_t > numberOfPixelHoles
std::vector< float > pixeldEdx
std::vector< uint8_t > numberOfPhiLayers
virtual const IAuxTypeVector * getVector(SG::auxid_t auxid) const =0
Return vector interface for one aux data item.
ReadStats & stats()
Access the object belonging to the current thread.
static AuxTypeRegistry & instance()
Return the singleton registry instance.
std::vector< uint8_t > numberOfInnermostPixelLayerOutliers
std::vector< uint8_t > standardDeviationOfChi2OS
SG::IAuxStore * m_store
Internal dynamic auxiliary store object.
std::vector< float > numberDoF
std::vector< uint8_t > numberOfNextToInnermostPixelLayerSharedHits
std::string getName(SG::auxid_t auxid) const
Return the name of an aux data item.
AthContainers_detail::lock_guard< mutex_t > guard_t
std::vector< uint8_t > numberOfInnermostPixelLayerSplitHits
Exception — Attempted to modify auxiliary data in a locked store.
std::vector< uint8_t > numberOfDBMHits
std::vector< uint8_t > numberOfTRTHighThresholdHits
bool hasExtendedEventContext(const EventContext &ctx)
Test whether a context object has an extended context installed.
std::vector< float > beamlineTiltY
std::vector< uint8_t > numberOfSCTSpoiltHits
virtual bool insertMove(size_t pos, void *src, size_t src_pos, size_t src_n, IAuxStore &srcStore)=0
Insert elements into the vector via move semantics.
std::vector< uint8_t > numberOfOutliersOnTrack
virtual const std::type_info * getIOType(SG::auxid_t auxid) const =0
Return the type of the data to be stored for one aux data item.
std::vector< float > eProbabilityComb
std::vector< uint8_t > numberOfNextToInnermostPixelLayerSplitHits
virtual size_t size() const =0
Return the number of elements in the store.
virtual void shift(size_t pos, ptrdiff_t offs)=0
Shift the elements of the container.
virtual IAuxTypeVector * linkedVector(SG::auxid_t)
std::vector< uint8_t > numberOfTRTTubeHits
Interface providing I/O for a generic auxiliary store.
Handle mappings between names and auxid_t.
const ExtendedEventContext & getExtendedEventContext(const EventContext &ctx)
Retrieve an extended context from a context object.
virtual size_t size() const override
Get the size of the container.
std::vector< float > radiusOfFirstHit
std::vector< uint8_t > numberOfSCTDeadSensors
virtual bool setOption(auxid_t, const AuxDataOption &)
Set an option for a given auxiliary variable.
size_t auxid_t
Identifier for a particular aux data item.
std::vector< uint8_t > numberOfTriggerEtaLayers
std::vector< uint64_t > identifierOfFirstHit
std::vector< float > theta
virtual bool clearDecorations()=0
Clear all decorations.
std::vector< uint8_t > numberOfInnermostPixelLayerSharedHits
SG::auxid_set_t auxid_set_t
The aux ID set type definition.
auxid_set_t m_auxids
Internal list of all available variables.
std::vector< SG::IAuxTypeVector * > m_vecs
Internal list of all managed variables.
ConcurrentBitset & insert(bit_t bit, bit_t new_nbits=0)
Set a bit to 1.
#define AUX_VARIABLE(VAR,...)
Convenience macro for declaring an auxiliary variable.
std::vector< uint8_t > numberOfPixelHits
std::vector< uint32_t > hitPattern
std::vector< uint8_t > numberOfPixelSpoiltHits
std::vector< uint8_t > numberOfUsedHitsdEdx
std::vector< uint8_t > numberOfSCTHoles
std::vector< uint8_t > numberOfPrecisionHoleLayers
std::vector< float > chiSquared
std::vector< uint8_t > numberOfTRTDeadStraws
std::vector< uint8_t > numberOfTRTHoles
std::vector< float > qOverP
virtual void * getDecoration(auxid_t auxid, size_t size, size_t capacity)=0
Return the data vector for one aux data decoration item.
const std::type_info * getVecType(SG::auxid_t auxid) const
Return the type of the STL vector used to hold an aux data item.
std::vector< uint8_t > numberOfTRTHighThresholdOutliers
static IOStats & instance()
Singleton object accessor.
std::vector< uint8_t > numberOfPhiHoleLayers
std::vector< uint8_t > numberOfGangedPixels
std::vector< uint64_t > patternRecoInfo
std::vector< uint8_t > numberOfPixelSharedHits
std::vector< uint8_t > numberOfSCTOutliers
virtual const SG::IAuxTypeVector * getVector(SG::auxid_t auxid) const override final
Return vector interface for one aux data item.
const T * as_const_ptr(const T *p)
Helper for getting a const version of a pointer.
virtual const auxid_set_t & getWritableAuxIDs() const override
Return a set of writable data identifiers.
virtual const void * getIOData(SG::auxid_t auxid) const =0
Return a pointer to the data to be stored for one aux data item.
virtual const void * getData(auxid_t auxid) const override
Get a pointer to a given array.
std::vector< uint8_t > numberOfTRTSharedHits
std::vector< uint8_t > numberOfTriggerEtaHoleLayers
std::vector< uint8_t > numberOfTRTHighThresholdHitsTotal
void readBranch(const std::string &prefix, SG::auxid_t auxid)
Function incrementing the read counter on a specific branch.
std::vector< uint8_t > numberOfTRTHits
SG::auxid_t auxid_t
The aux ID type definition.
std::vector< uint8_t > numberOfNextToInnermostPixelLayerOutliers
CxxUtils::CachedPointer< std::pmr::memory_resource > m_memResource ATLAS_THREAD_SAFE
Memory resource to use for this container.
std::vector< uint8_t > numberOfSCTSharedHits
std::vector< uint8_t > numberOfInnermostPixelLayerHits
virtual void * getData(auxid_t auxid, size_t size, size_t capacity)=0
Return the data vector for one aux data item.
bool m_locked
Has the container been locked?
Abstract interface for manipulating vectors of arbitrary types.
std::vector< uint8_t > numberOfGangedFlaggedFakes
bool m_ownsStore
Flag deciding if the object owns the dynamic store or not.
virtual const SG::auxid_set_t & getDecorIDs() const =0
Return a set of identifiers for decorations in this store.
virtual void lock()=0
Lock the container.
SG::IAuxStoreIO * m_storeIO
The IO interface to the internal auxiliary store.
AuxContainerBase(bool allowDynamicVars=true)
Default constructor.
virtual bool resize(size_t sz)=0
Change the size of all aux data vectors.
A set of aux data identifiers.
std::vector< uint8_t > numberOfSCTDoubleHoles
std::vector< uint8_t > numberOfSCTHits
std::vector< uint8_t > particleHypothesis
virtual bool isDecoration(auxid_t auxid) const =0
Test if a particular variable is tagged as a decoration.
std::vector< uint8_t > numberOfTRTOutliers
std::vector< uint8_t > numberOfPixelOutliers
std::vector< std::vector< float > > definingParametersCovMatrix
std::vector< uint8_t > numberOfIBLOverflowsdEdx
@ AST_ObjectStore
The store describes a single object.
std::vector< float > beamlineTiltX
std::vector< uint8_t > expectNextToInnermostPixelLayerHit
std::vector< uint8_t > numberOfPrecisionLayers
virtual const SG::auxid_set_t & getAuxIDs() const =0
Return a set of identifiers for existing data items in this store.
virtual void * toPtr()=0
Return a pointer to the start of the vector's data.
virtual void reserve(size_t sz)=0
Change the capacity of all aux data vectors.
@ AST_ContainerStore
The store describes a container.
std::vector< uint8_t > numberOfTRTXenonHits