ATLAS Offline Software
Loading...
Searching...
No Matches
NSubjettinessTool Class Reference

#include <NSubjettinessTool.h>

Inheritance diagram for NSubjettinessTool:
Collaboration diagram for NSubjettinessTool:

Classes

struct  moments_t
 N-subjettiness moments structure. More...

Public Member Functions

 NSubjettinessTool (const std::string &name)
StatusCode initialize () override
 Dummy implementation of the initialisation function.
StatusCode modify (xAOD::JetContainer &jets) const override
 Loop over calls to modifyJet.
ServiceHandle< StoreGateSvc > & evtStore ()
 The standard StoreGateSvc (event store) Returns (kind of) a pointer to the StoreGateSvc.
const ServiceHandle< StoreGateSvc > & detStore () const
 The standard StoreGateSvc/DetectorStore Returns (kind of) a pointer to the StoreGateSvc.
virtual StatusCode sysInitialize () override
 Perform system initialization for an algorithm.
virtual StatusCode sysStart () override
 Handle START transition.
virtual std::vector< Gaudi::DataHandle * > inputHandles () const override
 Return this algorithm's input handles.
virtual std::vector< Gaudi::DataHandle * > outputHandles () const override
 Return this algorithm's output handles.
Gaudi::Details::PropertyBase & declareProperty (Gaudi::Property< T, V, H > &t)
void updateVHKA (Gaudi::Details::PropertyBase &)
MsgStream & msg () const
bool msgLvl (const MSG::Level lvl) const
Additional helper functions, not directly mimicking Athena
template<class T>
const T * getProperty (const std::string &name) const
 Get one of the tool's properties.
const std::string & msg_level_name () const __attribute__((deprecated))
 A deprecated function for getting the message level's name.
const std::string & getName (const void *ptr) const
 Get the name of an object that is / should be in the event store.
SG::sgkey_t getKey (const void *ptr) const
 Get the (hashed) key of an object that is in the event store.

Protected Member Functions

bool SetupDecoration (fastjet::PseudoJet &pseudojet, const xAOD::Jet &jet, bool requireJetStructure=false) const
bool checkForConstituents (const xAOD::Jet &jet) const
fastjet::PseudoJet buildPseudoJet (const xAOD::Jet &jet, bool requireJetStructure=false) const
fastjet::PseudoJet buildPseudoJet (const std::vector< const xAOD::IParticle * > &iparticles) const
virtual void print () const
 Print the state of the tool.
virtual int modifyJet (xAOD::Jet &jet) const
 Modify a single jet. This is obsolete and set to be removed.
void renounceArray (SG::VarHandleKeyArray &handlesArray)
 remove all handles from I/O resolution
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)
void extraDeps_update_handler (Gaudi::Details::PropertyBase &ExtraDeps)
 Add StoreName to extra input/output deps as needed.

Protected Attributes

std::string m_inputContainer
std::string m_prefix

Private Types

typedef ServiceHandle< StoreGateSvcStoreGateSvc_t

Private Member Functions

Gaudi::Details::PropertyBase & declareGaudiProperty (Gaudi::Property< T, V, H > &hndl, const SG::VarHandleKeyType &)
 specialization for handling Gaudi::Property<SG::VarHandleKey>

Private Attributes

Gaudi::Property< std::string > m_jetContainerName
float m_Alpha
 Configurable as properties.
std::vector< float > m_rawAlphaVals
bool m_doDichroic
 Vector of input values before cleaning.
std::vector< std::pair< float, moments_t > > m_moments
 Map of decorators using alpha as the key.
SG::WriteDecorHandleKeyArray< xAOD::JetContainerm_Tau1_Keys
SG::WriteDecorHandleKeyArray< xAOD::JetContainerm_Tau2_Keys
SG::WriteDecorHandleKeyArray< xAOD::JetContainerm_Tau3_Keys
SG::WriteDecorHandleKeyArray< xAOD::JetContainerm_Tau4_Keys
SG::WriteDecorHandleKeyArray< xAOD::JetContainerm_Tau2_ungroomed_Keys
SG::WriteDecorHandleKeyArray< xAOD::JetContainerm_Tau3_ungroomed_Keys
SG::WriteDecorHandleKeyArray< xAOD::JetContainerm_Tau4_ungroomed_Keys
SG::WriteDecorHandleKeyArray< xAOD::JetContainerm_Tau1_wta_Keys
SG::WriteDecorHandleKeyArray< xAOD::JetContainerm_Tau2_wta_Keys
SG::WriteDecorHandleKeyArray< xAOD::JetContainerm_Tau3_wta_Keys
SG::WriteDecorHandleKeyArray< xAOD::JetContainerm_Tau4_wta_Keys
SG::WriteDecorHandleKeyArray< xAOD::JetContainerm_Tau2_wta_ungroomed_Keys
SG::WriteDecorHandleKeyArray< xAOD::JetContainerm_Tau3_wta_ungroomed_Keys
SG::WriteDecorHandleKeyArray< xAOD::JetContainerm_Tau4_wta_ungroomed_Keys
StoreGateSvc_t m_evtStore
 Pointer to StoreGate (event store by default)
StoreGateSvc_t m_detStore
 Pointer to StoreGate (detector store by default)
std::vector< SG::VarHandleKeyArray * > m_vhka
bool m_varHandleArraysDeclared

