|
ATLAS Offline Software
|
InDet::SiSPGNNTrackMaker is an algorithm that uses the GNN-based track finding tool to reconstruct tracks and the use track fitter to obtain track parameters. It turns a collection of Trk::Tracks.
More...
#include <SiSPGNNTrackMaker.h>
|
| SiSPGNNTrackMaker (const std::string &name, ISvcLocator *pSvcLocator) |
|
virtual StatusCode | initialize () override |
|
virtual StatusCode | execute (const EventContext &ctx) const override |
|
virtual bool | isClonable () const override |
| Make this algorithm clonable. More...
|
|
MsgStream & | dump (MsgStream &out) const |
|
std::ostream & | dump (std::ostream &out) const |
|
virtual StatusCode | sysInitialize () override |
| Override sysInitialize. 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 |
|
InDet::SiSPGNNTrackMaker is an algorithm that uses the GNN-based track finding tool to reconstruct tracks and the use track fitter to obtain track parameters. It turns a collection of Trk::Tracks.
- Author
- xiang.nosp@m.yang.nosp@m..ju@c.nosp@m.ern..nosp@m.ch
Definition at line 39 of file SiSPGNNTrackMaker.h.
◆ StoreGateSvc_t
◆ SiSPGNNTrackMaker()
InDet::SiSPGNNTrackMaker::SiSPGNNTrackMaker |
( |
const std::string & |
name, |
|
|
ISvcLocator * |
pSvcLocator |
|
) |
| |
◆ cardinality()
unsigned int AthReentrantAlgorithm::cardinality |
( |
| ) |
const |
|
overridevirtualinherited |
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 55 of file AthReentrantAlgorithm.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()
◆ dump() [1/2]
MsgStream & InDet::SiSPGNNTrackMaker::dump |
( |
MsgStream & |
out | ) |
const |
◆ dump() [2/2]
std::ostream & InDet::SiSPGNNTrackMaker::dump |
( |
std::ostream & |
out | ) |
const |
◆ dumpevent()
MsgStream & InDet::SiSPGNNTrackMaker::dumpevent |
( |
MsgStream & |
out | ) |
const |
|
protected |
◆ dumptools()
MsgStream & InDet::SiSPGNNTrackMaker::dumptools |
( |
MsgStream & |
out | ) |
const |
|
protected |
Definition at line 214 of file SiSPGNNTrackMaker.cxx.
216 out<<
"| Location of output tracks | "
218 out<<
"|----------------------------------------------------------------"
219 <<
"----------------------------------------------------|"
◆ evtStore() [1/2]
◆ evtStore() [2/2]
◆ execute()
StatusCode InDet::SiSPGNNTrackMaker::execute |
( |
const EventContext & |
ctx | ) |
const |
|
overridevirtual |
Definition at line 48 of file SiSPGNNTrackMaker.cxx.
51 ATH_CHECK(outputTracks.record(std::make_unique<TrackCollection>()));
57 std::vector<const Trk::SpacePoint*> spacePoints;
60 if (not containerKey.empty()){
64 if (container.isValid()){
66 auto spc = container->
begin();
67 auto spce = container->end();
68 for(; spc != spce; ++spc){
70 auto sp = spCollection->
begin();
71 auto spe = spCollection->
end();
72 for(; sp != spe; ++sp) {
74 spacePoints.push_back(spacePoint);
82 if (not containerKey.empty()){
86 if (collection.isValid()){
87 ATH_MSG_DEBUG(
"Number of overlapping space points: " << collection->size());
89 spacePoints.push_back(sp);
97 int nNonOverlap = spacePoints.size();
98 ATH_MSG_DEBUG(
"Number of non-overlapping spacepoints: " << nNonOverlap );
100 ATH_MSG_DEBUG(
"Number of spacepoints: " << spacePoints.size() );
102 std::vector<std::vector<uint32_t> >
TT;
108 ATH_MSG_ERROR(
"Both GNNTrackFinder and GNNTrackReader are not set");
109 return StatusCode::FAILURE;
117 int trackCounter = -1;
118 for (
auto& trackIndices :
TT) {
120 std::vector<const Trk::PrepRawData*>
clusters;
121 std::vector<const Trk::SpacePoint*> trackCandiate;
122 trackCandiate.reserve(trackIndices.size());
125 ATH_MSG_DEBUG(
"Track " << trackCounter <<
" has " << trackIndices.size() <<
" spacepoints");
127 std::stringstream spCoordinates;
129 for (
auto&
id : trackIndices) {
131 if (
id > spacePoints.size()) {
132 ATH_MSG_WARNING(
"SpacePoint index "<<
id <<
" out of range: " << spacePoints.size());
137 if (
static_cast<int>(
id) > nNonOverlap) {
141 trackCandiate.push_back(sp);
153 if (trkParameters ==
nullptr) {
161 if (
track !=
nullptr &&
track->perigeeParameters() !=
nullptr) {
164 if (
track !=
nullptr) {
167 if (
track !=
nullptr &&
track->trackSummary() !=
nullptr) {
168 outputTracks->push_back(
track.release());
175 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()
const DataObjIDColl & AthReentrantAlgorithm::extraOutputDeps |
( |
| ) |
const |
|
overridevirtualinherited |
Return the list of extra output dependencies.
This list is extended to include symlinks implied by inheritance relations.
Definition at line 79 of file AthReentrantAlgorithm.cxx.
86 return Algorithm::extraOutputDeps();
◆ filterPassed()
virtual bool AthReentrantAlgorithm::filterPassed |
( |
const EventContext & |
ctx | ) |
const |
|
inlinevirtualinherited |
◆ initialize()
StatusCode InDet::SiSPGNNTrackMaker::initialize |
( |
| ) |
|
|
overridevirtual |
Definition at line 19 of file SiSPGNNTrackMaker.cxx.
31 ATH_MSG_ERROR(
"Use either track finder or track reader, not both.");
32 return StatusCode::FAILURE;
44 return StatusCode::SUCCESS;
◆ 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()
virtual bool InDet::SiSPGNNTrackMaker::isClonable |
( |
| ) |
const |
|
inlineoverridevirtual |
◆ 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()
virtual void AthReentrantAlgorithm::setFilterPassed |
( |
bool |
state, |
|
|
const EventContext & |
ctx |
|
) |
| const |
|
inlinevirtualinherited |
◆ sysExecute()
StatusCode AthReentrantAlgorithm::sysExecute |
( |
const EventContext & |
ctx | ) |
|
|
overridevirtualinherited |
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 67 of file AthReentrantAlgorithm.cxx.
69 return Gaudi::Algorithm::sysExecute (ctx);
◆ sysInitialize()
StatusCode AthReentrantAlgorithm::sysInitialize |
( |
| ) |
|
|
overridevirtualinherited |
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 96 of file AthReentrantAlgorithm.cxx.
107 if ( cs.retrieve().isFailure() ) {
109 return StatusCode::SUCCESS;
111 if (cs->regHandle(
this,*
h).isFailure()) {
112 sc = StatusCode::FAILURE;
113 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
DataObjIDColl AthReentrantAlgorithm::m_extendedExtraObjects |
|
privateinherited |
Extra output dependency collection, extended by AthAlgorithmDHUpdate to add symlinks.
Empty if no symlinks were found.
Definition at line 153 of file AthReentrantAlgorithm.h.
◆ m_gnnTrackFinder
Initial value:{
this, "GNNTrackFinderTool",
"InDet::SiGNNTrackFinderTool", "Track Finder"
}
GNN-based track finding tool that produces track candidates.
@name Tool handles
Definition at line 74 of file SiSPGNNTrackMaker.h.
◆ m_gnnTrackReader
Initial value:{
this, "GNNTrackReaderTool",
"InDet::GNNTrackReaderTool", "Track Reader"
}
Definition at line 87 of file SiSPGNNTrackMaker.h.
◆ m_outputTracksKey
Initial value:{
this, "TracksLocation", "SiSPGNNTracks"}
Definition at line 66 of file SiSPGNNTrackMaker.h.
◆ m_seedFitter
ToolHandle<ISeedFitter> InDet::SiSPGNNTrackMaker::m_seedFitter |
|
protected |
Initial value:{
this, "SeedFitterTool",
"InDet::SiSeedFitterTool", "Seed Fitter"
}
Definition at line 78 of file SiSPGNNTrackMaker.h.
◆ m_SpacePointsOverlapKey
◆ m_SpacePointsPixelKey
Initial value:{
this, "SpacePointsPixelName", "ITkPixelSpacePoints"}
@name Data handles
Definition at line 58 of file SiSPGNNTrackMaker.h.
◆ m_SpacePointsSCTKey
Initial value:{
this, "SpacePointsSCTName", "ITkStripSpacePoints"}
Definition at line 60 of file SiSPGNNTrackMaker.h.
◆ m_trackFitter
Initial value:{
this, "TrackFitter",
"Trk::GlobalChi2Fitter/InDetTrackFitter", "Track Fitter"
}
Track Fitter.
Definition at line 83 of file SiSPGNNTrackMaker.h.
◆ m_varHandleArraysDeclared
◆ m_vhka
The documentation for this class was generated from the following files:
const std::pair< const PrepRawData *, const PrepRawData * > & clusterList() const
return the pair of cluster pointers by reference
const InDetSimData * getData(const InDetSimDataCollection &coll, const Identifier &id)
ToolHandle< IGNNTrackFinder > m_gnnTrackFinder
GNN-based track finding tool that produces track candidates.
SG::ReadHandleKey< SpacePointContainer > m_SpacePointsPixelKey
virtual const Amg::Vector3D & globalPosition() const override final
Interface method to get the global Position.
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
bool msgLvl(const MSG::Level lvl) const
SG::ReadHandleKey< SpacePointOverlapCollection > m_SpacePointsOverlapKey
SG::WriteHandleKey< TrackCollection > m_outputTracksKey
virtual void setOwner(IDataHandleHolder *o)=0
AthReentrantAlgorithm()
Default constructor:
virtual std::vector< Gaudi::DataHandle * > outputHandles() const override
Return this algorithm's output handles.
MsgStream & dumpevent(MsgStream &out) const
::StatusCode StatusCode
StatusCode definition for legacy code.
ToolHandle< Trk::ITrackFitter > m_trackFitter
Track Fitter.
StoreGateSvc_t m_detStore
Pointer to StoreGate (detector store by default)
const_iterator begin() const
return const_iterator for first entry
StatusCode initialize(bool used=true)
If this object is used as a property, then this should be called during the initialize phase.
DataObjIDColl m_extendedExtraObjects
Extra output dependency collection, extended by AthAlgorithmDHUpdate to add symlinks.
virtual void renounce()=0
std::conditional< std::is_base_of< SG::VarHandleKeyArray, T >::value, VarHandleKeyArrayType, type2 >::type type
ToolHandle< ISeedFitter > m_seedFitter
virtual StatusCode sysInitialize() override
Override sysInitialize.
const_iterator end() const noexcept
Return a const_iterator pointing past the end of the collection.
#define ATH_MSG_WARNING(x)
SG::VarHandleKey & vhKey()
Return a non-const reference to the HandleKey.
MsgStream & dumptools(MsgStream &out) const
SG::ReadHandleKey< SpacePointContainer > m_SpacePointsSCTKey
Gaudi::Details::PropertyBase & declareGaudiProperty(Gaudi::Property< T > &hndl, const SG::VarHandleKeyType &)
specialization for handling Gaudi::Property<SG::VarHandleKey>
const_iterator begin() const noexcept
Return a const_iterator pointing at the beginning of the collection.
ToolHandle< IGNNTrackReaderTool > m_gnnTrackReader