Loading [MathJax]/extensions/tex2jax.js
 |
ATLAS Offline Software
|
creates a jet::TrackVertexAssociation object
More...
#include <JetTrackVtxAssoAlg.h>
|
| JetTrackVtxAssoAlg (const std::string &n, ISvcLocator *l) |
|
StatusCode | initialize () override |
| Athena algorithm's Hooks. More...
|
|
StatusCode | execute (const EventContext &ctx) const override |
|
virtual StatusCode | sysInitialize () override |
| Override sysInitialize. More...
|
|
virtual bool | isClonable () const override |
| Specify if the algorithm is clonable. More...
|
|
virtual unsigned int | cardinality () const override |
| Cardinality (Maximum number of clones that can exist) special value 0 means that algorithm is reentrant. More...
|
|
virtual StatusCode | sysExecute (const EventContext &ctx) override |
| Execute an algorithm. More...
|
|
virtual const DataObjIDColl & | extraOutputDeps () const override |
| Return the list of extra output dependencies. More...
|
|
virtual bool | filterPassed (const EventContext &ctx) const |
|
virtual void | setFilterPassed (bool state, const EventContext &ctx) const |
|
ServiceHandle< StoreGateSvc > & | evtStore () |
| The standard StoreGateSvc (event store) Returns (kind of) a pointer to the StoreGateSvc . More...
|
|
const ServiceHandle< StoreGateSvc > & | evtStore () const |
| The standard StoreGateSvc (event store) Returns (kind of) a pointer to the StoreGateSvc . More...
|
|
const ServiceHandle< StoreGateSvc > & | detStore () const |
| The standard StoreGateSvc/DetectorStore Returns (kind of) a pointer to the StoreGateSvc . More...
|
|
virtual StatusCode | sysStart () override |
| Handle START transition. More...
|
|
virtual std::vector< Gaudi::DataHandle * > | inputHandles () const override |
| Return this algorithm's input handles. More...
|
|
virtual std::vector< Gaudi::DataHandle * > | outputHandles () const override |
| Return this algorithm's output handles. More...
|
|
Gaudi::Details::PropertyBase & | declareProperty (Gaudi::Property< T > &t) |
|
Gaudi::Details::PropertyBase * | declareProperty (const std::string &name, SG::VarHandleKey &hndl, const std::string &doc, const SG::VarHandleKeyType &) |
| Declare a new Gaudi property. More...
|
|
Gaudi::Details::PropertyBase * | declareProperty (const std::string &name, SG::VarHandleBase &hndl, const std::string &doc, const SG::VarHandleType &) |
| Declare a new Gaudi property. More...
|
|
Gaudi::Details::PropertyBase * | declareProperty (const std::string &name, SG::VarHandleKeyArray &hndArr, const std::string &doc, const SG::VarHandleKeyArrayType &) |
|
Gaudi::Details::PropertyBase * | declareProperty (const std::string &name, T &property, const std::string &doc, const SG::NotHandleType &) |
| Declare a new Gaudi property. More...
|
|
Gaudi::Details::PropertyBase * | declareProperty (const std::string &name, T &property, const std::string &doc="none") |
| Declare a new Gaudi property. More...
|
|
void | updateVHKA (Gaudi::Details::PropertyBase &) |
|
MsgStream & | msg () const |
|
MsgStream & | msg (const MSG::Level lvl) const |
|
bool | msgLvl (const MSG::Level lvl) const |
|
|
ToolHandle< CP::ITrackVertexAssociationTool > | m_tvaTool {this, "TrackVertexAssoTool", "", "CP::ITrackVertexAssociationTool instance" } |
|
Gaudi::Property< float > | m_transDistMax = {this, "MaxTransverseDistance",10e6, ""} |
|
Gaudi::Property< float > | m_longDistMax = {this , "MaxLongitudinalDistance",10e6 , ""} |
|
Gaudi::Property< float > | m_maxZ0SinTheta = {this, "MaxZ0SinTheta", 10e6, ""} |
|
SG::ReadHandleKey< xAOD::TrackParticleContainer > | m_trackContainer_key = {this, "TrackParticleContainer", "" , "" } |
|
SG::ReadHandleKey< xAOD::VertexContainer > | m_vertexContainer_key = {this, "VertexContainer", "" , "" } |
|
SG::WriteHandleKey< jet::TrackVertexAssociation > | m_tva_key = {this, "TrackVertexAssociation", "" , "Output name of jet::TrackVertexAssociation" } |
|
DataObjIDColl | m_extendedExtraObjects |
| Extra output dependency collection, extended by AthAlgorithmDHUpdate to add symlinks. More...
|
|
StoreGateSvc_t | m_evtStore |
| Pointer to StoreGate (event store by default) More...
|
|
StoreGateSvc_t | m_detStore |
| Pointer to StoreGate (detector store by default) More...
|
|
std::vector< SG::VarHandleKeyArray * > | m_vhka |
|
bool | m_varHandleArraysDeclared |
|
creates a jet::TrackVertexAssociation object
Creates a jet::TrackVertexAssociation map. The tool expects a ITrackVertexAssociationTool which it uses to create the map from a TrackParticleContainer and a VertexContainer. The map is recorded in the evtStore.
Properties :
- "TrackParticleContainer" : name of TrackParticleContainer
- "VertexContainer" : name of VertexContainer
- "TrackVertexAssociation" : name of the output jet::TrackVertexAssociation
- "TrackVertexAssoTool" : A ITrackVertexAssociationTool instance
If the TrackVertexAssoTool is left blank, the old custom method is used to build the code using cuts defined by these properties
- "MaxTransverseDistance",
- "MaxLongitudinalDistance"
- "MaxZ0SinTheta" This old part of the code may disappear in the future.
Definition at line 45 of file JetTrackVtxAssoAlg.h.
◆ StoreGateSvc_t
◆ JetTrackVtxAssoAlg()
JetTrackVtxAssoAlg::JetTrackVtxAssoAlg |
( |
const std::string & |
n, |
|
|
ISvcLocator * |
l |
|
) |
| |
|
inline |
◆ buildTrackVertexAssociation_custom()
Definition at line 124 of file JetTrackVtxAssoAlg.cxx.
127 <<
" vtx size="<< vertexContainer->
size());
129 auto tva = std::make_unique<jet::TrackVertexAssociation>(
trackContainer);
131 for (
size_t iTrack = 0; iTrack <
trackContainer->size(); ++iTrack)
136 const float transverseDistance =
track->d0();
141 const float longitudinalDistance =
track->z0()+
track->vz();
146 size_t matchedIndex = 0;
147 bool foundMatch =
false;
148 for (
size_t iVertex = 0; iVertex < vertexContainer->
size(); ++iVertex)
152 double deltaz = longitudinalDistance -
vertex->z();
165 matchedIndex = iVertex;
171 tva->associate(
trackContainer->at(iTrack),vertexContainer->
at(matchedIndex));
◆ buildTrackVertexAssociation_withTool()
Definition at line 102 of file JetTrackVtxAssoAlg.cxx.
106 <<
" vtx size="<< vertexContainer->
size());
108 auto tva = std::make_unique<jet::TrackVertexAssociation>(
trackContainer);
110 std::vector<const xAOD::Vertex*> vecVert;
111 vecVert.assign(vertexContainer->
begin(), vertexContainer->
end());
116 tva->associate(
track,
v );
◆ cardinality()
Cardinality (Maximum number of clones that can exist) special value 0 means that algorithm is reentrant.
Override this to return 0 for reentrant algorithms.
Override this to return 0 for reentrant algorithms.
Definition at line 75 of file AthCommonReentrantAlgorithm.cxx.
◆ declareGaudiProperty() [1/4]
specialization for handling Gaudi::Property<SG::VarHandleKeyArray>
Definition at line 170 of file AthCommonDataStore.h.
175 hndl.documentation());
◆ declareGaudiProperty() [2/4]
specialization for handling Gaudi::Property<SG::VarHandleKey>
Definition at line 156 of file AthCommonDataStore.h.
161 hndl.documentation());
◆ declareGaudiProperty() [3/4]
specialization for handling Gaudi::Property<SG::VarHandleBase>
Definition at line 184 of file AthCommonDataStore.h.
189 hndl.documentation());
◆ declareGaudiProperty() [4/4]
◆ declareProperty() [1/6]
Declare a new Gaudi property.
- Parameters
-
name | Name of the property. |
hndl | Object holding the property value. |
doc | Documentation string for the property. |
This is the version for types that derive from SG::VarHandleBase
. The property value object is put on the input and output lists as appropriate; then we forward to the base class.
Definition at line 245 of file AthCommonDataStore.h.
250 this->declare(hndl.
vhKey());
251 hndl.
vhKey().setOwner(
this);
◆ declareProperty() [2/6]
Declare a new Gaudi property.
- Parameters
-
name | Name of the property. |
hndl | Object holding the property value. |
doc | Documentation string for the property. |
This is the version for types that derive from SG::VarHandleKey
. The property value object is put on the input and output lists as appropriate; then we forward to the base class.
Definition at line 221 of file AthCommonDataStore.h.
◆ declareProperty() [3/6]
◆ declareProperty() [4/6]
Declare a new Gaudi property.
- Parameters
-
name | Name of the property. |
property | Object holding the property value. |
doc | Documentation string for the property. |
This is the generic version, for types that do not derive from SG::VarHandleKey
. It just forwards to the base class version of declareProperty
.
Definition at line 333 of file AthCommonDataStore.h.
◆ declareProperty() [5/6]
Declare a new Gaudi property.
- Parameters
-
name | Name of the property. |
property | Object holding the property value. |
doc | Documentation string for the property. |
This dispatches to either the generic declareProperty
or the one for VarHandle/Key/KeyArray.
Definition at line 352 of file AthCommonDataStore.h.
◆ declareProperty() [6/6]
◆ detStore()
◆ evtStore() [1/2]
◆ evtStore() [2/2]
◆ execute()
StatusCode JetTrackVtxAssoAlg::execute |
( |
const EventContext & |
ctx | ) |
const |
|
override |
Definition at line 31 of file JetTrackVtxAssoAlg.cxx.
37 if(!handle_tracks.isValid()){
38 ATH_MSG_ERROR(
"Error retrieving TrackParticleContainer from evtStore: "
40 return StatusCode::FAILURE;
48 bool oneOwningContainer(
true);
51 oneOwningContainer=
false;
55 if(!oneOwningContainer) {
56 ATH_MSG_ERROR(
"Track view container holds track from multiple owning containers.");
58 return StatusCode::FAILURE;
65 if(!handle_vert.isValid()){
66 ATH_MSG_ERROR(
"Error retrieving VertexContainer from evtStore: "
68 return StatusCode::FAILURE;
71 const auto *vertexContainer = handle_vert.cptr();
80 return StatusCode::FAILURE;
86 if(!handle_tva.record(std::move(tva))){
87 ATH_MSG_ERROR(
"Unable to write new TrackVertexAssociation to evtStore: "
89 return StatusCode::FAILURE;
93 ATH_MSG_DEBUG(
"Wrote new TrackVertexAssociation to evtStore: "
95 return StatusCode::SUCCESS;
◆ extraDeps_update_handler()
Add StoreName to extra input/output deps as needed.
use the logic of the VarHandleKey to parse the DataObjID keys supplied via the ExtraInputs and ExtraOuputs Properties to add the StoreName if it's not explicitly given
◆ extraOutputDeps()
Return the list of extra output dependencies.
This list is extended to include symlinks implied by inheritance relations.
Definition at line 94 of file AthCommonReentrantAlgorithm.cxx.
◆ filterPassed()
◆ finalize()
StatusCode EL::AnaReentrantAlgorithm::finalize |
( |
| ) |
|
|
protectedinherited |
finalize this algorithm
This gets called after event processing has finished. The last event may no longer be in memory, and the code should not try to access it.
Definition at line 102 of file AnaReentrantAlgorithm.cxx.
105 return StatusCode::SUCCESS;
◆ initialize()
StatusCode JetTrackVtxAssoAlg::initialize |
( |
| ) |
|
|
override |
◆ inputHandles()
Return this algorithm's input handles.
We override this to include handle instances from key arrays if they have not yet been declared. See comments on updateVHKA.
◆ isClonable()
◆ makeTrackVertexAssociation()
◆ msg() [1/2]
◆ msg() [2/2]
◆ msgLvl()
◆ outputHandles()
Return this algorithm's output handles.
We override this to include handle instances from key arrays if they have not yet been declared. See comments on updateVHKA.
◆ renounce()
◆ renounceArray()
◆ setFilterPassed()
◆ sysExecute()
Execute an algorithm.
We override this in order to work around an issue with the Algorithm base class storing the event context in a member variable that can cause crashes in MT jobs.
Definition at line 85 of file AthCommonReentrantAlgorithm.cxx.
◆ sysInitialize()
Override sysInitialize.
Override sysInitialize from the base class.
Loop through all output handles, and if they're WriteCondHandles, automatically register them and this Algorithm with the CondSvc
Scan through all outputHandles, and if they're WriteCondHandles, register them with the CondSvc
Reimplemented from AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >.
Reimplemented in InputMakerBase, and HypoBase.
Definition at line 61 of file AthCommonReentrantAlgorithm.cxx.
110 if (
sc.isFailure()) {
118 if ( cs.retrieve().isFailure() ) {
120 return StatusCode::SUCCESS;
122 if (cs->regHandle(
this,*
h).isFailure()) {
123 sc = StatusCode::FAILURE;
124 ATH_MSG_ERROR(
"unable to register WriteCondHandle " <<
h->fullKey()
◆ sysStart()
Handle START transition.
We override this in order to make sure that conditions handle keys can cache a pointer to the conditions container.
◆ updateVHKA()
◆ m_detStore
◆ m_evtStore
◆ m_extendedExtraObjects
Extra output dependency collection, extended by AthAlgorithmDHUpdate to add symlinks.
Empty if no symlinks were found.
Definition at line 114 of file AthCommonReentrantAlgorithm.h.
◆ m_longDistMax
Gaudi::Property<float> JetTrackVtxAssoAlg::m_longDistMax = {this , "MaxLongitudinalDistance",10e6 , ""} |
|
private |
◆ m_maxZ0SinTheta
Gaudi::Property<float> JetTrackVtxAssoAlg::m_maxZ0SinTheta = {this, "MaxZ0SinTheta", 10e6, ""} |
|
private |
◆ m_trackContainer_key
◆ m_transDistMax
Gaudi::Property<float> JetTrackVtxAssoAlg::m_transDistMax = {this, "MaxTransverseDistance",10e6, ""} |
|
private |
◆ m_tva_key
◆ m_tvaTool
◆ m_varHandleArraysDeclared
◆ m_vertexContainer_key
◆ m_vhka
The documentation for this class was generated from the following files:
Gaudi::Details::PropertyBase & declareProperty(Gaudi::Property< T > &t)
std::enable_if_t< std::is_void_v< std::result_of_t< decltype(&T::renounce)(T)> > &&!std::is_base_of_v< SG::VarHandleKeyArray, T > &&std::is_base_of_v< Gaudi::DataHandle, T >, void > renounce(T &h)
StoreGateSvc_t m_evtStore
Pointer to StoreGate (event store by default)
std::vector< SG::VarHandleKeyArray * > m_vhka
ToolHandle< CP::ITrackVertexAssociationTool > m_tvaTool
const std::string & key() const
Return the StoreGate ID for the referenced object.
SG::ReadHandleKey< xAOD::VertexContainer > m_vertexContainer_key
virtual void setOwner(IDataHandleHolder *o)=0
SG::ReadCondHandle< T > makeHandle(const SG::ReadCondHandleKey< T > &key, const EventContext &ctx=Gaudi::Hive::currentContext())
virtual const DataObjIDColl & extraOutputDeps() const override
Return the list of extra output dependencies.
SG::ReadHandleKey< xAOD::TrackParticleContainer > m_trackContainer_key
virtual std::vector< Gaudi::DataHandle * > outputHandles() const override
Return this algorithm's output handles.
@ OWN_ELEMENTS
this data object owns its elements
::StatusCode StatusCode
StatusCode definition for legacy code.
virtual StatusCode sysExecute(const EventContext &ctx) override
Execute an algorithm.
StoreGateSvc_t m_detStore
Pointer to StoreGate (detector store by default)
std::unique_ptr< jet::TrackVertexAssociation > buildTrackVertexAssociation_withTool(const xAOD::TrackParticleContainer *, const xAOD::VertexContainer *) const
StatusCode initialize(bool used=true)
If this object is used as a property, then this should be called during the initialize phase.
virtual void renounce()=0
std::conditional< std::is_base_of< SG::VarHandleKeyArray, T >::value, VarHandleKeyArrayType, type2 >::type type
the base class for EventLoop reentrant algorithms
std::unique_ptr< jet::TrackVertexAssociation > buildTrackVertexAssociation_custom(const xAOD::TrackParticleContainer *, const xAOD::VertexContainer *) const
Gaudi::Property< float > m_transDistMax
const_iterator end() const noexcept
Return a const_iterator pointing past the end of the collection.
Class describing a Vertex.
#define ATH_MSG_WARNING(x)
SG::VarHandleKey & vhKey()
Return a non-const reference to the HandleKey.
virtual StatusCode sysInitialize() override
Override sysInitialize.
SG::WriteHandleKey< jet::TrackVertexAssociation > m_tva_key
Class describing a TrackParticle.
const T * at(size_type n) const
Access an element, as an rvalue.
DataObjIDColl m_extendedExtraObjects
Extra output dependency collection, extended by AthAlgorithmDHUpdate to add symlinks.
size_type size() const noexcept
Returns the number of elements in the collection.
Gaudi::Details::PropertyBase & declareGaudiProperty(Gaudi::Property< T > &hndl, const SG::VarHandleKeyType &)
specialization for handling Gaudi::Property<SG::VarHandleKey>
Gaudi::Property< float > m_maxZ0SinTheta
std::unique_ptr< jet::TrackVertexAssociation > makeTrackVertexAssociation(const xAOD::TrackParticleContainer *, const xAOD::VertexContainer *, bool useCustom) const
Gaudi::Property< float > m_longDistMax
const_iterator begin() const noexcept
Return a const_iterator pointing at the beginning of the collection.