Detailed Description


The default behavior of this tool is to use alpha = 1.0, but multiple values of alpha can be used simultaneously. The property AlphaList should be passed a list of floats. Values of < 0 or > 10 may result in problematic output variable names and all values will be rounded to the nearest 0.1. No suffix will be added to the outputs for alpha = 1.0 and for other values a suffix of _AlphaN will be added where N = int(10*alpha).

The DoDichroic option adds dichroic N-subjettiness ratios described in

https://arxiv.org/abs/1612.03917

Definition at line 28 of file NSubjettinessTool.h.

Member Typedef Documentation

◆ StoreGateSvc_t

typedef ServiceHandle<StoreGateSvc> AthCommonDataStore< AthCommonMsg< AlgTool > >::StoreGateSvc_t
privateinherited

Definition at line 388 of file AthCommonDataStore.h.

Constructor & Destructor Documentation

◆ NSubjettinessTool()

NSubjettinessTool::NSubjettinessTool ( const std::string & name)

Definition at line 14 of file NSubjettinessTool.cxx.

14 :
16{
17 declareProperty("Alpha", m_Alpha = 1.0);
18 declareProperty("AlphaList", m_rawAlphaVals = {});
19 declareProperty("DoDichroic", m_doDichroic = false);
20}
Gaudi::Details::PropertyBase & declareProperty(Gaudi::Property< T, V, H > &t)
JetSubStructureMomentToolsBase(const std::string &name)
std::vector< float > m_rawAlphaVals
bool m_doDichroic
Vector of input values before cleaning.
float m_Alpha
Configurable as properties.

Member Function Documentation

◆ buildPseudoJet() [1/2]

fastjet::PseudoJet JetSubStructureMomentToolsBase::buildPseudoJet ( const std::vector< const xAOD::IParticle * > & iparticles) const
protectedinherited

Definition at line 59 of file JetSubStructureMomentToolsBase.cxx.

59 {
60 std::vector<fastjet::PseudoJet> pjs;
61 pjs.reserve(iparticles.size());
62 for (const auto *iparticle : iparticles)
63 pjs.emplace_back(iparticle->p4());
64 return fastjet::join(pjs);
65}

◆ buildPseudoJet() [2/2]

fastjet::PseudoJet JetSubStructureMomentToolsBase::buildPseudoJet ( const xAOD::Jet & jet,
bool requireJetStructure = false ) const
protectedinherited

Definition at line 54 of file JetSubStructureMomentToolsBase.cxx.

54 {
55 std::vector<fastjet::PseudoJet> constit_pseudojets = jet::JetConstituentFiller::constituentPseudoJets(jet,true,requireJetStructure);
56 return fastjet::join(constit_pseudojets);
57}
static PseudoJetVector constituentPseudoJets(const xAOD::Jet &jet, bool ignoreGhosts=true, bool requireJetStructure=false)
Returns the jet's constituents as a vector of PseudoJet if ignoreGhosts==true, ghost constituents are...

◆ checkForConstituents()

bool JetSubStructureMomentToolsBase::checkForConstituents ( const xAOD::Jet & jet) const
inlineprotectedinherited

Definition at line 33 of file JetSubStructureMomentToolsBase.h.

33 {
34 if(jet.numConstituents() == 0) {
35 ATH_MSG_WARNING("Attempting to use a substructure tool on a jet that has no constituent");
36 return false;
37 } else {
38 return true;
39 }
40 }
#define ATH_MSG_WARNING(x)
size_t numConstituents() const
Number of constituents in this jets (this is valid even when reading a file where the constituents ha...
Definition Jet_v1.cxx:153

◆ declareGaudiProperty()

Gaudi::Details::PropertyBase & AthCommonDataStore< AthCommonMsg< AlgTool > >::declareGaudiProperty ( Gaudi::Property< T, V, H > & hndl,
const SG::VarHandleKeyType &  )
inlineprivateinherited

specialization for handling Gaudi::Property<SG::VarHandleKey>

Definition at line 156 of file AthCommonDataStore.h.

158 {
160 hndl.value(),
161 hndl.documentation());
162
163 }

◆ declareProperty()

Gaudi::Details::PropertyBase & AthCommonDataStore< AthCommonMsg< AlgTool > >::declareProperty ( Gaudi::Property< T, V, H > & t)
inlineinherited

Definition at line 145 of file AthCommonDataStore.h.

145 {
146 typedef typename SG::HandleClassifier<T>::type htype;
148 }
Gaudi::Details::PropertyBase & declareGaudiProperty(Gaudi::Property< T, V, H > &hndl, const SG::VarHandleKeyType &)
specialization for handling Gaudi::Property<SG::VarHandleKey>

◆ detStore()

const ServiceHandle< StoreGateSvc > & AthCommonDataStore< AthCommonMsg< AlgTool > >::detStore ( ) const
inlineinherited

The standard StoreGateSvc/DetectorStore Returns (kind of) a pointer to the StoreGateSvc.

Definition at line 95 of file AthCommonDataStore.h.

◆ evtStore()

ServiceHandle< StoreGateSvc > & AthCommonDataStore< AthCommonMsg< AlgTool > >::evtStore ( )
inlineinherited

The standard StoreGateSvc (event store) Returns (kind of) a pointer to the StoreGateSvc.

