Loading [MathJax]/extensions/tex2jax.js
 |
ATLAS Offline Software
|
#include <TCTDecorCheckInTool.h>
|
| TCTDecorCheckInTool (const std::string &type, ISvcLocator *pSvcLocator) |
|
virtual | ~TCTDecorCheckInTool () |
|
virtual StatusCode | initialize () override |
|
virtual StatusCode | execute () override |
|
virtual StatusCode | finalize () override |
|
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 |
|
|
ToolHandle< InDet::IInDetTrkInJetType > | m_trackClassificationTool {this, "TrackClassificationTool", "InDet::InDetTrkInJetType"} |
|
SG::ReadHandleKey< xAOD::JetContainer > | m_jetsKey {this,"JetContainer","AntiKt4EMPFlowJets","ReadHandleKey for Jet Container"} |
|
SG::ReadHandleKey< xAOD::TrackParticleContainer > | m_particlesKey {this, "trackCollection", "InDetTrackParticles"} |
|
SG::ReadHandleKey< xAOD::VertexContainer > | m_verticesKey { this, "VertexContainer", "PrimaryVertices"} |
|
SG::ReadDecorHandleKey< xAOD::TrackParticleContainer > | m_trackReadDecorKeyTCTScore |
| The read key for adding TCT score as decoration to TrackParticle objects. More...
|
|
SG::ReadDecorHandleKey< xAOD::TrackParticleContainer > | m_trackReadDecorKeyJetLink |
|
SG::ReadDecorHandleKey< xAOD::JetContainer > | m_jetReadDecorKeyTCTScore |
| The write key for adding TCT score as decoration to Jet objects. More...
|
|
SG::ReadDecorHandleKey< xAOD::JetContainer > | m_jetReadDecorKeyTrackLink |
|
StringProperty | m_decoratorMethod {this, "decoratorMethod", "decorateTrack"} |
|
DataObjIDColl | m_extendedExtraObjects |
|
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 |
|
Definition at line 36 of file TCTDecorCheckInTool.h.
◆ StoreGateSvc_t
◆ TCTDecorCheckInTool()
TCTDecorCheckInTool::TCTDecorCheckInTool |
( |
const std::string & |
type, |
|
|
ISvcLocator * |
pSvcLocator |
|
) |
| |
◆ ~TCTDecorCheckInTool()
TCTDecorCheckInTool::~TCTDecorCheckInTool |
( |
| ) |
|
|
virtual |
◆ 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 TCTDecorCheckInTool::execute |
( |
| ) |
|
|
overridevirtual |
Definition at line 64 of file TCTDecorCheckInTool.cxx.
76 if ( !trackTES.isValid() ) {
78 return StatusCode::SUCCESS; }
79 ATH_MSG_DEBUG(
"TrackParticleContainer successfully retrieved" );
82 if ( !pvTES.isValid() ) {
84 return StatusCode::SUCCESS; }
85 ATH_MSG_DEBUG(
"Primary Vertices container successfully retrieved" );
92 if ( !jetTES.isValid() ) {
94 return StatusCode::SUCCESS; }
95 ATH_MSG_DEBUG(
"AntiKt4EMPflow jet container successfully retrieved" );
107 for(trackItr = trackTES->begin(); trackItr != trackItrE; ++trackItr){
112 const xAOD::Jet* closestJet = *(jetTES->begin());
113 for(jetItr = jetTES->begin(); jetItr != jetItrE; ++jetItr){
115 float curDeltaR = (itrk)->p4().DeltaR(curJet->
p4());
116 if(curDeltaR < minDeltaR) {minDeltaR = curDeltaR; closestJet = curJet;}
122 for(trackItr = trackTES->begin(); trackItr != trackItrE; ++trackItr){
124 std::vector<float> v_tctScoresDeco = trackReadDecorHandleTCTScore(*itrk);
127 ATH_MSG_DEBUG(
"TCT score from decoration: " << v_tctScoresDeco.at(0) <<
", " << v_tctScoresDeco.at(1) <<
", "<< v_tctScoresDeco.at(2));
129 ATH_MSG_DEBUG(
"Calculated TCT score: " << v_tctScore.at(0) <<
", " << v_tctScore.at(1) <<
", " << v_tctScore.at(2));
131 for(
int j=0; j<=2 ; j++) {assert(
Athena_test::isEqual(v_tctScore.at(j),v_tctScoresDeco.at(j)));}
138 for(jetItr = jetTES->begin(); jetItr != jetItrE; ++jetItr){
140 std::vector<const xAOD::TrackParticle*> trkparticles(0);
141 for(trackItr = trackTES->begin(); trackItr != trackItrE; ++trackItr){
143 if((itrk)->p4().
DeltaR(ijet->
p4()) < 0.4) {trkparticles.push_back(itrk); }
149 for(jetItr = jetTES->begin(); jetItr != jetItrE; ++jetItr){
151 std::vector<std::vector<float>> v_tctScoresDeco = jetReadDecorHandleTCTScore(*ijet);
152 std::vector<ElementLink<xAOD::TrackParticleContainer>> v_trackLinks = jetReadDecorHandleTrackLink(*ijet);
154 for(
unsigned int i=0;
i<v_tctScoresDeco.size();
i++)
156 ATH_MSG_DEBUG(
"TCT score from decoration: " << v_tctScoresDeco.at(
i).at(0) <<
", " << v_tctScoresDeco.at(
i).at(1) <<
", "<< v_tctScoresDeco.at(
i).at(2));
158 ATH_MSG_DEBUG(
"Calculated TCT score: " << v_tctScore.at(0) <<
", " << v_tctScore.at(1) <<
", " << v_tctScore.at(2));
160 for(
int j=0; j<=2 ; j++) {assert(
Athena_test::isEqual(v_tctScore.at(j),v_tctScoresDeco.at(
i).at(j)));}
170 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 & 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 TCTDecorCheckInTool::finalize |
( |
| ) |
|
|
overridevirtual |
◆ initialize()
StatusCode TCTDecorCheckInTool::initialize |
( |
| ) |
|
|
overridevirtual |
◆ 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()
◆ 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_decoratorMethod
StringProperty TCTDecorCheckInTool::m_decoratorMethod {this, "decoratorMethod", "decorateTrack"} |
|
private |
◆ m_detStore
◆ m_evtStore
◆ m_extendedExtraObjects
DataObjIDColl AthAlgorithm::m_extendedExtraObjects |
|
privateinherited |
◆ m_jetReadDecorKeyTCTScore
Initial value:{this,"jetDecorKeyTCTScore",
"AntiKt4EMPFlowJets.TCTScore","ReadDecorHandleKey for adding TCT score to Jets"}
The write key for adding TCT score as decoration to Jet objects.
Definition at line 72 of file TCTDecorCheckInTool.h.
◆ m_jetReadDecorKeyTrackLink
Initial value:{this,"jetDecorKeyJetLink",
"AntiKt4EMPFlowJets.TCTTrackLink","ReadDecorHandleKey for adding TrackParticleLink to Jets"}
Definition at line 74 of file TCTDecorCheckInTool.h.
◆ m_jetsKey
◆ m_particlesKey
◆ m_trackClassificationTool
◆ m_trackReadDecorKeyJetLink
Initial value:{this,"trackDecorKeyJetLink",
"InDetTrackParticles.TCTJetLink_AntiKt4EMPFlowJets","ReadDecorHandleKey for adding JetLink to TrackParticles"}
Definition at line 68 of file TCTDecorCheckInTool.h.
◆ m_trackReadDecorKeyTCTScore
Initial value:{this,"trackDecorKeyTCTScore",
"InDetTrackParticles.TCTScore_AntiKt4EMPFlowJets","ReadDecorHandleKey for adding TCT score to TrackParticles"}
The read key for adding TCT score as decoration to TrackParticle objects.
Definition at line 66 of file TCTDecorCheckInTool.h.
◆ m_varHandleArraysDeclared
◆ m_verticesKey
◆ m_vhka
The documentation for this class was generated from the following files:
Const iterator class for DataVector/DataList.
Gaudi::Details::PropertyBase & declareProperty(Gaudi::Property< T > &t)
StoreGateSvc_t m_evtStore
Pointer to StoreGate (event store by default)
std::vector< SG::VarHandleKeyArray * > m_vhka
const std::string & key() const
Return the StoreGate ID for the referenced object.
virtual void setOwner(IDataHandleHolder *o)=0
virtual StatusCode sysInitialize() override
Override sysInitialize.
Handle class for reading a decoration on an object.
virtual std::vector< Gaudi::DataHandle * > outputHandles() const override
Return this algorithm's output handles.
::StatusCode StatusCode
StatusCode definition for legacy code.
bool isEqual(double x1, double x2, double thresh=1e-6)
StoreGateSvc_t m_detStore
Pointer to StoreGate (detector store by default)
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
ElementLink implementation for ROOT usage.
DataObjIDColl m_extendedExtraObjects
virtual FourMom_t p4() const
The full 4-momentum of the particle.
Class describing a Vertex.
#define ATH_MSG_WARNING(x)
SG::VarHandleKey & vhKey()
Return a non-const reference to the HandleKey.
AthAlgorithm()
Default constructor:
Class describing a TrackParticle.
Gaudi::Details::PropertyBase & declareGaudiProperty(Gaudi::Property< T > &hndl, const SG::VarHandleKeyType &)
specialization for handling Gaudi::Property<SG::VarHandleKey>