|
ATLAS Offline Software
|
#include <MappingTest.h>
|
| MappingTest (const std::string &name, ISvcLocator *pSvcLocator) |
| Standard Athena-Algorithm Constructor. More...
|
|
StatusCode | runTest () |
|
StatusCode | initializeTest () |
|
StatusCode | bookTree () |
|
StatusCode | initialize () |
| standard Athena-Algorithm method More...
|
|
StatusCode | execute () |
| standard Athena-Algorithm method More...
|
|
StatusCode | finalize () |
| standard Athena-Algorithm method More...
|
|
virtual StatusCode | sysInitialize () override |
| Override sysInitialize. More...
|
|
virtual const DataObjIDColl & | extraOutputDeps () const override |
| Return the list of extra output dependencies. More...
|
|
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 |
|
◆ StoreGateSvc_t
◆ MappingTest()
Trk::MappingTest::MappingTest |
( |
const std::string & |
name, |
|
|
ISvcLocator * |
pSvcLocator |
|
) |
| |
Standard Athena-Algorithm Constructor.
Definition at line 24 of file MappingTest.cxx.
◆ bookTree()
StatusCode Trk::MappingTest::bookTree |
( |
| ) |
|
|
virtual |
Reimplemented from Trk::TrkDetDescrUnitTestBase.
Definition at line 76 of file MappingTest.cxx.
99 m_unmappedTree =
new TTree(
"UnmappedHits",
"Unmapped Hits of the MappingTest Algorithm");
107 SmartIF<ITHistSvc> tHistSvc{service(
"THistSvc")};
109 ATH_MSG_ERROR(
"initialize() Could not find Hist Service -> Switching Tree output off !" );
113 if (tHistSvc && ((tHistSvc->regTree(
"/val/UnmappedAssociations",
m_unmappedTree)).isFailure()
114 || (tHistSvc->regTree(
"/val/MappingTest",
m_mappingTree)).isFailure()) ) {
115 ATH_MSG_ERROR(
"initialize() Could not register the validation Tree -> Switching Tree output off !" );
120 return StatusCode::SUCCESS;
◆ 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);
253 return PBASE::declareProperty(
name,hndl,
doc);
◆ 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.
229 return PBASE::declareProperty(
name,hndl,
doc);
◆ 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.
338 return PBASE::declareProperty(
name, property,
doc);
◆ 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 Trk::TrkDetDescrUnitTestBase::execute |
( |
| ) |
|
|
inherited |
◆ 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 & AthAlgorithm::extraOutputDeps |
( |
| ) |
const |
|
overridevirtualinherited |
Return the list of extra output dependencies.
This list is extended to include symlinks implied by inheritance relations.
Definition at line 50 of file AthAlgorithm.cxx.
57 return Algorithm::extraOutputDeps();
◆ finalize()
StatusCode Trk::TrkDetDescrUnitTestBase::finalize |
( |
| ) |
|
|
inherited |
◆ initialize()
StatusCode Trk::TrkDetDescrUnitTestBase::initialize |
( |
| ) |
|
|
inherited |
standard Athena-Algorithm method
Definition at line 27 of file TrkDetDescrUnitTestBase.cxx.
29 ATH_MSG_INFO(
"Creating random number services, call bookTree() and initializeTest()" );
32 m_gaussDist =
new Rndm::Numbers(randSvc(), Rndm::Gauss(0.,1.));
33 m_flatDist =
new Rndm::Numbers(randSvc(), Rndm::Flat(0.,1.));
37 return StatusCode::FAILURE;
42 return StatusCode::FAILURE;
45 return StatusCode::SUCCESS;
◆ initializeTest()
StatusCode Trk::MappingTest::initializeTest |
( |
| ) |
|
|
virtual |
◆ 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.
◆ 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()
◆ runTest()
StatusCode Trk::MappingTest::runTest |
( |
| ) |
|
|
virtual |
◆ sysInitialize()
StatusCode AthAlgorithm::sysInitialize |
( |
| ) |
|
|
overridevirtualinherited |
◆ 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_assignedCorrection
float Trk::MappingTest::m_assignedCorrection |
|
private |
◆ m_assignedLayerIndex
int Trk::MappingTest::m_assignedLayerIndex |
|
private |
◆ m_assignedPositionR
float Trk::MappingTest::m_assignedPositionR |
|
private |
◆ m_assignedPositionX
float Trk::MappingTest::m_assignedPositionX |
|
private |
◆ m_assignedPositionY
float Trk::MappingTest::m_assignedPositionY |
|
private |
◆ m_assignedPositionZ
float Trk::MappingTest::m_assignedPositionZ |
|
private |
◆ m_assignmentDistance
float Trk::MappingTest::m_assignmentDistance |
|
private |
◆ m_detStore
◆ m_etaCutOff
double Trk::MappingTest::m_etaCutOff |
|
private |
◆ m_evtStore
◆ m_executed
bool Trk::MappingTest::m_executed |
|
private |
◆ m_extendedExtraObjects
DataObjIDColl AthAlgorithm::m_extendedExtraObjects |
|
privateinherited |
◆ m_flatDist
Rndm::Numbers* Trk::TrkDetDescrUnitTestBase::m_flatDist |
|
protectedinherited |
◆ m_gaussDist
Rndm::Numbers* Trk::TrkDetDescrUnitTestBase::m_gaussDist |
|
protectedinherited |
◆ m_mappingPositionR
float Trk::MappingTest::m_mappingPositionR |
|
private |
◆ m_mappingPositionX
float Trk::MappingTest::m_mappingPositionX |
|
private |
◆ m_mappingPositionY
float Trk::MappingTest::m_mappingPositionY |
|
private |
◆ m_mappingPositionZ
float Trk::MappingTest::m_mappingPositionZ |
|
private |
◆ m_mappingTree
TTree* Trk::MappingTest::m_mappingTree |
|
private |
◆ m_mappingTreeDescription
std::string Trk::MappingTest::m_mappingTreeDescription |
|
private |
◆ m_mappingTreeName
std::string Trk::MappingTest::m_mappingTreeName |
|
private |
◆ m_mappingVolumeName
std::string Trk::MappingTest::m_mappingVolumeName |
|
private |
◆ m_numTests
size_t Trk::TrkDetDescrUnitTestBase::m_numTests |
|
protectedinherited |
◆ m_trackingGeometry
◆ m_trackingGeometryName
std::string Trk::MappingTest::m_trackingGeometryName |
|
private |
◆ m_trackingGeometrySvc
◆ m_unmappedPositionR
float Trk::MappingTest::m_unmappedPositionR |
|
private |
◆ m_unmappedPositionX
float Trk::MappingTest::m_unmappedPositionX |
|
private |
◆ m_unmappedPositionY
float Trk::MappingTest::m_unmappedPositionY |
|
private |
◆ m_unmappedPositionZ
float Trk::MappingTest::m_unmappedPositionZ |
|
private |
◆ m_unmappedTree
TTree* Trk::MappingTest::m_unmappedTree |
|
private |
◆ m_varHandleArraysDeclared
◆ m_vhka
The documentation for this class was generated from the following files:
def retrieve(aClass, aKey=None)
std::string m_mappingVolumeName
only map within this volume
float m_assignedPositionR
Rndm::Numbers * m_flatDist
size_t m_numTests
number of tests
float m_unmappedPositionZ
float m_assignedPositionX
Rndm::Numbers * m_gaussDist
Random Number setup.
std::string m_trackingGeometryName
The Name of the TrackingGeometry.
Gaudi::Details::PropertyBase & declareProperty(Gaudi::Property< T > &t)
virtual StatusCode bookTree()
const TrackingGeometry * m_trackingGeometry
The TrackingGeometry to be retrieved.
ServiceHandle< Trk::ITrackingGeometrySvc > m_trackingGeometrySvc
Service handle for retrieving the TrackingGeometry.
StoreGateSvc_t m_evtStore
Pointer to StoreGate (event store by default)
std::vector< SG::VarHandleKeyArray * > m_vhka
float m_unmappedPositionR
virtual StatusCode runTest()=0
#define ATH_MSG_VERBOSE(x)
float m_assignmentDistance
double m_etaCutOff
do not map beyond this point
const ServiceHandle< StoreGateSvc > & detStore() const
The standard StoreGateSvc/DetectorStore Returns (kind of) a pointer to the StoreGateSvc.
float m_assignedPositionY
virtual void setOwner(IDataHandleHolder *o)=0
float m_unmappedPositionX
virtual StatusCode sysInitialize() override
Override sysInitialize.
LayerIntersection< Amg::Vector3D > closestMaterialLayer(const T &pars, PropDirection pDir=Trk::alongMomentum, const BoundaryCheck &bchk=true) const
Closest Material Layer - used for the mapping option.
virtual std::vector< Gaudi::DataHandle * > outputHandles() const override
Return this algorithm's output handles.
std::string m_mappingTreeName
float m_assignedPositionZ
::StatusCode StatusCode
StatusCode definition for legacy code.
double halflengthZ() const
This method returns the halflengthZ.
StoreGateSvc_t m_detStore
Pointer to StoreGate (detector store by default)
std::string m_mappingTreeDescription
virtual void renounce()=0
std::conditional< std::is_base_of< SG::VarHandleKeyArray, T >::value, VarHandleKeyArrayType, type2 >::type type
float m_unmappedPositionY
Eigen::Matrix< double, 3, 1 > Vector3D
DataObjIDColl m_extendedExtraObjects
Intersection intersection
#define ATH_MSG_WARNING(x)
double innerRadius() const
This method returns the inner radius.
const TrackingVolume * trackingVolume(const std::string &name) const
return the tracking Volume by name, 0 if it doesn't exist
SG::VarHandleKey & vhKey()
Return a non-const reference to the HandleKey.
double deltaRadius() const
This method returns the delta radius.
Class extension to return the object, a represenation & the result.
virtual StatusCode initializeTest()
bool m_executed
Make sure it only runs once.
Gaudi::Details::PropertyBase & declareGaudiProperty(Gaudi::Property< T > &hndl, const SG::VarHandleKeyType &)
specialization for handling Gaudi::Property<SG::VarHandleKey>
float m_assignedCorrection