Definition at line 85 of file AthCommonDataStore.h.

◆ extraDeps_update_handler()

void AthCommonDataStore< AthCommonMsg< AlgTool > >::extraDeps_update_handler ( Gaudi::Details::PropertyBase & ExtraDeps)
protectedinherited

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

◆ getKey()

SG::sgkey_t asg::AsgTool::getKey ( const void * ptr) const
inherited

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
ptrThe 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.

119 {
120
121#ifdef XAOD_STANDALONE
122 // In case we use @c xAOD::TEvent, we have a direct function call
123 // for this.
124 return evtStore()->event()->getKey( ptr );
125#else
126 const SG::DataProxy* proxy = evtStore()->proxy( ptr );
127 return ( proxy == nullptr ? 0 : proxy->sgkey() );
128#endif // XAOD_STANDALONE
129 }
ServiceHandle< StoreGateSvc > & evtStore()

◆ 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
ptrThe 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.

106 {
107
108#ifdef XAOD_STANDALONE
109 // In case we use @c xAOD::TEvent, we have a direct function call
110 // for this.
111 return evtStore()->event()->getName( ptr );
112#else
113 const SG::DataProxy* proxy = evtStore()->proxy( ptr );
114 static const std::string dummy = "";
115 return ( proxy == nullptr ? dummy : proxy->name() );
116#endif // XAOD_STANDALONE
117 }

◆ getProperty()

template<class T>
const T * asg::AsgTool::getProperty ( const std::string & name) const
inherited

Get one of the tool's properties.

◆ initialize()

StatusCode NSubjettinessTool::initialize ( void )
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...

Call base class initialize to fix up m_prefix

Add alpha = 1.0 by default

Add alpha = m_Alpha by default to keep backwards compatibility

Give warning about deprecation

Use m_Alpha to not break analysis code

Clean up input list of alpha values

Round to the nearest 0.1

Skip negative values of alpha

Store value. std::map::emplace prevents duplicate entries

Reimplemented from JetSubStructureMomentToolsBase.

Definition at line 22 of file NSubjettinessTool.cxx.

