![]() |
ATLAS Offline Software
|
Auxiliary container for muon SA containers. More...
#include <L2StandAloneMuonAuxContainer_v1.h>
Public Types | |
| typedef SG::auxid_t | auxid_t |
| The aux ID type definition. | |
| typedef SG::auxid_set_t | auxid_set_t |
| The aux ID set type definition. | |
| template<class T, class ALLOC = std::allocator<T>> | |
| using | AuxVariable_t = std::vector<T, ALLOC> |
| Declare how to wrap variables for this sort of base. | |
| template<class T, class ALLOC = std::allocator<T>> | |
| using | LinkedVariable_t = AuxVariable_t<T, ALLOC> |
| enum | AuxStoreType { AST_ObjectStore = 0 , AST_ContainerStore = 1 } |
| Type of the auxiliary store. More... | |
Public Member Functions | |
| L2StandAloneMuonAuxContainer_v1 () | |
| Default constructor. | |
| 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. | |
| 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. | |
| 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. | |
| 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. | |
| template<typename T> | |
| void | regAuxVar (auxid_t auxid, const std::string &name, SG::PackedContainer< T > &vec) |
| Register one of the persistent variables internally. | |
Functions implementing the SG::IAuxStoreHolder interface | |
| virtual SG::IAuxStore * | getStore () override |
| Get the currently used internal store object. | |
| virtual const SG::IAuxStore * | getStore () const override |
| virtual void | setStore (SG::IAuxStore *store) override |
| Set a different internal store object. | |
| virtual AuxStoreType | getStoreType () const override |
| Return the type of the store object. | |
| std::pmr::memory_resource * | memResource () |
| Return the memory resource to use. | |
Functions implementing the SG::IConstAuxStore interface | |
| virtual const void * | getData (auxid_t auxid) const override |
| Get a pointer to a given array. | |
| virtual const SG::IAuxTypeVector * | getVector (SG::auxid_t auxid) const override final |
| Return vector interface for one aux data item. | |
| virtual const auxid_set_t & | getAuxIDs () const override |
| Get the types(names) of variables handled by this container. | |
| virtual const auxid_set_t & | getDecorIDs () const override |
| Get the types(names) of decorations handled by this container. | |
| virtual bool | isDecoration (auxid_t auxid) const override |
| Test if a variable is a decoration. | |
| virtual void * | getDecoration (auxid_t auxid, size_t size, size_t capacity) override |
| Get a pointer to a given array, as a decoration. | |
| virtual void | lock () override |
| Lock the container. | |
| virtual bool | clearDecorations () override |
| Clear all decorations. | |
| virtual size_t | size () const override |
| Get the size of the container. | |
| virtual void | lockDecoration (SG::auxid_t auxid) override |
| Lock a decoration. | |
| virtual const SG::IAuxTypeVector * | linkedVector (SG::auxid_t auxid) const override |
| Return interface for a linked variable. | |
Functions implementing the SG::IAuxStore interface | |
| virtual void * | getData (auxid_t auxid, size_t size, size_t capacity) override |
| Get a pointer to a given array, creating the array if necessary. | |
| virtual SG::IAuxTypeVector * | linkedVector (SG::auxid_t auxid) override |
| Return interface for a linked variable. | |
| virtual const auxid_set_t & | getWritableAuxIDs () const override |
| Return a set of writable data identifiers. | |
| virtual bool | resize (size_t size) override |
| Resize the arrays to a given size. | |
| virtual void | reserve (size_t size) override |
| Reserve a given size for the arrays. | |
| virtual void | shift (size_t pos, ptrdiff_t offs) override |
| Shift the contents of the stored arrays. | |
| virtual bool | insertMove (size_t pos, IAuxStore &other, const SG::auxid_set_t &ignore) override |
| Insert contents of another store via move. | |
| virtual bool | setOption (auxid_t id, const SG::AuxDataOption &option) override |
| Make an option setting on an aux variable. | |
Functions implementing the SG::IAuxStoreIO interface | |
| virtual const void * | getIOData (auxid_t auxid) const override |
| Get a pointer to the data being stored for one aux data item. | |
| virtual const std::type_info * | getIOType (auxid_t auxid) const override |
| Return the type of the data to be stored for one aux data item. | |
| virtual const auxid_set_t & | getDynamicAuxIDs () const override |
| Get the types(names) of variables created dynamically. | |
| virtual SG::auxid_set_t | getSelectedAuxIDs () const override |
| Get the IDs of the selected dynamic Aux variables (for writing) | |
Functions managing the instance name of the container | |
| const char * | name () const |
| Get the name of the container instance. | |
| void | setName (const char *name) |
| Set the name of the container instance. | |
Static Public Attributes | |
| static constexpr bool | supportsThinning = true |
| Mark that this type supports thinning operations. | |
Private Types | |
| typedef AthContainers_detail::mutex | mutex_t |
| Mutex for multithread synchronization. | |
| typedef AthContainers_detail::lock_guard< mutex_t > | guard_t |
Private Member Functions | |
| template<typename ELT, typename CONT> | |
| void | regAuxVar1 (auxid_t auxid, const std::string &name, CONT &vec) |
| Common code between regAuxVar cases. | |
Private Attributes | |
| auxid_set_t | m_auxids |
| Internal list of all available variables. | |
| std::vector< SG::IAuxTypeVector * > | m_vecs |
| Internal list of all managed variables. | |
| SG::IAuxStore * | m_store |
| Internal dynamic auxiliary store object. | |
| SG::IAuxStoreIO * | m_storeIO |
| The IO interface to the internal auxiliary store. | |
| bool | m_ownsStore |
| Flag deciding if the object owns the dynamic store or not. | |
| bool | m_locked |
| Has the container been locked? | |
| mutex_t | m_mutex |
| std::string | m_name |
| Name of the container in memory. Set externally. | |
| CxxUtils::CachedPointer< std::pmr::memory_resource > m_memResource | ATLAS_THREAD_SAFE |
| Memory resource to use for this container. | |
4-momentum variables | |
| std::vector< float > | pt |
| std::vector< float > | phi |
| std::vector< float > | eta |
L2 muon specific variables | |
Outputs of L2 muon standalone algorithm | |
| std::vector< uint32_t > | roiWord |
| std::vector< int > | sAddress |
| std::vector< float > | rMS |
| Position at MS. | |
| std::vector< float > | etaMS |
| std::vector< float > | phiMS |
| std::vector< float > | dirPhiMS |
| std::vector< float > | zMS |
| std::vector< float > | dirZMS |
| std::vector< float > | beta |
| std::vector< float > | barrelRadius |
| Input measurements to be converted to pT by LUT. | |
| std::vector< float > | barrelSagitta |
| std::vector< float > | endcapAlpha |
| std::vector< float > | endcapBeta |
| std::vector< float > | endcapRadius |
| std::vector< float > | slopeInner |
| Slope and intercept at inner. | |
| std::vector< float > | interceptInner |
| std::vector< float > | deltaR |
| std::vector< float > | etaMap |
| eta, phi as input to LUT | |
| std::vector< float > | phiMap |
| std::vector< int > | etaBin |
| std::vector< int > | phiBin |
| std::vector< int > | isTgcFailure |
| Flag for RGC and RPC availabilities. | |
| std::vector< int > | isRpcFailure |
| std::vector< float > | deltaPt |
| Error of pt, eta and phi. | |
| std::vector< float > | deltaEta |
| std::vector< float > | deltaPhi |
| std::vector< std::vector< float > > | superPointR |
| Station fit results (superpoints) | |
| std::vector< std::vector< float > > | superPointZ |
| std::vector< std::vector< float > > | superPointSlope |
| std::vector< std::vector< float > > | superPointIntercept |
| std::vector< std::vector< float > > | superPointChi2 |
| std::vector< std::vector< float > > | trackPositionR |
| Track positions. | |
| std::vector< std::vector< float > > | trackPositionZ |
| std::vector< std::vector< float > > | trackPositionEta |
| std::vector< std::vector< float > > | trackPositionPhi |
| std::vector< int > | algoId |
| Detailed information. | |
| std::vector< uint32_t > | teId |
| std::vector< uint32_t > | lvl1Id |
| std::vector< uint32_t > | lumiBlock |
| std::vector< uint32_t > | muonDetMask |
| std::vector< uint32_t > | roiId |
| std::vector< uint32_t > | roiSystem |
| std::vector< uint32_t > | roiSubsystem |
| std::vector< uint32_t > | roiSector |
| std::vector< uint32_t > | roiNumber |
| std::vector< uint32_t > | roiThreshold |
| std::vector< uint32_t > | roiEta |
| std::vector< uint32_t > | roiPhi |
| std::vector< float > | ptBarrelRadius |
| pT from different algorithms | |
| std::vector< float > | ptBarrelSagitta |
| std::vector< float > | ptEndcapAlpha |
| std::vector< float > | ptEndcapBeta |
| std::vector< float > | ptEndcapRadius |
| std::vector< std::vector< int > > | chamberType1Normal |
| Road information Chamber type. | |
| std::vector< std::vector< int > > | chamberType1Overlap |
| std::vector< std::vector< int > > | chamberType2Normal |
| std::vector< std::vector< int > > | chamberType2Overlap |
| std::vector< std::vector< float > > | roadAwNormal |
| Slope. | |
| std::vector< std::vector< float > > | roadAwOverlap |
| std::vector< std::vector< float > > | roadBwNormal |
| Intercept. | |
| std::vector< std::vector< float > > | roadBwOverlap |
| std::vector< std::vector< float > > | zMinNormal |
| Z. | |
| std::vector< std::vector< float > > | zMinOverlap |
| std::vector< std::vector< float > > | zMaxNormal |
| std::vector< std::vector< float > > | zMaxOverlap |
| std::vector< std::vector< float > > | rMinNormal |
| R. | |
| std::vector< std::vector< float > > | rMinOverlap |
| std::vector< std::vector< float > > | rMaxNormal |
| std::vector< std::vector< float > > | rMaxOverlap |
| std::vector< std::vector< float > > | etaMinNormal |
| Eta. | |
| std::vector< std::vector< float > > | etaMinOverlap |
| std::vector< std::vector< float > > | etaMaxNormal |
| std::vector< std::vector< float > > | etaMaxOverlap |
| std::vector< float > | tgcPt |
| TGC fit results. | |
| std::vector< float > | tgcInnEta |
| std::vector< float > | tgcInnPhi |
| std::vector< float > | tgcInnR |
| std::vector< float > | tgcInnZ |
| std::vector< float > | tgcMid1Eta |
| std::vector< float > | tgcMid1Phi |
| std::vector< float > | tgcMid1R |
| std::vector< float > | tgcMid1Z |
| std::vector< float > | tgcMid2Eta |
| std::vector< float > | tgcMid2Phi |
| std::vector< float > | tgcMid2R |
| std::vector< float > | tgcMid2Z |
| std::vector< float > | tgcInnRhoStd |
| std::vector< long > | tgcInnRhoN |
| std::vector< float > | tgcInnPhiStd |
| std::vector< long > | tgcInnPhiN |
| std::vector< float > | tgcMidRhoChi2 |
| std::vector< long > | tgcMidRhoN |
| std::vector< float > | tgcMidPhiChi2 |
| std::vector< long > | tgcMidPhiN |
| std::vector< float > | rpc1x |
| RPC fit results. | |
| std::vector< float > | rpc1y |
| std::vector< float > | rpc1z |
| std::vector< float > | rpc2x |
| std::vector< float > | rpc2y |
| std::vector< float > | rpc2z |
| std::vector< float > | rpc3x |
| std::vector< float > | rpc3y |
| std::vector< float > | rpc3z |
| std::vector< int > | extensionCapacity |
| Size of hit strages. | |
| std::vector< int > | robCapacity |
| std::vector< int > | csmCapacity |
| std::vector< int > | lvl1EmuCapacity |
| std::vector< int > | rpcHitsCapacity |
| std::vector< int > | tgcHitsCapacity |
| std::vector< int > | mdtHitsCapacity |
| std::vector< std::vector< uint32_t > > | extension0 |
| Extensions. | |
| std::vector< std::vector< uint32_t > > | extension1 |
| std::vector< std::vector< uint32_t > > | extension2 |
| std::vector< std::vector< uint32_t > > | extension3 |
| std::vector< std::vector< uint32_t > > | extension4 |
| std::vector< std::vector< uint32_t > > | extension5 |
| std::vector< std::vector< uint32_t > > | extension6 |
| std::vector< std::vector< uint32_t > > | extension7 |
| std::vector< std::vector< uint32_t > > | extension8 |
| std::vector< std::vector< uint32_t > > | extension9 |
| std::vector< std::vector< uint32_t > > | lvl1Emulation |
| Level 1 emulation info. | |
| std::vector< std::vector< uint32_t > > | robId |
| ROB info. | |
| std::vector< std::vector< uint32_t > > | removedRobId |
| std::vector< std::vector< uint32_t > > | csmId |
| CSM info. | |
| std::vector< std::vector< uint32_t > > | csmSize |
| std::vector< std::vector< uint32_t > > | csmError |
| std::vector< std::vector< uint32_t > > | removedCsmId |
| std::vector< std::vector< uint32_t > > | padHitOnlineId |
| RPC pad hits. | |
| std::vector< std::vector< uint32_t > > | padHitCode |
| std::vector< std::vector< float > > | padHitX |
| std::vector< std::vector< float > > | padHitY |
| std::vector< std::vector< float > > | padHitZ |
| std::vector< std::vector< float > > | padHitR |
| std::vector< std::vector< float > > | padHitP |
| std::vector< std::vector< float > > | tgcInnRhoHitPhi |
| TGC hits. | |
| std::vector< std::vector< float > > | tgcInnRhoHitR |
| std::vector< std::vector< float > > | tgcInnRhoHitZ |
| std::vector< std::vector< float > > | tgcInnRhoHitWidth |
| std::vector< std::vector< uint32_t > > | tgcInnRhoHitInSeg |
| std::vector< std::vector< float > > | tgcInnPhiHitPhi |
| std::vector< std::vector< float > > | tgcInnPhiHitR |
| std::vector< std::vector< float > > | tgcInnPhiHitZ |
| std::vector< std::vector< float > > | tgcInnPhiHitWidth |
| std::vector< std::vector< uint32_t > > | tgcInnPhiHitInSeg |
| std::vector< std::vector< float > > | tgcMidRhoHitPhi |
| std::vector< std::vector< float > > | tgcMidRhoHitR |
| std::vector< std::vector< float > > | tgcMidRhoHitZ |
| std::vector< std::vector< float > > | tgcMidRhoHitWidth |
| std::vector< std::vector< uint32_t > > | tgcMidRhoHitInSeg |
| std::vector< std::vector< float > > | tgcMidPhiHitPhi |
| std::vector< std::vector< float > > | tgcMidPhiHitR |
| std::vector< std::vector< float > > | tgcMidPhiHitZ |
| std::vector< std::vector< float > > | tgcMidPhiHitWidth |
| std::vector< std::vector< uint32_t > > | tgcMidPhiHitInSeg |
| std::vector< std::vector< uint32_t > > | mdtHitOnlineId |
| MDT hits. | |
| std::vector< std::vector< uint32_t > > | mdtHitOfflineId |
| std::vector< std::vector< uint32_t > > | mdtHitChamber |
| std::vector< std::vector< float > > | mdtHitR |
| std::vector< std::vector< float > > | mdtHitZ |
| std::vector< std::vector< float > > | mdtHitResidual |
| std::vector< std::vector< float > > | mdtHitTime |
| std::vector< std::vector< float > > | mdtHitSpace |
| std::vector< std::vector< float > > | mdtHitSigma |
Auxiliary container for muon SA containers.
This is a fixed implementation of the muon SA auxiliary store. Defining every possible property that muon SA can have.
$Revsision$
Definition at line 32 of file L2StandAloneMuonAuxContainer_v1.h.
|
inherited |
The aux ID set type definition.
Definition at line 61 of file AuxContainerBase.h.
|
inherited |
The aux ID type definition.
Definition at line 59 of file AuxContainerBase.h.
|
inherited |
Declare how to wrap variables for this sort of base.
Definition at line 191 of file AuxContainerBase.h.
|
privateinherited |
Definition at line 243 of file AuxContainerBase.h.
|
inherited |
Definition at line 193 of file AuxContainerBase.h.
|
privateinherited |
Mutex for multithread synchronization.
Definition at line 242 of file AuxContainerBase.h.
|
inherited |
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.
| xAOD::L2StandAloneMuonAuxContainer_v1::L2StandAloneMuonAuxContainer_v1 | ( | ) |
Default constructor.
Definition at line 10 of file L2StandAloneMuonAuxContainer_v1.cxx.
|
overridevirtualinherited |
Clear all decorations.
Implements SG::IConstAuxStore.
Definition at line 359 of file AuxContainerBase.cxx.
|
inherited |
Get the auxiliary ID for one of the persistent variables.
|
inherited |
Get the auxiliary ID for one of the persistent variables.
|
overridevirtualinherited |
Get the types(names) of variables handled by this container.
Implements SG::IConstAuxStore.
Definition at line 277 of file AuxContainerBase.cxx.
|
overridevirtualinherited |
Get a pointer to a given array.
Implements SG::IConstAuxStore.
Definition at line 232 of file AuxContainerBase.cxx.
|
overridevirtualinherited |
Get a pointer to a given array, creating the array if necessary.
Implements SG::IAuxStore.
Definition at line 464 of file AuxContainerBase.cxx.
|
overridevirtualinherited |
Get a pointer to a given array, as a decoration.
Implements SG::IConstAuxStore.
Reimplemented in xAOD::EventInfoAuxContainer_v1.
Definition at line 302 of file AuxContainerBase.cxx.
|
overridevirtualinherited |
Get the types(names) of decorations handled by this container.
Implements SG::IConstAuxStore.
Definition at line 284 of file AuxContainerBase.cxx.
|
overridevirtualinherited |
Get the types(names) of variables created dynamically.
Implements SG::IAuxStoreIO.
Definition at line 703 of file AuxContainerBase.cxx.
|
overridevirtualinherited |
Get a pointer to the data being stored for one aux data item.
Implements SG::IAuxStoreIO.
Definition at line 661 of file AuxContainerBase.cxx.
|
overridevirtualinherited |
Return the type of the data to be stored for one aux data item.
Implements SG::IAuxStoreIO.
Definition at line 686 of file AuxContainerBase.cxx.
|
overridevirtualinherited |
Get the IDs of the selected dynamic Aux variables (for writing)
Reimplemented from SG::IAuxStoreIO.
Definition at line 723 of file AuxContainerBase.cxx.
|
overridevirtualinherited |
Implements SG::IAuxStoreHolder.
Definition at line 183 of file AuxContainerBase.cxx.
|
overridevirtualinherited |
Get the currently used internal store object.
Implements SG::IAuxStoreHolder.
Definition at line 156 of file AuxContainerBase.cxx.
|
inlineoverridevirtualinherited |
Return the type of the store object.
Implements SG::IAuxStoreHolder.
Definition at line 88 of file AuxContainerBase.h.
|
finaloverridevirtualinherited |
Return vector interface for one aux data item.
Implements SG::IConstAuxStore.
Definition at line 241 of file AuxContainerBase.cxx.
|
overridevirtualinherited |
Return a set of writable data identifiers.
Implements SG::IAuxStore.
Definition at line 500 of file AuxContainerBase.cxx.
|
pure virtualinherited |
Move all elements from other to this store.
| 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.
|
overridevirtualinherited |
Insert contents of another store via move.
Definition at line 586 of file AuxContainerBase.cxx.
Test if a variable is a decoration.
Implements SG::IConstAuxStore.
Reimplemented in xAOD::EventInfoAuxContainer_v1.
Definition at line 293 of file AuxContainerBase.cxx.
|
overridevirtualinherited |
Return interface for a linked variable.
Reimplemented from SG::IConstAuxStore.
Definition at line 398 of file AuxContainerBase.cxx.
|
overridevirtualinherited |
Return interface for a linked variable.
Reimplemented from SG::IAuxStore.
Definition at line 415 of file AuxContainerBase.cxx.
|
overridevirtualinherited |
Lock the container.
Implements SG::IConstAuxStore.
Definition at line 345 of file AuxContainerBase.cxx.
|
overridevirtualinherited |
Lock a decoration.
Implements SG::IConstAuxStore.
Reimplemented in xAOD::EventInfoAuxContainer_v1.
Definition at line 389 of file AuxContainerBase.cxx.
|
inherited |
Return the memory resource to use.
Definition at line 161 of file AuxContainerBase.cxx.
|
inherited |
Get the name of the container instance.
Definition at line 745 of file AuxContainerBase.cxx.
|
inherited |
Register one of the persistent variables internally.
|
inherited |
Register one of the persistent variables internally.
|
privateinherited |
Common code between regAuxVar cases.
|
overridevirtualinherited |
Reserve a given size for the arrays.
Implements SG::IAuxStore.
Definition at line 535 of file AuxContainerBase.cxx.
|
overridevirtualinherited |
Resize the arrays to a given size.
Implements SG::IAuxStore.
Definition at line 507 of file AuxContainerBase.cxx.
|
inherited |
Set the name of the container instance.
Definition at line 750 of file AuxContainerBase.cxx.
|
overridevirtualinherited |
Make an option setting on an aux variable.
Reimplemented from SG::IAuxStore.
Definition at line 640 of file AuxContainerBase.cxx.
|
overridevirtualinherited |
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.
| store | The store that should be used for dynamic variable handling inside the object from now on |
Implements SG::IAuxStoreHolder.
Definition at line 197 of file AuxContainerBase.cxx.
|
overridevirtualinherited |
Shift the contents of the stored arrays.
Implements SG::IAuxStore.
Definition at line 560 of file AuxContainerBase.cxx.
|
overridevirtualinherited |
Get the size of the container.
Implements SG::IConstAuxStore.
Definition at line 432 of file AuxContainerBase.cxx.
|
private |
Detailed information.
Definition at line 97 of file L2StandAloneMuonAuxContainer_v1.h.
|
mutableprivateinherited |
Memory resource to use for this container.
Definition at line 250 of file AuxContainerBase.h.
|
private |
Input measurements to be converted to pT by LUT.
Definition at line 60 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 61 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 58 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Road information Chamber type.
Definition at line 120 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 121 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 122 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 123 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 190 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 218 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
CSM info.
Definition at line 216 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 217 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 80 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 81 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Error of pt, eta and phi.
Definition at line 79 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 68 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 55 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 57 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 62 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 63 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 64 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 43 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 73 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
eta, phi as input to LUT
Definition at line 71 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 143 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 144 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Eta.
Definition at line 141 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 142 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 53 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Extensions.
Definition at line 197 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 198 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 199 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 200 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 201 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 202 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 203 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 204 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 205 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 206 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Size of hit strages.
Definition at line 188 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 67 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 77 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Flag for RGC and RPC availabilities.
Definition at line 76 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 100 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 191 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Level 1 emulation info.
Definition at line 209 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 99 of file L2StandAloneMuonAuxContainer_v1.h.
|
privateinherited |
Internal list of all available variables.
Definition at line 228 of file AuxContainerBase.h.
|
privateinherited |
Has the container been locked?
Definition at line 239 of file AuxContainerBase.h.
|
mutableprivateinherited |
Definition at line 244 of file AuxContainerBase.h.
|
privateinherited |
Name of the container in memory. Set externally.
Definition at line 247 of file AuxContainerBase.h.
|
privateinherited |
Flag deciding if the object owns the dynamic store or not.
Definition at line 237 of file AuxContainerBase.h.
|
privateinherited |
Internal dynamic auxiliary store object.
Definition at line 233 of file AuxContainerBase.h.
|
privateinherited |
The IO interface to the internal auxiliary store.
Definition at line 235 of file AuxContainerBase.h.
|
privateinherited |
Internal list of all managed variables.
Definition at line 230 of file AuxContainerBase.h.
|
private |
Definition at line 255 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 254 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
MDT hits.
Definition at line 253 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 256 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 258 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 194 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 261 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 260 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 259 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 257 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 101 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 223 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
RPC pad hits.
Definition at line 222 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 228 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 227 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 224 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 225 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 226 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 42 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 74 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 72 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 54 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 41 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
pT from different algorithms
Definition at line 112 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 113 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 114 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 115 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 116 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 219 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 213 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 138 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 139 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
R.
Definition at line 136 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 137 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Position at MS.
Definition at line 52 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Slope.
Definition at line 125 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 126 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Intercept.
Definition at line 128 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 129 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 189 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
ROB info.
Definition at line 212 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 108 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 102 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 106 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 109 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 105 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 104 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 103 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 107 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 49 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
RPC fit results.
Definition at line 175 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 176 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 177 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 179 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 180 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 181 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 183 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 184 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 185 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 192 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 50 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Slope and intercept at inner.
Definition at line 66 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 88 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 87 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Station fit results (superpoints)
Definition at line 84 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 86 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 85 of file L2StandAloneMuonAuxContainer_v1.h.
|
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.
|
private |
Definition at line 98 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 193 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 149 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 150 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 240 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 236 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 237 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 239 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 238 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 167 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 166 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 151 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 235 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
TGC hits.
Definition at line 231 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 232 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 234 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 233 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 165 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 164 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 152 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 154 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 155 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 156 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 157 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 159 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 160 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 161 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 162 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 171 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 250 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 246 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 247 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 249 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 248 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 172 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 169 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 245 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 241 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 242 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 244 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 243 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 170 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
TGC fit results.
Definition at line 147 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 93 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 94 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Track positions.
Definition at line 91 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 92 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 133 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 134 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Z.
Definition at line 131 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 132 of file L2StandAloneMuonAuxContainer_v1.h.
|
private |
Definition at line 56 of file L2StandAloneMuonAuxContainer_v1.h.