|
ATLAS Offline Software
|
Steven Schramm
February 2014.
More...
#include <JetVertexFractionTool.h>
|
| JetVertexFractionTool (const std::string &name) |
|
virtual StatusCode | initialize () override |
| Dummy implementation of the initialisation function. More...
|
|
virtual StatusCode | decorate (const xAOD::JetContainer &jetCont) const override |
| Decorate a jet collection without otherwise modifying it. More...
|
|
float | getCorrJetVertexFraction (const xAOD::Vertex *, const std::vector< const xAOD::TrackParticle * > &, const xAOD::TrackParticleContainer *&, const jet::TrackVertexAssociation *) const |
|
ElementLink< xAOD::VertexContainer > | getMaxJetVertexFraction (const xAOD::VertexContainer *, const std::vector< float > &) const |
|
virtual void | print () const |
| Print the state of the tool. 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 | sysInitialize () override |
| Perform system initialization for an algorithm. 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 |
|
virtual StatusCode | modify (xAOD::JetContainer &jets) const override final |
| Concrete implementation of the function inherited from IJetModifier. More...
|
|
|
Gaudi::Property< std::string > | m_jetContainerName {this, "JetContainer", "", "SG key for input jet container"} |
|
Gaudi::Property< std::string > | m_assocTracksName {this, "AssociatedTracks", "", "Name of associated track container"} |
|
Gaudi::Property< float > | m_kcorrJVF {this, "K_JVFCorrScale", 0.01, "Value of k for JVFCorr calculation"} |
|
Gaudi::Property< float > | m_PUtrkptcut {this, "PUTrkPtCut", 30000., "Pileup track pt cut (MeV)"} |
|
Gaudi::Property< bool > | m_suppressInputDeps {this, "SuppressInputDependence", false, "Will SumPtTrk be created in the same algorithm that uses this tool?"} |
|
ToolHandle< InDet::IInDetTrackSelectionTool > | m_htsel {this, "TrackSelector", "", "Track selector tool"} |
|
SG::ReadHandleKey< xAOD::VertexContainer > | m_vertexContainer_key {this, "VertexContainer", "", "Input vertex container"} |
|
SG::ReadHandleKey< jet::TrackVertexAssociation > | m_tva_key {this, "TrackVertexAssociation", "", "Input track-vertex association"} |
|
SG::ReadHandleKey< xAOD::TrackParticleContainer > | m_tracksCont_key {this, "TrackParticleContainer", "", "Input track container"} |
|
SG::ReadDecorHandleKey< xAOD::JetContainer > | m_sumPtTrkKey {this, "SumPtTrkName", "SumPtTrkPt500", "SG key for input SumPtTrk decoration"} |
|
SG::WriteDecorHandleKey< xAOD::JetContainer > | m_jvfKey {this, "JVFName", "JVF", "SG key for output JVF decoration"} |
|
SG::WriteDecorHandleKey< xAOD::JetContainer > | m_jvfCorrKey {this, "JVFCorrName", "JVFCorr", "SG key for output JVFCorr decoration"} |
|
SG::WriteDecorHandleKey< xAOD::JetContainer > | m_maxJvfVtxKey {this, "HighestJVFVertexName", "HighestJVFVtx", "SG key for output HighestJVFVertex decoration"} |
|
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 |
|
Steven Schramm
February 2014.
Updated for Run 3 by Bill Balunas March 2020
Tool to calculate the jet vertex fraction (JVF) JVF is a vector<float> with respect to all vertices
Calculation requires three main types of information
- Vertex container for the event (from evtStore), which the JVF vector is aligned with
- Tracks associated to the input jet (in the jet aux store)
- Track vertex association object (from evtStore)
Using this information, the procedure can be broken into three main steps:
- Retrieve necessary information
- Helper method to create the full vector given the information
- Helper method to create the JVF value for one vertex given the information
Properties: VertexContainer - name of the vertex container AssociatedTracks - name for attribute holding the list of associated tracks TrackVertexAssociation - name for the container holding the track-vertex associations TrackSelector - tool to select tracks (none ==> no selection) JVFName - name for the JVF array attribute (default is "JVF")
Definition at line 57 of file JetVertexFractionTool.h.
◆ StoreGateSvc_t
◆ JetVertexFractionTool()
JetVertexFractionTool::JetVertexFractionTool |
( |
const std::string & |
name | ) |
|
◆ 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]
◆ decorate()
Decorate a jet collection without otherwise modifying it.
Implements IJetDecorator.
Definition at line 61 of file JetVertexFractionTool.cxx.
65 if (!vertexContainer.isValid()){
68 return StatusCode::FAILURE;
70 const auto *vertices = vertexContainer.cptr();
77 if (!tracksContainer.isValid()){
78 ATH_MSG_ERROR(
"Could not retrieve the TrackParticleContainer: "
80 return StatusCode::FAILURE;
82 const auto *tracksCont = tracksContainer.cptr();
84 ATH_MSG_DEBUG(
"Successfully retrieved TrackParticleContainer: "
89 if (!tvaContainer.isValid()){
90 ATH_MSG_ERROR(
"Could not retrieve the TrackVertexAssociation: "
92 return StatusCode::FAILURE;
94 const auto *tva = tvaContainer.cptr();
96 ATH_MSG_DEBUG(
"Successfully retrieved TrackVertexAssociation: "
99 if (vertices->empty() ) {
101 return StatusCode::SUCCESS;
119 std::unique_ptr<SG::WriteDecorHandle<xAOD::JetContainer, ElementLink<xAOD::VertexContainer> > > maxJvfVtxHandle;
121 maxJvfVtxHandle = std::make_unique<SG::WriteDecorHandle<xAOD::JetContainer, ElementLink<xAOD::VertexContainer> > >(
m_maxJvfVtxKey);
130 ATH_MSG_ERROR(
"OriginVertex was requested, but the jet does not contain an OriginVertex");
131 return StatusCode::FAILURE;
140 std::vector<const xAOD::TrackParticle*> tracks;
148 std::vector<float> vsumpttrk = sumPtTrkHandle(*
jet);
149 float sumpttrk_all = tracksums.first;
150 float sumpttrk_nonPV = tracksums.second;
151 float sumpttrk_PV = vsumpttrk[HSvertex->
index() - (*vertices)[0]->index()];
154 std::vector<float> jvf(vertices->size());
155 for(
size_t vtxi=0; vtxi<vertices->size(); ++vtxi) {
156 jvf[vtxi] = sumpttrk_all > 1
e-9 ? vsumpttrk[vtxi] / sumpttrk_all : -1;
158 jvfHandle(*
jet) = jvf;
166 float jvfcorr = -999.;
167 if(sumpttrk_PV + sumpttrk_nonPV > 0) {
168 jvfcorr = sumpttrk_PV / (sumpttrk_PV + ( sumpttrk_nonPV / (
m_kcorrJVF *
std::max(n_putracks_local, 1) ) ) );
172 jvfCorrHandle(*
jet) = jvfcorr;
176 std::vector<float> jvfCorrVtx;
178 auto jvfCorrVtxHandle = std::make_unique<SG::WriteDecorHandle<xAOD::JetContainer, std::vector<float> > >(
m_jvfCorrVtxHandleKey);
182 std::vector<float> vsumpttrk = sumPtTrkHandle(*
jet);
191 std::vector<const xAOD::TrackParticle*> tracks;
202 float sumpttrk_PV = vsumpttrk[
pv->index()];
203 float sumpttrk_nonPV = tracksums.second;
204 float jvfcorr = -999.;
205 float kcorrJVF = 0.01;
206 if(sumpttrk_PV + sumpttrk_nonPV > 0) {
207 jvfcorr = sumpttrk_PV / (sumpttrk_PV + ( sumpttrk_nonPV / (kcorrJVF *
std::max(n_putracks, 1) ) ) );
211 jvfCorrVtx.push_back(jvfcorr);
214 (*jvfCorrVtxHandle)(*jet) = jvfCorrVtx;
219 return StatusCode::SUCCESS;
◆ detStore()
◆ evtStore() [1/2]
◆ evtStore() [2/2]
◆ 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
◆ findHSVertex()
◆ getCorrJetVertexFraction()
◆ getEmptyJetVertexFraction()
◆ getJetVertexTrackSums()
Definition at line 242 of file JetVertexFractionTool.cxx.
245 float sumTrackAll = 0;
246 float sumTracknotPV = 0;
248 unsigned int nkeep = 0;
249 unsigned int nskip = 0;
250 for (
size_t iTrack = 0; iTrack < tracks.size(); ++iTrack) {
253 sumTrackAll +=
track->pt();
256 if( ptvtx !=
nullptr ) {
265 <<
": nsel=" << nkeep
266 <<
", nrej=" <<
nskip );
268 return std::make_pair(sumTrackAll,sumTracknotPV);
◆ getKey()
Get the (hashed) key of an object that is in the event store.
This is a bit of a special one. StoreGateSvc
and xAOD::TEvent
both provide ways for getting the SG::sgkey_t
key for an object that is in the store, based on a bare pointer. But they provide different interfaces for doing so.
In order to allow tools to efficiently perform this operation, they can use this helper function.
- See also
- asg::AsgTool::getName
- Parameters
-
ptr | The bare pointer to the object that the event store should know about |
- Returns
- The hashed key of the object in the store. If not found, an invalid (zero) key.
Definition at line 119 of file AsgTool.cxx.
121 #ifdef XAOD_STANDALONE
127 return (
proxy ==
nullptr ? 0 :
proxy->sgkey() );
128 #endif // XAOD_STANDALONE
◆ getMaxJetVertexFraction()
Definition at line 224 of file JetVertexFractionTool.cxx.
229 for (
size_t iVertex = 0; iVertex < jvf.size(); ++iVertex ) {
230 if ( jvf.at(iVertex) > maxVal ) {
232 maxVal = jvf.at(iVertex);
◆ getName()
const std::string & asg::AsgTool::getName |
( |
const void * |
ptr | ) |
const |
|
inherited |
Get the name of an object that is / should be in the event store.
This is a bit of a special one. StoreGateSvc
and xAOD::TEvent
both provide ways for getting the std::string
name for an object that is in the store, based on a bare pointer. But they provide different interfaces for doing so.
In order to allow tools to efficiently perform this operation, they can use this helper function.
- See also
- asg::AsgTool::getKey
- Parameters
-
ptr | The bare pointer to the object that the event store should know about |
- Returns
- The string name of the object in the store. If not found, an empty string.
Definition at line 106 of file AsgTool.cxx.
108 #ifdef XAOD_STANDALONE
114 static const std::string
dummy =
"";
116 #endif // XAOD_STANDALONE
◆ getPileupTrackCount()
Definition at line 275 of file JetVertexFractionTool.cxx.
279 int n_pileuptrackcount = 0;
281 unsigned int nkeep = 0;
282 unsigned int nskip = 0;
284 for(
size_t iTrack = 0; iTrack < tracksCont->
size(); ++iTrack)
291 if ( ptvtx !=
nullptr ) {
299 const int n_pileuptracks = n_pileuptrackcount;
302 <<
": nsel=" << nkeep
303 <<
", nrej=" <<
nskip
304 <<
", total " << tracksCont->
size() );
306 <<
": n_PUtracks=" << n_pileuptracks
307 <<
", total=" << tot_count );
309 return n_pileuptracks;
◆ getProperty()
template<class T >
const T* asg::AsgTool::getProperty |
( |
const std::string & |
name | ) |
const |
|
inherited |
Get one of the tool's properties.
◆ initialize()
StatusCode JetVertexFractionTool::initialize |
( |
| ) |
|
|
overridevirtual |
Dummy implementation of the initialisation function.
It's here to allow the dual-use tools to skip defining an initialisation function. Since many are doing so...
Reimplemented from asg::AsgTool.
Definition at line 19 of file JetVertexFractionTool.cxx.
24 ATH_MSG_ERROR(
"JetVertexFractionTool needs to have its input jet container name configured!");
25 return StatusCode::FAILURE;
41 #ifndef XAOD_STANDALONE
58 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.
◆ modify()
|
inlinefinaloverridevirtualinherited |
◆ msg() [1/2]
◆ msg() [2/2]
◆ msg_level_name()
const std::string & asg::AsgTool::msg_level_name |
( |
| ) |
const |
|
inherited |
A deprecated function for getting the message level's name.
Instead of using this, weirdly named function, user code should get the string name of the current minimum message level (in case they really need it...), with:
MSG::name( msg().level() )
This function's name doesn't follow the ATLAS coding rules, and as such will be removed in the not too distant future.
- Returns
- The string name of the current minimum message level that's printed
Definition at line 101 of file AsgTool.cxx.
◆ 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.
◆ print()
void asg::AsgTool::print |
( |
| ) |
const |
|
virtualinherited |
Print the state of the tool.
Implements asg::IAsgTool.
Reimplemented in JetRecTool, JetFinder, JetModifiedMassDrop, JetFromPseudojet, JetReclusterer, JetReclusteringTool, JetTruthLabelingTool, JetPileupLabelingTool, HI::HIPileupTool, JetDumper, JetBottomUpSoftDrop, JetRecursiveSoftDrop, JetSoftDrop, JetConstituentsRetriever, JetSubStructureMomentToolsBase, JetSplitter, JetToolRunner, JetPruner, JetPseudojetRetriever, JetTrimmer, AsgHelloTool, and KtDeltaRTool.
Definition at line 131 of file AsgTool.cxx.
◆ renounce()
◆ renounceArray()
◆ sysInitialize()
◆ 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_assocTracksName
Gaudi::Property<std::string> JetVertexFractionTool::m_assocTracksName {this, "AssociatedTracks", "", "Name of associated track container"} |
|
private |
◆ m_detStore
◆ m_evtStore
◆ m_htsel
◆ m_isTrigger
Gaudi::Property<bool> JetVertexFractionTool::m_isTrigger {this, "IsTrigger", false, "Is this in the trigger?"} |
|
protected |
◆ m_jetContainerName
Gaudi::Property<std::string> JetVertexFractionTool::m_jetContainerName {this, "JetContainer", "", "SG key for input jet container"} |
|
private |
◆ m_jvfCorrKey
◆ m_jvfCorrVtxHandleKey
◆ m_jvfKey
◆ m_kcorrJVF
Gaudi::Property<float> JetVertexFractionTool::m_kcorrJVF {this, "K_JVFCorrScale", 0.01, "Value of k for JVFCorr calculation"} |
|
private |
◆ m_maxJvfVtxKey
◆ m_PUtrkptcut
Gaudi::Property<float> JetVertexFractionTool::m_PUtrkptcut {this, "PUTrkPtCut", 30000., "Pileup track pt cut (MeV)"} |
|
private |
◆ m_sumPtTrkKey
◆ m_suppressInputDeps
Gaudi::Property<bool> JetVertexFractionTool::m_suppressInputDeps {this, "SuppressInputDependence", false, "Will SumPtTrk be created in the same algorithm that uses this tool?"} |
|
private |
◆ m_tracksCont_key
◆ m_tva_key
◆ m_useOriginVertex
Gaudi::Property<bool> JetVertexFractionTool::m_useOriginVertex = {this, "UseOriginVertex", false, "use origin vertex for each jet"} |
|
protected |
◆ 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
#define ATH_MSG_VERBOSE(x)
const std::string & key() const
Return the StoreGate ID for the referenced object.
virtual void setOwner(IDataHandleHolder *o)=0
SG::ReadCondHandle< T > makeHandle(const SG::ReadCondHandleKey< T > &key, const EventContext &ctx=Gaudi::Hive::currentContext())
ServiceHandle< StoreGateSvc > & evtStore()
The standard StoreGateSvc (event store) Returns (kind of) a pointer to the StoreGateSvc.
Handle class for reading a decoration on an object.
Handle class for adding a decoration to an object.
const std::string & name(Level lvl)
Convenience function for translating message levels to strings.
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.
size_t index() const
Return the index of this element within its container.
const xAOD::Vertex * associatedVertex(const xAOD::TrackParticle *trk) const
virtual void renounce()=0
std::conditional< std::is_base_of< SG::VarHandleKeyArray, T >::value, VarHandleKeyArrayType, type2 >::type type
ElementLink implementation for ROOT usage.
Class describing a Vertex.
virtual StatusCode decorate(const xAOD::JetContainer &jets) const =0
Decorate a jet collection without otherwise modifying it.
#define ATH_MSG_WARNING(x)
SG::VarHandleKey & vhKey()
Return a non-const reference to the HandleKey.
Class describing a TrackParticle.
const T * at(size_type n) const
Access an element, as an rvalue.
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>