22 {
23 if(m_jetContainerName.empty()){
24 ATH_MSG_ERROR("NSubjettinessTool needs to have its input jet container name configured!");
25 return StatusCode::FAILURE;
26 }
27
30
32 m_moments.emplace_back( 1.0, moments_t(1.0, m_prefix) );
33
35 if( std::abs(m_Alpha-1.0) > 1.0e-5 ) {
36
38 ATH_MSG_WARNING( "The Alpha property is deprecated, please use the AlphaList property to provide a list of values" );
39
41 m_moments.emplace_back( m_Alpha, moments_t(m_Alpha, m_prefix) );
42
43 }
44
46 for( float alpha : m_rawAlphaVals ) {
47
49 float alphaFix = round( alpha * 10.0 ) / 10.0;
50 if( std::abs(alpha-alphaFix) > 1.0e-5 ) ATH_MSG_DEBUG( "alpha = " << alpha << " has been rounded to " << alphaFix );
51
53 if( alphaFix < 0.0 ) {
54 ATH_MSG_WARNING( "alpha must be positive. Skipping alpha = " << alpha );
55 continue;
56 }
57
59 m_moments.emplace_back( alphaFix, moments_t(alphaFix, m_prefix) );
60
61 }
62
63 for( auto const& moment : m_moments ) {
64 ATH_MSG_DEBUG( "Including alpha = " << moment.first );
65 }
66
67 // Initialise WriteDecorHandleKeys
68 for( const auto& [alpha, moment] : m_moments ) {
69 m_Tau1_Keys.emplace_back(m_jetContainerName + "." + moment.prefix +
70 "Tau1" + moment.suffix);
71 m_Tau2_Keys.emplace_back(m_jetContainerName + "." + moment.prefix +
72 "Tau2" + moment.suffix);
73 m_Tau3_Keys.emplace_back(m_jetContainerName + "." + moment.prefix +
74 "Tau3" + moment.suffix);
75 m_Tau4_Keys.emplace_back(m_jetContainerName + "." + moment.prefix +
76 "Tau4" + moment.suffix);
77
78 m_Tau2_ungroomed_Keys.emplace_back(m_jetContainerName + "." + moment.prefix +
79 "Tau2_ungroomed" + moment.suffix);
80 m_Tau3_ungroomed_Keys.emplace_back(m_jetContainerName + "." + moment.prefix +
81 "Tau3_ungroomed" + moment.suffix);
82 m_Tau4_ungroomed_Keys.emplace_back(m_jetContainerName + "." + moment.prefix +
83 "Tau4_ungroomed" + moment.suffix);
84
85 m_Tau1_wta_Keys.emplace_back(m_jetContainerName + "." + moment.prefix +
86 "Tau1_wta" + moment.suffix);
87 m_Tau2_wta_Keys.emplace_back(m_jetContainerName + "." + moment.prefix +
88 "Tau2_wta" + moment.suffix);
89 m_Tau3_wta_Keys.emplace_back(m_jetContainerName + "." + moment.prefix +
90 "Tau3_wta" + moment.suffix);
91 m_Tau4_wta_Keys.emplace_back(m_jetContainerName + "." + moment.prefix +
92 "Tau4_wta" + moment.suffix);
93
94 m_Tau2_wta_ungroomed_Keys.emplace_back(m_jetContainerName + "." + moment.prefix +
95 "Tau2_wta_ungroomed" + moment.suffix);
96 m_Tau3_wta_ungroomed_Keys.emplace_back(m_jetContainerName + "." + moment.prefix +
97 "Tau3_wta_ungroomed" + moment.suffix);
98 m_Tau4_wta_ungroomed_Keys.emplace_back(m_jetContainerName + "." + moment.prefix +
99 "Tau4_wta_ungroomed" + moment.suffix);
100 }
101
102 ATH_CHECK(m_Tau1_Keys.initialize());
103 ATH_CHECK(m_Tau2_Keys.initialize());
104 ATH_CHECK(m_Tau3_Keys.initialize());
105 ATH_CHECK(m_Tau4_Keys.initialize());
106
107 ATH_CHECK(m_Tau2_ungroomed_Keys.initialize());
108 ATH_CHECK(m_Tau3_ungroomed_Keys.initialize());
109 ATH_CHECK(m_Tau4_ungroomed_Keys.initialize());
110
111 ATH_CHECK(m_Tau1_wta_Keys.initialize());
112 ATH_CHECK(m_Tau2_wta_Keys.initialize());
113 ATH_CHECK(m_Tau3_wta_Keys.initialize());
114 ATH_CHECK(m_Tau4_wta_Keys.initialize());
115
119
120 return StatusCode::SUCCESS;
121}
#define ATH_CHECK
Evaluate an expression and check for errors.
#define ATH_MSG_ERROR(x)
#define ATH_MSG_DEBUG(x)
StatusCode initialize()
Dummy implementation of the initialisation function.
std::vector< std::pair< float, moments_t > > m_moments
Map of decorators using alpha as the key.
SG::WriteDecorHandleKeyArray< xAOD::JetContainer > m_Tau2_ungroomed_Keys
SG::WriteDecorHandleKeyArray< xAOD::JetContainer > m_Tau4_ungroomed_Keys
SG::WriteDecorHandleKeyArray< xAOD::JetContainer > m_Tau4_Keys
SG::WriteDecorHandleKeyArray< xAOD::JetContainer > m_Tau1_Keys
SG::WriteDecorHandleKeyArray< xAOD::JetContainer > m_Tau3_wta_ungroomed_Keys
SG::WriteDecorHandleKeyArray< xAOD::JetContainer > m_Tau3_Keys
SG::WriteDecorHandleKeyArray< xAOD::JetContainer > m_Tau2_Keys
SG::WriteDecorHandleKeyArray< xAOD::JetContainer > m_Tau3_wta_Keys
Gaudi::Property< std::string > m_jetContainerName
SG::WriteDecorHandleKeyArray< xAOD::JetContainer > m_Tau2_wta_Keys
SG::WriteDecorHandleKeyArray< xAOD::JetContainer > m_Tau4_wta_Keys
SG::WriteDecorHandleKeyArray< xAOD::JetContainer > m_Tau1_wta_Keys
SG::WriteDecorHandleKeyArray< xAOD::JetContainer > m_Tau3_ungroomed_Keys
SG::WriteDecorHandleKeyArray< xAOD::JetContainer > m_Tau4_wta_ungroomed_Keys
SG::WriteDecorHandleKeyArray< xAOD::JetContainer > m_Tau2_wta_ungroomed_Keys
float round(const float toRound, const unsigned int decimals)
Definition Mdt.cxx:27
N-subjettiness moments structure.

◆ inputHandles()

virtual std::vector< Gaudi::DataHandle * > AthCommonDataStore< AthCommonMsg< AlgTool > >::inputHandles ( ) const
overridevirtualinherited

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()

StatusCode NSubjettinessTool::modify ( xAOD::JetContainer & jets) const
overridevirtual

Loop over calls to modifyJet.

Bool to decide whether calculation should be performed

Bool to decide if ungroomed jet moments should be calculated

Get parent jet

Return error is parent element link is broken

This needs to be redone for each jet since it depends on the size parameter

These calculators need to be created for each jet due to the jet size parameter dependence in the normalized measure

These calculators need to be created for each jet due to the jet size parameter dependence in the normalized measure

Reimplemented from JetModifierBase.

Definition at line 123 of file NSubjettinessTool.cxx.

