|
ATLAS Offline Software
|
James Frost
November 2014.
More...
#include <JetVertexTaggerTool.h>
|
| JetVertexTaggerTool (const std::string &name) |
|
virtual | ~JetVertexTaggerTool () |
|
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 | evaluateJvt (float rpt, float jvfcorr) const |
|
float | updateJvt (const xAOD::Jet &jet) const override |
| Calculate the updated JVT. More...
|
|
const xAOD::Vertex * | findHSVertex () 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 the input jet container"} |
|
Gaudi::Property< std::string > | m_jvtlikelihoodHistName {this, "JVTLikelihoodHistName", "JVTRootCore_kNN100trim_pt20to50_Likelihood", "JVT likelihood histogram name"} |
|
Gaudi::Property< std::string > | m_jvtfileName {this, "JVTFileName", "JetMomentTools/JVTlikelihood_20140805.root", "JVT likelihood file name"} |
|
Gaudi::Property< bool > | m_suppressInputDeps {this, "SuppressInputDependence", false, "Will JVFCorr and SumPtTrk be created in the same algorithm that uses this tool?"} |
|
SG::ReadHandleKey< xAOD::VertexContainer > | m_vertexContainer_key {this, "VertexContainer", "PrimaryVertices", "SG key for input vertex container"} |
|
SG::ReadDecorHandleKey< xAOD::JetContainer > | m_jvfCorrKey {this, "JVFCorrName", "JVFCorr", "SG key for input JVFCorr decoration"} |
|
SG::ReadDecorHandleKey< xAOD::JetContainer > | m_jvfCorrVtxKey |
|
SG::ReadDecorHandleKey< xAOD::JetContainer > | m_sumPtTrkKey {this, "SumPtTrkName", "SumPtTrkPt500", "SG key for input SumPtTrk decoration"} |
|
SG::WriteDecorHandleKey< xAOD::JetContainer > | m_jvtKey {this, "JVTName", "Jvt", "SG key for output JVT decoration"} |
|
SG::WriteDecorHandleKey< xAOD::JetContainer > | m_jvtVecKey |
|
SG::WriteDecorHandleKey< xAOD::JetContainer > | m_rptKey {this, "RpTName", "JvtRpt", "SG key for output RpT decoration"} |
|
SG::WriteDecorHandleKey< xAOD::JetContainer > | m_rptVecKey |
|
Gaudi::Property< bool > | m_useOriginVertex = {this, "UseOriginVertex", false, "use origin vertex for each jet"} |
|
TString | m_fn |
|
TH2F * | m_jvthisto |
|
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 |
|
James Frost
November 2014.
Updated for Run 3 by Bill Balunas March 2020
Tool to calculate the jet vertex tag (JVT) JVT is a float per jet
The JVT likelihood is parameterised in terms of: RPT: ratio of the primary vertex track sum to the jet pT JVFCorr: a corrected JVF calculation accounting for the number of PU tracks in the event.
Calculation requires three main types of information
- Vertex container for the event (from evtStore), with respect to which the JVT track sums
- Tracks associated to each of the input jet (in the jet aux store)
- Track vertex association object (from evtStore)
- The track container needed for PU track counting
- The ID track selector tool to provide an input track selection.
- An input file with the JVT likelihood stored as a 2D histogram.
Using this information, the procedure can be broken into three main steps:
- Count the total number of pileup tracks
- Per jet: Get track pT sums needed for JVFCorr and RpT
- Use JVT likelihood to get JVT value
Attributes added (each is a float per jet):
- Jvt - the JVTLikelihood value for the jet. This is parameterised in terms of:
- JvtRpt - the ratio of the PV track pT sum to the jet pT
- JvtJvfcorr - a corrected Jvf quantity that corrects for the number of pileup tracks in an event.
Properties: JetContainer - name of the jet container VertexContainer - name of the vertex container TrackParticleContainer - name of the track 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) JVTFileName - ROOT Filename containing JVT likelihood histogram JVTLikelihoodHistName - JVT Likelihood histogram name JVTName - name for the 3 JVT attributes (default is "JVT") K_JVFCorrScale - the scale factor for pileup tracks in the JVFCorr calculation (default is 0.01) Z0Cut - Z0 value (in mm) within which tracks associated to no vertex may be assigned to the primary vertex (default is 3.) PUTrkPtCut - the track pT (in MeV) below which tracks associated to no vertex may be assigned to the primary vertex (default is 30000.)
Definition at line 78 of file JetVertexTaggerTool.h.
◆ StoreGateSvc_t
◆ JetVertexTaggerTool()
JetVertexTaggerTool::JetVertexTaggerTool |
( |
const std::string & |
name | ) |
|
◆ ~JetVertexTaggerTool()
JetVertexTaggerTool::~JetVertexTaggerTool |
( |
| ) |
|
|
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]
◆ decorate()
Decorate a jet collection without otherwise modifying it.
Implements IJetDecorator.
Definition at line 99 of file JetVertexTaggerTool.cxx.
107 if(!HSvertex)
return StatusCode::FAILURE;
128 ATH_MSG_ERROR(
"OriginVertex was requested, but the jet does not contain an OriginVertex");
129 return StatusCode::FAILURE;
139 float jvfcorr = jvfCorrHandle(*
jet);
140 std::vector<float> sumpttrk = sumPtTrkHandle(*
jet);
141 const float rpt = sumpttrk[HSvertex->
index() - (*vertices)[0]->index()]/
jet->pt();
144 rptHandle(*
jet) = rpt;
145 jvtHandle(*
jet) = jvt;
146 ATH_MSG_VERBOSE(
"JetVertexTaggerTool " <<
name() <<
": JVT=" << jvt <<
", RpT=" << rpt <<
", JVFCorr=" << jvfcorr);
155 std::vector<float> jvtVtx;
156 std::vector<float> rptVtx;
161 std::vector<float> sumpttrk = sumPtTrkHandle(*
jet);
162 std::vector<float> jvfcorrVtx = jvfCorrVtxHandle(*
jet);
165 for(
size_t vtxi=0; vtxi<vertices->
size(); ++vtxi) {
167 float jvfcorr = jvfcorrVtx.at(vtxi);
168 const float rpt = sumpttrk[vtxi]/
jet->pt();
170 jvtVtx.push_back(jvt);
171 rptVtx.push_back(rpt);
174 jvtVecHandle(*
jet) = jvtVtx;
175 rptVecHandle(*
jet) = rptVtx;
180 return StatusCode::SUCCESS;
◆ detStore()
◆ evaluateJvt()
float JetVertexTaggerTool::evaluateJvt |
( |
float |
rpt, |
|
|
float |
jvfcorr |
|
) |
| const |
◆ 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()
Definition at line 234 of file JetVertexTaggerTool.cxx.
245 if (vertices->
empty() ) {
250 for (
size_t iVertex = 0; iVertex < vertices->
size(); ++iVertex ) {
253 ATH_MSG_VERBOSE(
"JetVertexTaggerTool " <<
name() <<
" Found HS vertex at index: "<< iVertex);
254 return vertices->
at(iVertex);
257 ATH_MSG_VERBOSE(
"There is no vertex of type PriVx. Taking default vertex.");
258 return vertices->
at(0);
◆ 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
◆ 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
◆ getProperty()
template<class T >
const T* asg::AsgTool::getProperty |
( |
const std::string & |
name | ) |
const |
|
inherited |
Get one of the tool's properties.
◆ initialize()
StatusCode JetVertexTaggerTool::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 37 of file JetVertexTaggerTool.cxx.
42 ATH_MSG_ERROR(
"JetVertexTaggerTool needs to have its input jet container configured!");
43 return StatusCode::FAILURE;
51 std::unique_ptr<TFile> jvtfile {TFile::Open(
m_fn)};
54 return StatusCode::FAILURE;
61 ATH_MSG_FATAL(
"\n Found JVT file, but JVT histogram missing. Aborting..." );
62 return StatusCode::FAILURE;
74 #ifndef XAOD_STANDALONE
94 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.
◆ updateJvt()
Calculate the updated JVT.
jet - jet for which JVT is updated The new value for JVT is returned.
Implements IJetUpdateJvt.
Definition at line 200 of file JetVertexTaggerTool.cxx.
204 float jvfcorr = jvfCorrHandle(
jet);
205 std::vector<float> sumpttrk = sumPtTrkHandle(
jet);
219 ATH_MSG_ERROR(
"No hard scatter vertex found. Returning JVT=-1");
227 const float rptnew = sumpttrk[HSvertex->
index() - (*vertices)[0]->index()]/
jet.pt();
◆ updateVHKA()
◆ m_detStore
◆ m_evtStore
◆ m_fn
TString JetVertexTaggerTool::m_fn |
|
private |
◆ m_jetContainerName
Gaudi::Property<std::string> JetVertexTaggerTool::m_jetContainerName {this,"JetContainer", "", "SG key for the input jet container"} |
|
private |
◆ m_jvfCorrKey
◆ m_jvfCorrVtxKey
◆ m_jvtfileName
Gaudi::Property<std::string> JetVertexTaggerTool::m_jvtfileName {this, "JVTFileName", "JetMomentTools/JVTlikelihood_20140805.root", "JVT likelihood file name"} |
|
private |
◆ m_jvthisto
TH2F* JetVertexTaggerTool::m_jvthisto |
|
private |
◆ m_jvtKey
◆ m_jvtlikelihoodHistName
Gaudi::Property<std::string> JetVertexTaggerTool::m_jvtlikelihoodHistName {this, "JVTLikelihoodHistName", "JVTRootCore_kNN100trim_pt20to50_Likelihood", "JVT likelihood histogram name"} |
|
private |
◆ m_jvtVecKey
◆ m_rptKey
◆ m_rptVecKey
◆ m_sumPtTrkKey
◆ m_suppressInputDeps
Gaudi::Property<bool> JetVertexTaggerTool::m_suppressInputDeps {this, "SuppressInputDependence", false, "Will JVFCorr and SumPtTrk be created in the same algorithm that uses this tool?"} |
|
private |
◆ m_useOriginVertex
Gaudi::Property<bool> JetVertexTaggerTool::m_useOriginVertex = {this, "UseOriginVertex", false, "use origin vertex for each jet"} |
|
private |
◆ m_varHandleArraysDeclared
◆ m_vertexContainer_key
◆ m_vhka
The documentation for this class was generated from the following files:
SG::ReadDecorHandleKey< xAOD::JetContainer > m_jvfCorrKey
SG::ReadDecorHandleKey< xAOD::JetContainer > m_jvfCorrVtxKey
Gaudi::Property< std::string > m_jetContainerName
const_pointer_type cptr()
Dereference the pointer.
Gaudi::Property< std::string > m_jvtlikelihoodHistName
Gaudi::Details::PropertyBase & declareProperty(Gaudi::Property< T > &t)
SG::ReadDecorHandleKey< xAOD::JetContainer > m_sumPtTrkKey
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)
Gaudi::Property< bool > m_useOriginVertex
StoreGateSvc_t m_evtStore
Pointer to StoreGate (event store by default)
std::vector< SG::VarHandleKeyArray * > m_vhka
SG::WriteDecorHandleKey< xAOD::JetContainer > m_rptKey
#define ATH_MSG_VERBOSE(x)
def TH2F(name, title, nxbins, bins_par2, bins_par3, bins_par4, bins_par5=None, bins_par6=None, path='', **kwargs)
SG::WriteDecorHandleKey< xAOD::JetContainer > m_rptVecKey
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.
SG::WriteDecorHandleKey< xAOD::JetContainer > m_jvtVecKey
SG::WriteDecorHandleKey< xAOD::JetContainer > m_jvtKey
Handle class for adding a decoration to an object.
const std::string & name(Level lvl)
Convenience function for translating message levels to strings.
Gaudi::Property< std::string > m_jvtfileName
StoreGateSvc_t m_detStore
Pointer to StoreGate (detector store by default)
size_t index() const
Return the index of this element within its container.
virtual bool isValid() override final
Can the handle be successfully dereferenced?
float evaluateJvt(float rpt, float jvfcorr) const
virtual void renounce()=0
std::conditional< std::is_base_of< SG::VarHandleKeyArray, T >::value, VarHandleKeyArrayType, type2 >::type type
Gaudi::Property< bool > m_suppressInputDeps
std::string PathResolverFindCalibFile(const std::string &logical_file_name)
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.
const xAOD::Vertex * findHSVertex() const
SG::ReadHandleKey< xAOD::VertexContainer > m_vertexContainer_key
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>
bool empty() const noexcept
Returns true if the collection is empty.