123 {
124
125 std::vector<SG::WriteDecorHandle<xAOD::JetContainer, float>> wdhs_Tau1;
126 std::vector<SG::WriteDecorHandle<xAOD::JetContainer, float>> wdhs_Tau2;
127 std::vector<SG::WriteDecorHandle<xAOD::JetContainer, float>> wdhs_Tau3;
128 std::vector<SG::WriteDecorHandle<xAOD::JetContainer, float>> wdhs_Tau4;
129
130 std::vector<SG::WriteDecorHandle<xAOD::JetContainer, float>> wdhs_Tau2_ungroomed;
131 std::vector<SG::WriteDecorHandle<xAOD::JetContainer, float>> wdhs_Tau3_ungroomed;
132 std::vector<SG::WriteDecorHandle<xAOD::JetContainer, float>> wdhs_Tau4_ungroomed;
133
134 std::vector<SG::WriteDecorHandle<xAOD::JetContainer, float>> wdhs_Tau1_wta;
135 std::vector<SG::WriteDecorHandle<xAOD::JetContainer, float>> wdhs_Tau2_wta;
136 std::vector<SG::WriteDecorHandle<xAOD::JetContainer, float>> wdhs_Tau3_wta;
137 std::vector<SG::WriteDecorHandle<xAOD::JetContainer, float>> wdhs_Tau4_wta;
138
139 std::vector<SG::WriteDecorHandle<xAOD::JetContainer, float>> wdhs_Tau2_wta_ungroomed;
140 std::vector<SG::WriteDecorHandle<xAOD::JetContainer, float>> wdhs_Tau3_wta_ungroomed;
141 std::vector<SG::WriteDecorHandle<xAOD::JetContainer, float>> wdhs_Tau4_wta_ungroomed;
142
143 for(unsigned int i=0; i<m_moments.size(); i++) {
144 wdhs_Tau1.emplace_back(m_Tau1_Keys[i]);
145 wdhs_Tau2.emplace_back(m_Tau2_Keys[i]);
146 wdhs_Tau3.emplace_back(m_Tau3_Keys[i]);
147 wdhs_Tau4.emplace_back(m_Tau4_Keys[i]);
148
149 wdhs_Tau2_ungroomed.emplace_back(m_Tau2_ungroomed_Keys[i]);
150 wdhs_Tau3_ungroomed.emplace_back(m_Tau3_ungroomed_Keys[i]);
151 wdhs_Tau4_ungroomed.emplace_back(m_Tau4_ungroomed_Keys[i]);
152
153 wdhs_Tau1_wta.emplace_back(m_Tau1_wta_Keys[i]);
154 wdhs_Tau2_wta.emplace_back(m_Tau2_wta_Keys[i]);
155 wdhs_Tau3_wta.emplace_back(m_Tau3_wta_Keys[i]);
156 wdhs_Tau4_wta.emplace_back(m_Tau4_wta_Keys[i]);
157
158 wdhs_Tau2_wta_ungroomed.emplace_back(m_Tau2_wta_ungroomed_Keys[i]);
159 wdhs_Tau3_wta_ungroomed.emplace_back(m_Tau3_wta_ungroomed_Keys[i]);
160 wdhs_Tau4_wta_ungroomed.emplace_back(m_Tau4_wta_ungroomed_Keys[i]);
161 }
162
163 for(const xAOD::Jet* injet : jets){
164 fastjet::PseudoJet jet;
165 fastjet::PseudoJet jet_ungroomed;
166
168 bool calculate = SetupDecoration(jet, *injet);
169
171 bool calculate_ungroomed = false;
172
173 if( m_doDichroic ) {
174
176 static const SG::ConstAccessor<ElementLink<xAOD::JetContainer> > ParentAcc ("Parent");
177 ElementLink<xAOD::JetContainer> parentLink = ParentAcc (*injet);
178
180 if( !parentLink.isValid() ) {
181 ATH_MSG_ERROR( "Parent element link is not valid. Aborting" );
182 return StatusCode::FAILURE;
183 }
184
185 const xAOD::Jet* parentJet = *(parentLink);
186 calculate_ungroomed = SetupDecoration(jet_ungroomed,*parentJet);
187 }
188
189 // Supress a warning about undefined behavior in the fastjet
190 // WTA_KT_Axes ctor:
191 // .../fastjet/contrib/AxesDefinition.hh:551:43: runtime error: member access within address 0x7ffd770850d0 which does not point to an object of type 'WTA_KT_Axes'
192 // 0x7ffd770850d0: note: object has invalid vptr
193 std::once_flag oflag;
194 std::call_once (oflag, CxxUtils::ubsan_suppress,
195 []() { fastjet::contrib::WTA_KT_Axes x; });
196
197 for(unsigned int i=0; i<m_moments.size(); i++) {
198
199 float alpha = m_moments[i].first;
200
202 fastjet::contrib::NormalizedCutoffMeasure normalized_measure
203 (alpha, injet->getSizeParameter(), 1000000);
204
205 float Tau1_value = -999;
206 float Tau2_value = -999;
207 float Tau3_value = -999;
208 float Tau4_value = -999;
209
210 float Tau2_ungroomed_value = -999;
211 float Tau3_ungroomed_value = -999;
212 float Tau4_ungroomed_value = -999;
213
214 float Tau1_wta_value = -999;
215 float Tau2_wta_value = -999;
216 float Tau3_wta_value = -999;
217 float Tau4_wta_value = -999;
218
219 float Tau2_wta_ungroomed_value = -999;
220 float Tau3_wta_ungroomed_value = -999;
221 float Tau4_wta_ungroomed_value = -999;
222
223 if( calculate ) {
224
227 fastjet::contrib::KT_Axes kt_axes;
228 JetSubStructureUtils::Nsubjettiness tau1(1, kt_axes, normalized_measure);
229 JetSubStructureUtils::Nsubjettiness tau2(2, kt_axes, normalized_measure);
230 JetSubStructureUtils::Nsubjettiness tau3(3, kt_axes, normalized_measure);
231 JetSubStructureUtils::Nsubjettiness tau4(4, kt_axes, normalized_measure);
232
233 Tau1_value = tau1.result(jet);
234 Tau2_value = tau2.result(jet);
235 Tau3_value = tau3.result(jet);
236 Tau4_value = tau4.result(jet);
237
238 if( calculate_ungroomed ) {
239 Tau2_ungroomed_value = tau2.result(jet_ungroomed);
240 Tau3_ungroomed_value = tau3.result(jet_ungroomed);
241 Tau4_ungroomed_value = tau4.result(jet_ungroomed);
242 }
243
246 fastjet::contrib::WTA_KT_Axes wta_kt_axes;
247 JetSubStructureUtils::Nsubjettiness tau1_wta(1, wta_kt_axes, normalized_measure);
248 JetSubStructureUtils::Nsubjettiness tau2_wta(2, wta_kt_axes, normalized_measure);
249 JetSubStructureUtils::Nsubjettiness tau3_wta(3, wta_kt_axes, normalized_measure);
250 JetSubStructureUtils::Nsubjettiness tau4_wta(4, wta_kt_axes, normalized_measure);
251
252 Tau1_wta_value = tau1_wta.result(jet);
253 Tau2_wta_value = tau2_wta.result(jet);
254 Tau3_wta_value = tau3_wta.result(jet);
255 Tau4_wta_value = tau4_wta.result(jet);
256
257 if( calculate_ungroomed ) {
258 Tau2_wta_ungroomed_value = tau2_wta.result(jet_ungroomed);
259 Tau3_wta_ungroomed_value = tau3_wta.result(jet_ungroomed);
260 Tau4_wta_ungroomed_value = tau4_wta.result(jet_ungroomed);
261 }
262
263 }
264
265 wdhs_Tau1[i](*injet) = Tau1_value;
266 wdhs_Tau2[i](*injet) = Tau2_value;
267 wdhs_Tau3[i](*injet) = Tau3_value;
268 wdhs_Tau4[i](*injet) = Tau4_value;
269
270 wdhs_Tau2_ungroomed[i](*injet) = Tau2_ungroomed_value;
271 wdhs_Tau3_ungroomed[i](*injet) = Tau3_ungroomed_value;
272 wdhs_Tau4_ungroomed[i](*injet) = Tau4_ungroomed_value;
273
274 wdhs_Tau1_wta[i](*injet) = Tau1_wta_value;
275 wdhs_Tau2_wta[i](*injet) = Tau2_wta_value;
276 wdhs_Tau3_wta[i](*injet) = Tau3_wta_value;
277 wdhs_Tau4_wta[i](*injet) = Tau4_wta_value;
278
279 wdhs_Tau2_wta_ungroomed[i](*injet) = Tau2_wta_ungroomed_value;
280 wdhs_Tau3_wta_ungroomed[i](*injet) = Tau3_wta_ungroomed_value;
281 wdhs_Tau4_wta_ungroomed[i](*injet) = Tau4_wta_ungroomed_value;
282 }
283
284 }
285
286 return StatusCode::SUCCESS;
287}
#define x
bool SetupDecoration(fastjet::PseudoJet &pseudojet, const xAOD::Jet &jet, bool requireJetStructure=false) const
void ubsan_suppress(void(*func)())
Helper for suppressing ubsan warnings.
void calculate(xAOD::Electron &electron)
Jet_v1 Jet
Definition of the current "jet version".

◆ modifyJet()

◆ msg()

MsgStream & AthCommonMsg< AlgTool >::msg ( ) const
inlineinherited

Definition at line 24 of file AthCommonMsg.h.

24 {
25 return this->msgStream();
26 }

◆ 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.

101 {
102
103 return MSG::name( msg().level() );
104 }
MsgStream & msg() const
const std::string & name(Level lvl)
Convenience function for translating message levels to strings.
Definition MsgLevel.cxx:19

◆ msgLvl()

bool AthCommonMsg< AlgTool >::msgLvl ( const MSG::Level lvl) const
inlineinherited

Definition at line 30 of file AthCommonMsg.h.

30 {
31 return this->msgLevel(lvl);
32 }

◆ outputHandles()

virtual std::vector< Gaudi::DataHandle * > AthCommonDataStore< AthCommonMsg< AlgTool > >::outputHandles ( ) const
overridevirtualinherited

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 JetSubStructureMomentToolsBase::print ( ) const
protectedvirtualinherited

Print the state of the tool.

Reimplemented from asg::AsgTool.

Reimplemented in KtDeltaRTool, and LundVariablesTool.

Definition at line 67 of file JetSubStructureMomentToolsBase.cxx.

67 {
68 ATH_MSG_INFO("Properties for JetSubStructureMomentTool " << name());
69 ATH_MSG_INFO("InputContainer: " << m_inputContainer);
70 ATH_MSG_INFO("Prefix: " << m_prefix);
71}
#define ATH_MSG_INFO(x)

◆ renounce()

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 > AthCommonDataStore< AthCommonMsg< AlgTool > >::renounce ( T & h)
inlineprotectedinherited

Definition at line 380 of file AthCommonDataStore.h.

381 {
382 h.renounce();
384 }
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)

◆ renounceArray()

void AthCommonDataStore< AthCommonMsg< AlgTool > >::renounceArray ( SG::VarHandleKeyArray & handlesArray)
inlineprotectedinherited

remove all handles from I/O resolution

Definition at line 364 of file AthCommonDataStore.h.

364 {
366 }

◆ SetupDecoration()

bool JetSubStructureMomentToolsBase::SetupDecoration ( fastjet::PseudoJet & pseudojet,
const xAOD::Jet & jet,
bool requireJetStructure = false ) const
protectedinherited

Definition at line 30 of file JetSubStructureMomentToolsBase.cxx.

30 {
31
32 bool decorate = true;
33
34 if (m_inputContainer.empty()) {
35 if (!checkForConstituents(jet))
36 decorate = false;
37 else pseudojet = buildPseudoJet(jet, requireJetStructure);
38 }
39 else {
40 std::vector<const xAOD::IParticle*> AssociatedParticles;
41 if (!(jet.getAssociatedObjects(m_inputContainer,AssociatedParticles))){
42 ATH_MSG_WARNING("InputContainer " << m_inputContainer << " unknown. Exiting..");
43 decorate = false;
44 }
45 ATH_MSG_VERBOSE("Found " << AssociatedParticles.size() << " associated particles");
46 if(AssociatedParticles.empty()) decorate = false;
47 else pseudojet = buildPseudoJet(AssociatedParticles);
48 }
49
50 return decorate;
51}
#define ATH_MSG_VERBOSE(x)
fastjet::PseudoJet buildPseudoJet(const xAOD::Jet &jet, bool requireJetStructure=false) const
bool checkForConstituents(const xAOD::Jet &jet) const
std::vector< const T * > getAssociatedObjects(const std::string &name) const
get associated objects as a vector<object> this compact form throws an exception if the object is not...
decorate(hto4l_controller, decorator, **kwargs)

◆ sysInitialize()

virtual StatusCode AthCommonDataStore< AthCommonMsg< AlgTool > >::sysInitialize ( )
overridevirtualinherited

Perform system initialization for an algorithm.

We override this to declare all the elements of handle key arrays at the end of initialization. See comments on updateVHKA.

Reimplemented in asg::AsgMetadataTool, AthCheckedComponent< AthAlgTool >, AthCheckedComponent<::AthAlgTool >, and DerivationFramework::CfAthAlgTool.

◆ sysStart()

virtual StatusCode AthCommonDataStore< AthCommonMsg< AlgTool > >::sysStart ( )
overridevirtualinherited

Handle START transition.

We override this in order to make sure that conditions handle keys can cache a pointer to the conditions container.

◆ updateVHKA()

void AthCommonDataStore< AthCommonMsg< AlgTool > >::updateVHKA ( Gaudi::Details::PropertyBase & )
inlineinherited

Definition at line 308 of file AthCommonDataStore.h.

308 {
309 // debug() << "updateVHKA for property " << p.name() << " " << p.toString()
310 // << " size: " << m_vhka.size() << endmsg;
311 for (auto &a : m_vhka) {
313 for (auto k : keys) {
314 k->setOwner(this);
315 }
316 }
317 }
std::vector< SG::VarHandleKeyArray * > m_vhka

Member Data Documentation

◆ m_Alpha

float NSubjettinessTool::m_Alpha
private

Configurable as properties.

Definition at line 70 of file NSubjettinessTool.h.

◆ m_detStore

StoreGateSvc_t AthCommonDataStore< AthCommonMsg< AlgTool > >::m_detStore
privateinherited

Pointer to StoreGate (detector store by default)

Definition at line 393 of file AthCommonDataStore.h.

◆ m_doDichroic

bool NSubjettinessTool::m_doDichroic
private

Vector of input values before cleaning.

Definition at line 72 of file NSubjettinessTool.h.

◆ m_evtStore

StoreGateSvc_t AthCommonDataStore< AthCommonMsg< AlgTool > >::m_evtStore
privateinherited

Pointer to StoreGate (event store by default)

Definition at line 390 of file AthCommonDataStore.h.

◆ m_inputContainer

std::string JetSubStructureMomentToolsBase::m_inputContainer
protectedinherited

Definition at line 29 of file JetSubStructureMomentToolsBase.h.

◆ m_jetContainerName

Gaudi::Property<std::string> NSubjettinessTool::m_jetContainerName
private
Initial value:
{
this, "JetContainer", "", "SG key for the input jet container"}

Definition at line 41 of file NSubjettinessTool.h.

41 {
42 this, "JetContainer", "", "SG key for the input jet container"};

◆ m_moments

std::vector<std::pair< float, moments_t > > NSubjettinessTool::m_moments
private

Map of decorators using alpha as the key.

Definition at line 75 of file NSubjettinessTool.h.

◆ m_prefix

std::string JetSubStructureMomentToolsBase::m_prefix
protectedinherited

Definition at line 30 of file JetSubStructureMomentToolsBase.h.

◆ m_rawAlphaVals

std::vector<float> NSubjettinessTool::m_rawAlphaVals
private

Definition at line 71 of file NSubjettinessTool.h.

◆ m_Tau1_Keys

SG::WriteDecorHandleKeyArray<xAOD::JetContainer> NSubjettinessTool::m_Tau1_Keys
private
Initial value:
{
this, "Tau1_Keys", {}}

Definition at line 77 of file NSubjettinessTool.h.

77 {
78 this, "Tau1_Keys", {}};

◆ m_Tau1_wta_Keys

SG::WriteDecorHandleKeyArray<xAOD::JetContainer> NSubjettinessTool::m_Tau1_wta_Keys
private
Initial value:
{
this, "Tau1_wta_Keys", {}}

Definition at line 93 of file NSubjettinessTool.h.

93 {
94 this, "Tau1_wta_Keys", {}};

◆ m_Tau2_Keys

SG::WriteDecorHandleKeyArray<xAOD::JetContainer> NSubjettinessTool::m_Tau2_Keys
private
Initial value:
{
this, "Tau2_Keys", {}}

Definition at line 79 of file NSubjettinessTool.h.

79 {
80 this, "Tau2_Keys", {}};

◆ m_Tau2_ungroomed_Keys

SG::WriteDecorHandleKeyArray<xAOD::JetContainer> NSubjettinessTool::m_Tau2_ungroomed_Keys
private
Initial value:
{
this, "Tau2_ungroomed_Keys", {}}

Definition at line 86 of file NSubjettinessTool.h.

86 {
87 this, "Tau2_ungroomed_Keys", {}};

◆ m_Tau2_wta_Keys

SG::WriteDecorHandleKeyArray<xAOD::JetContainer> NSubjettinessTool::m_Tau2_wta_Keys
private
Initial value:
{
this, "Tau2_wta_Keys", {}}

Definition at line 95 of file NSubjettinessTool.h.

95 {
96 this, "Tau2_wta_Keys", {}};

◆ m_Tau2_wta_ungroomed_Keys

SG::WriteDecorHandleKeyArray<xAOD::JetContainer> NSubjettinessTool::m_Tau2_wta_ungroomed_Keys
private
Initial value:
{
this, "Tau2_wta_ungroomed_Keys", {}}

Definition at line 102 of file NSubjettinessTool.h.

102 {
103 this, "Tau2_wta_ungroomed_Keys", {}};

◆ m_Tau3_Keys

SG::WriteDecorHandleKeyArray<xAOD::JetContainer> NSubjettinessTool::m_Tau3_Keys
private
Initial value:
{
this, "Tau3_Keys", {}}

Definition at line 81 of file NSubjettinessTool.h.

81 {
82 this, "Tau3_Keys", {}};

◆ m_Tau3_ungroomed_Keys

SG::WriteDecorHandleKeyArray<xAOD::JetContainer> NSubjettinessTool::m_Tau3_ungroomed_Keys
private
Initial value:
{
this, "Tau3_ungroomed_Keys", {}}

Definition at line 88 of file NSubjettinessTool.h.

88 {
89 this, "Tau3_ungroomed_Keys", {}};

◆ m_Tau3_wta_Keys

SG::WriteDecorHandleKeyArray<xAOD::JetContainer> NSubjettinessTool::m_Tau3_wta_Keys
private
Initial value:
{
this, "Tau3_wta_Keys", {}}

Definition at line 97 of file NSubjettinessTool.h.

97 {
98 this, "Tau3_wta_Keys", {}};

◆ m_Tau3_wta_ungroomed_Keys

SG::WriteDecorHandleKeyArray<xAOD::JetContainer> NSubjettinessTool::m_Tau3_wta_ungroomed_Keys
private
Initial value:
{
this, "Tau3_wta_ungroomed_Keys", {}}

Definition at line 104 of file NSubjettinessTool.h.

104 {
105 this, "Tau3_wta_ungroomed_Keys", {}};

◆ m_Tau4_Keys

SG::WriteDecorHandleKeyArray<xAOD::JetContainer> NSubjettinessTool::m_Tau4_Keys
private
Initial value:
{
this, "Tau4_Keys", {}}

Definition at line 83 of file NSubjettinessTool.h.

83 {
84 this, "Tau4_Keys", {}};

◆ m_Tau4_ungroomed_Keys

SG::WriteDecorHandleKeyArray<xAOD::JetContainer> NSubjettinessTool::m_Tau4_ungroomed_Keys
private
Initial value:
{
this, "Tau4_ungroomed_Keys", {}}

Definition at line 90 of file NSubjettinessTool.h.

90 {
91 this, "Tau4_ungroomed_Keys", {}};

◆ m_Tau4_wta_Keys

SG::WriteDecorHandleKeyArray<xAOD::JetContainer> NSubjettinessTool::m_Tau4_wta_Keys
private
Initial value:
{
this, "Tau4_wta_Keys", {}}

Definition at line 99 of file NSubjettinessTool.h.

99 {
100 this, "Tau4_wta_Keys", {}};

◆ m_Tau4_wta_ungroomed_Keys

SG::WriteDecorHandleKeyArray<xAOD::JetContainer> NSubjettinessTool::m_Tau4_wta_ungroomed_Keys
private
Initial value:
{
this, "Tau4_wta_ungroomed_Keys", {}}

Definition at line 106 of file NSubjettinessTool.h.

106 {
107 this, "Tau4_wta_ungroomed_Keys", {}};

◆ m_varHandleArraysDeclared

bool AthCommonDataStore< AthCommonMsg< AlgTool > >::m_varHandleArraysDeclared
privateinherited

Definition at line 399 of file AthCommonDataStore.h.

◆ m_vhka

std::vector<SG::VarHandleKeyArray*> AthCommonDataStore< AthCommonMsg< AlgTool > >::m_vhka
privateinherited

Definition at line 398 of file AthCommonDataStore.h.


The documentation for this class was generated from the following files: