ATLAS Offline Software
Loading...
Searching...
No Matches
HLT::MET::PUSplitPufitFex Class Reference

#include <PUSplitPufitFex.h>

Inheritance diagram for HLT::MET::PUSplitPufitFex:
Collaboration diagram for HLT::MET::PUSplitPufitFex:

Public Member Functions

 PUSplitPufitFex (const std::string &name, ISvcLocator *pSvcLocator)
 Constructor.
virtual StatusCode initialize () override
 Initialize the fex.
virtual StatusCode execute (const EventContext &context) const override
 Run the algorithm.
virtual StatusCode sysInitialize () override
 Override sysInitialize.
virtual bool isClonable () const override
 Specify if the algorithm is clonable.
virtual unsigned int cardinality () const override
 Cardinality (Maximum number of clones that can exist) special value 0 means that algorithm is reentrant.
virtual StatusCode sysExecute (const EventContext &ctx) override
 Execute an algorithm.
virtual const DataObjIDColl & extraOutputDeps () const override
 Return the list of extra output dependencies.
virtual bool filterPassed (const EventContext &ctx) const
virtual void setFilterPassed (bool state, const EventContext &ctx) const
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 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

Protected Member Functions

StatusCode initializeBase (const std::vector< std::string > &componentNames)
 Initialize the base class.
virtual StatusCode monitor (const xAOD::TrigMissingET &met, MonGroupBuilder &monitors) const
 Add monitor variables from an xAOD::TrigMissingET object.
virtual StatusCode flagMET (xAOD::TrigMissingET &met) const
 Flag suspicious values in the output MET.
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::vector< std::string > m_componentNames
 The names of the output MET components.

Private Types

typedef ServiceHandle< StoreGateSvcStoreGateSvc_t

Private Member Functions

virtual StatusCode fillMET (xAOD::TrigMissingET &met, const EventContext &context, MonGroupBuilder &monitors) const override
 Calculate and fill the output MET value.
double getSigma (const SignedKinematics &kin) const
 Calculate the estimate on the variance of a tower.
Gaudi::Details::PropertyBase & declareGaudiProperty (Gaudi::Property< T, V, H > &hndl, const SG::VarHandleKeyType &)
 specialization for handling Gaudi::Property<SG::VarHandleKey>

Private Attributes

SG::ReadHandleKey< xAOD::IParticleContainerm_inputKey
 Input objects.
SG::ReadDecorHandleKey< xAOD::IParticleContainerm_inputCategoryKey
Gaudi::Property< float > m_nSigma
 The sigma threshold.
Gaudi::Property< float > m_maxEta
 The eta range of the grid.
Gaudi::Property< std::size_t > m_nEtaBins
 The number of bins in eta.
Gaudi::Property< std::size_t > m_nPhiBins
Gaudi::Property< float > m_trimFraction
 The trimming fraction.
Gaudi::Property< float > m_caloNoise
 The coefficient of the noise term in the calo resolution estimate.
Gaudi::Property< float > m_caloStoch
 The coefficient of the stochastic term in the calo resolution estimate.
Gaudi::Property< float > m_constraintImportance
 The relative constraint importance.
Gaudi::Property< std::size_t > m_neutralThresholdMode
 The neutral threshold mode.
Gaudi::Property< bool > m_subtractCPUFromMean
 Whether to remove the cPU component from the tower expectations.
SG::WriteHandleKey< xAOD::TrigMissingETContainerm_metContainerKey
 The output MET object.
ToolHandle< GenericMonitoringToolm_monTool
 The monitoring tool.
Gaudi::Property< float > m_maxComponentMETSumEtRatio
Gaudi::Property< float > m_maxGlobalMETSumEtRatio
bool m_baseInitialised {false}
 Whether or not this class has been correctly initialised.
DataObjIDColl m_extendedExtraObjects
 Extra output dependency collection, extended by AthAlgorithmDHUpdate to add symlinks.
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

Definition at line 37 of file PUSplitPufitFex.h.

Member Typedef Documentation

◆ StoreGateSvc_t

typedef ServiceHandle<StoreGateSvc> AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::StoreGateSvc_t
privateinherited

Definition at line 388 of file AthCommonDataStore.h.

Constructor & Destructor Documentation

◆ PUSplitPufitFex()

HLT::MET::PUSplitPufitFex::PUSplitPufitFex ( const std::string & name,
ISvcLocator * pSvcLocator )

Constructor.

Definition at line 28 of file PUSplitPufitFex.cxx.

29 : FexBase(name, pSvcLocator)
30 {
31 }
FexBase(const std::string &name, ISvcLocator *pSvcLocator)
Constructor.
Definition FexBase.cxx:43

Member Function Documentation

◆ cardinality()

unsigned int AthCommonReentrantAlgorithm< Gaudi::Algorithm >::cardinality ( ) const
overridevirtualinherited

Cardinality (Maximum number of clones that can exist) special value 0 means that algorithm is reentrant.

Override this to return 0 for reentrant algorithms.

Definition at line 75 of file AthCommonReentrantAlgorithm.cxx.

64{
65 return 0;
66}

◆ declareGaudiProperty()

Gaudi::Details::PropertyBase & AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::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 }
Gaudi::Details::PropertyBase & declareProperty(Gaudi::Property< T, V, H > &t)

◆ declareProperty()

Gaudi::Details::PropertyBase & AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::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< Gaudi::Algorithm > >::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< Gaudi::Algorithm > >::evtStore ( )
inlineinherited

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

Definition at line 85 of file AthCommonDataStore.h.

◆ execute()

StatusCode HLT::MET::FexBase::execute ( const EventContext & context) const
overridevirtualinherited

Run the algorithm.

Definition at line 60 of file FexBase.cxx.

61 {
62 if (!m_baseInitialised) {
63 ATH_MSG_ERROR("Base class was not initialised! This means that the "
64 << "derived class was not correctly written!");
65 return StatusCode::FAILURE;
66 }
67 ATH_MSG_DEBUG("Executing " << name() << "...");
68 Monitored::Timer totalTimer("TIME_Total");
69 // Create the output
70 auto metCont = std::make_unique<xAOD::TrigMissingETContainer>();
71 auto metContAux = std::make_unique<xAOD::TrigMissingETAuxContainer>();
72 metCont->setStore(metContAux.get() );
73
74 // Create the actual output object
75 metCont->push_back(std::make_unique<xAOD::TrigMissingET>());
76 xAOD::TrigMissingET* met = metCont->back();
77
78 // Initialise the components
80 // We also need to initialise all of the values. This is not done by the EDM
81 // class so you can easily get missing aux element errors if you don't do
82 // this
83 met->setEx(0);
84 met->setEy(0);
85 met->setEz(0);
86 met->setSumEt(0);
87 met->setSumE(0);
88 met->setFlag(0);
89 met->setRoiWord(0);
90
91 MonGroupBuilder monitors;
92 CHECK( fillMET(*met, context, monitors) );
93 // Add flags
94 CHECK( flagMET(*met) );
95 // Add extra monitors
96 CHECK( monitor(*met, monitors) );
97 // Create the actual group and trigger the monitoring
98 monitors.build(m_monTool);
99
100 // Output REGTEST information
101 if (msgLvl(MSG::DEBUG) ) {
102 ATH_MSG_DEBUG( "REGTEST " << METComponent(*met) );
103 ATH_MSG_DEBUG( "REGTEST flag = " << met->flag() );
104 ATH_MSG_DEBUG( "REGTEST Name, status, values: ");
105 for (std::size_t ii = 0; ii < met->getNumberOfComponents(); ++ii)
106 ATH_MSG_DEBUG( "REGTEST "
107 << met->nameOfComponent(ii) << ", "
108 << met->statusComponent(ii) << ", "
109 << METComponent(ii, *met) );
110 }
111
112 // Push this output to the store
113 auto handle = SG::makeHandle(m_metContainerKey, context);
114 CHECK( handle.record( std::move(metCont), std::move(metContAux) ) );
115 return StatusCode::SUCCESS;
116 }
#define ATH_MSG_ERROR(x)
#define ATH_MSG_DEBUG(x)
#define CHECK(...)
Evaluate an expression and check for errors.
bool msgLvl(const MSG::Level lvl) const
virtual StatusCode flagMET(xAOD::TrigMissingET &met) const
Flag suspicious values in the output MET.
Definition FexBase.cxx:118
std::vector< std::string > m_componentNames
The names of the output MET components.
Definition FexBase.h:48
bool m_baseInitialised
Whether or not this class has been correctly initialised.
Definition FexBase.h:119
ToolHandle< GenericMonitoringTool > m_monTool
The monitoring tool.
Definition FexBase.h:106
virtual StatusCode fillMET(xAOD::TrigMissingET &met, const EventContext &context, MonGroupBuilder &monitors) const =0
Calculate and fill the output MET value.
SG::WriteHandleKey< xAOD::TrigMissingETContainer > m_metContainerKey
The output MET object.
Definition FexBase.h:103
virtual StatusCode monitor(const xAOD::TrigMissingET &met, MonGroupBuilder &monitors) const
Add monitor variables from an xAOD::TrigMissingET object.
Definition FexBase.cxx:141
int flag() const
Get the status flag.
void setEy(float s)
Set the y component of the missing energy.
void setRoiWord(uint32_t s)
Set the ROI word.
void setEx(float s)
Set the x component of the missing energy.
const std::string & nameOfComponent(unsigned int index) const
Get the name of a component.
void setSumE(float s)
Set the sum of the ET of the missing energy.
void setSumEt(float s)
Set the sum of the ET of the missing energy.
unsigned int getNumberOfComponents() const
Get the number of components.
short statusComponent(unsigned int index) const
Get Status.
void defineComponents(const std::vector< std::string > &componentNames)
Define each of the components by name.
void setFlag(int s)
Set the status flag.
void setEz(float s)
Set the z component of the missing energy.
SG::ReadCondHandle< T > makeHandle(const SG::ReadCondHandleKey< T > &key, const EventContext &ctx=Gaudi::Hive::currentContext())
TrigMissingET_v1 TrigMissingET
Define the most recent version of the TrigMissingET class.

◆ extraDeps_update_handler()

void AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::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

◆ extraOutputDeps()

const DataObjIDColl & AthCommonReentrantAlgorithm< Gaudi::Algorithm >::extraOutputDeps ( ) const
overridevirtualinherited

Return the list of extra output dependencies.

This list is extended to include symlinks implied by inheritance relations.

Definition at line 94 of file AthCommonReentrantAlgorithm.cxx.

90{
91 // If we didn't find any symlinks to add, just return the collection
92 // from the base class. Otherwise, return the extended collection.
93 if (!m_extendedExtraObjects.empty()) {
95 }
97}
An algorithm that can be simultaneously executed in multiple threads.

◆ fillMET()

StatusCode HLT::MET::PUSplitPufitFex::fillMET ( xAOD::TrigMissingET & met,
const EventContext & context,
MonGroupBuilder & monitors ) const
overrideprivatevirtual

Calculate and fill the output MET value.

Parameters
metThe object to fill
contextThe event context
monitors[out]Any extra monitors to fill

Implements HLT::MET::FexBase.

Definition at line 49 of file PUSplitPufitFex.cxx.

53 {
54 // Retrieve the input
55 auto input = SG::makeHandle(m_inputKey, context);
56 if (!input.isValid())
57 {
58 ATH_MSG_ERROR("Failed to retrieve " << m_inputKey);
59 return StatusCode::FAILURE;
60 }
61 auto categoryAcc = SG::makeHandle<int>(m_inputCategoryKey, context);
62
63 // Create the gridset
65
66 // Fill the grids from the input objects
67 for (const xAOD::IParticle *ipart : *input)
68 {
70 SignedKinematics kin = SignedKinematics::fromEnergyEtaPhi(
71 ipart->e(), ipart->eta(), ipart->phi());
72 switch (type)
73 {
75 gridset.get<PUClassification::NeutralForward>() += kin;
76 break;
78 gridset.get<PUClassification::ChargedHS>() += kin;
79 break;
81 gridset.get<PUClassification::ChargedPU>() += kin;
82 break;
83 default:
84 ATH_MSG_ERROR("Invalid PU category: " << type);
85 return StatusCode::FAILURE;
86 }
87 }
88
89 // Calculate the mean and variance from the 'nominal' grid
90 double mean;
91 double variance;
94 // Calculate the threshold
95 double threshold = mean + m_nSigma * sqrt(variance);
96
97 // Mask towers above the threshold
98 std::size_t count = 0;
99 for (PUSplitGrid &grid : gridset.grids)
100 for (PUSplitGrid::Tower &tower : grid)
101 if (tower.sumEt(m_neutralThresholdMode) > threshold)
102 {
103 tower.mask(true);
104 ++count;
105 }
106 if (msgLvl(MSG::DEBUG))
107 {
108 ATH_MSG_DEBUG("NeutralForward: " << gridset[NoDisplacement].get<PUClassification::NeutralForward>().sum());
111 ATH_MSG_DEBUG("Mean, variance, threshold = " << mean << ", " << variance << ", " << threshold);
112 ATH_MSG_DEBUG(count << "/" << gridset[NoDisplacement].get<1>().nTowers() << " towers above threshold");
113 }
114
115
116 // Select the right grid
118 gridset, m_neutralThresholdMode);
119 const PUSplitGrid &grid = gridset[displacement];
120
121 // Build the background sum, the masked tower kinematics (used for their
122 // directions), the list of the expected pileup values in each masked tower
123 // and the variances on each of those expected values
124 PufitUtils::CovarianceSum pileupSum;
125 std::vector<SignedKinematics> masked;
126 masked.reserve(count);
127 std::vector<double> means;
128 means.reserve(count);
129 std::vector<double> variances(count, variance);
130
131 for (const PUSplitGrid::Tower &tower : grid)
132 {
133 const SignedKinematics &cPUKin = tower.get<PUClassification::ChargedPU>();
134 if (!tower.masked())
135 {
136 // If the tower is masked, then add its neutral component to the background sum
137 const SignedKinematics &kin = tower.get<PUClassification::NeutralForward>();
138 pileupSum.add(kin, getSigma(kin));
139 }
140 else
141 {
142 masked.push_back(tower.kinematics(PUClassification::NFcHS));
143 // Add the expected pileup contribution. Optionally, exclude the cPU
144 // component from this as this is already accounted
146 means.push_back(mean - cPUKin.pt());
147 else
148 means.push_back(mean);
149 }
150 // cPU elements always count as background
151 // (There's a possible TODO here - maybe this should only be done when subtractCPUFromMean is true?)
152 pileupSum.add(cPUKin, getSigma(cPUKin));
153 }
154
155 if (msgLvl(MSG::VERBOSE))
156 {
157 ATH_MSG_VERBOSE("Pileup sum = " << pileupSum.sum);
158 ATH_MSG_VERBOSE("Pileup covariance = " << pileupSum.covariance);
159 ATH_MSG_VERBOSE("Mean background energy = " << mean);
160 ATH_MSG_VERBOSE("Background energy variance = " << variance);
161 ATH_MSG_VERBOSE("Constraint importance = " << m_constraintImportance);
162 ATH_MSG_VERBOSE("Masked tower directions (sin, cos): ");
163 for (const SignedKinematics &kin : masked)
164 ATH_MSG_VERBOSE(" (" << kin.sinPhi() << ", " << kin.cosPhi() << ")");
165 }
166 // Fill components
167 grid.get<PUClassification::NeutralForward>().sum(PufitGrid::SumStrategy::All).fillMETComponent(0, met);
168 grid.get<PUClassification::ChargedHS>().sum(PufitGrid::SumStrategy::All).fillMETComponent(1, met);
169 grid.get<PUClassification::ChargedPU>().sum(PufitGrid::SumStrategy::All).fillMETComponent(2, met);
170 grid.get<PUClassification::NeutralForward>().sum(PufitGrid::SumStrategy::Masked).fillMETComponent(3, met);
171
172 // Now build the final sum
173 METComponent sum;
174 // Add the NF components of all masked towers
176 // Add the cHS components of all towers
178
179 if (variance != 0)
180 {
181 ATH_MSG_DEBUG("Calculate corrections");
182 std::vector<SignedKinematics> corrections = PufitUtils::pufit(
183 pileupSum.sum,
184 pileupSum.covariance,
185 means,
186 variances,
187 masked,
189
190 ATH_MSG_DEBUG("Before corrections: " << sum);
191 // Add the corrections
192 for (const SignedKinematics &kin : corrections)
193 {
194 ATH_MSG_DEBUG("Correction: (px, py, pz, et) = (" << kin.px() << ", " << kin.py() << ", " << kin.pz() << ", " << kin.et() << ")");
195 sum += kin;
196 }
197 }
198 else
199 ATH_MSG_DEBUG("Tower variance is 0 => there were no towers in the trimmed mean calculation with energy > 0. Skip the corrections");
200 ATH_MSG_DEBUG("Final MET: " << sum);
201 sum.fillMET(met);
202
203 return StatusCode::SUCCESS;
204 }
#define ATH_MSG_VERBOSE(x)
Gaudi::Property< std::size_t > m_nEtaBins
The number of bins in eta.
double getSigma(const SignedKinematics &kin) const
Calculate the estimate on the variance of a tower.
Gaudi::Property< float > m_maxEta
The eta range of the grid.
SG::ReadDecorHandleKey< xAOD::IParticleContainer > m_inputCategoryKey
Gaudi::Property< std::size_t > m_neutralThresholdMode
The neutral threshold mode.
Gaudi::Property< bool > m_subtractCPUFromMean
Whether to remove the cPU component from the tower expectations.
Gaudi::Property< float > m_trimFraction
The trimming fraction.
Gaudi::Property< float > m_nSigma
The sigma threshold.
Gaudi::Property< std::size_t > m_nPhiBins
Gaudi::Property< float > m_constraintImportance
The relative constraint importance.
SG::ReadHandleKey< xAOD::IParticleContainer > m_inputKey
Input objects.
static SignedKinematics fromEnergyEtaPhi(double energy, double eta, double phi)
Factory function to construct from energy, eta, phi (massless)
void mean(std::vector< double > &bins, std::vector< double > &values, const std::vector< std::string > &files, const std::string &histname, const std::string &tplotname, const std::string &label="")
T * get(TKey *tobj)
get a TObject* from a TKey* (why can't a TObject be a TKey?)
Definition hcg.cxx:130
int count(std::string s, const std::string &regx)
count how many occurances of a regx are in a string
Definition hcg.cxx:146
constexpr PUClassification NFcHS
void trimmedMeanAndVariance(const std::vector< double > &sorted, double trimFraction, double &mean, double &variance)
Calculate the trimmed mean and variance for a vector of tower sumEts.
Eigen::VectorXd pufit(const Eigen::Vector2d &pileupSum, const Eigen::Matrix2d &pileupCovariance, const Eigen::VectorXd &towerExpectations, const Eigen::VectorXd &towerVariances, const Eigen::VectorXd &correctionDirections, double constraintImportance)
Perform the pile-up fit.
GridDisplacement selectGrid(const PufitGridSet &grids)
Select the grid with the highest masked sumEt.
PufitMultiGridSet< PUSplitGrid > PUSplitGridSet
Definition PUSplitGrid.h:39
GridDisplacement
Enum to describe the positioning of the grid.
@ NoDisplacement
The grid is not shifted.

◆ filterPassed()

virtual bool AthCommonReentrantAlgorithm< Gaudi::Algorithm >::filterPassed ( const EventContext & ctx) const
inlinevirtualinherited

Definition at line 96 of file AthCommonReentrantAlgorithm.h.

96 {
97 return execState( ctx ).filterPassed();
98 }
virtual bool filterPassed(const EventContext &ctx) const

◆ flagMET()

StatusCode HLT::MET::FexBase::flagMET ( xAOD::TrigMissingET & met) const
protectedvirtualinherited

Flag suspicious values in the output MET.

Parameters
metThe xAOD::TrigMissingET object to flag

Definition at line 118 of file FexBase.cxx.

119 {
120 // Start with the components
121 // Keep a flag to OR into the main value
122 int overall = 0;
123 for (std::size_t ii = 0; ii < met.getNumberOfComponents(); ++ii) {
124 METComponent component(ii, met);
125 if (component.sumEt > 0 &&
126 component.met() / component.sumEt > m_maxComponentMETSumEtRatio) {
127 component.status |= StatusFlag::ComponentBigMEtSEtRatio;
129 }
130 met.setStatusComponent(ii, component.status);
131 }
132 METComponent total(met);
133 total.status |= overall;
134 if (total.sumEt > 0 &&
135 total.met() / total.sumEt > m_maxGlobalMETSumEtRatio)
136 total.status |= StatusFlag::GlobalBigMEtSEtRatio;
137 met.setFlag(total.status);
138 return StatusCode::SUCCESS;
139 }
Gaudi::Property< float > m_maxGlobalMETSumEtRatio
Definition FexBase.h:111
Gaudi::Property< float > m_maxComponentMETSumEtRatio
Definition FexBase.h:108
void setStatusComponent(unsigned int index, float value)
Set Status.

◆ getSigma()

double HLT::MET::PUSplitPufitFex::getSigma ( const SignedKinematics & kin) const
private

Calculate the estimate on the variance of a tower.

Parameters
kinThe kinematics of the tower

Definition at line 23 of file PUSplitPufitFex.cxx.

24 {
25 return m_caloNoise * m_caloNoise + kin.absPt() * m_caloStoch * m_caloStoch;
26 }
Gaudi::Property< float > m_caloStoch
The coefficient of the stochastic term in the calo resolution estimate.
Gaudi::Property< float > m_caloNoise
The coefficient of the noise term in the calo resolution estimate.

◆ initialize()

StatusCode HLT::MET::PUSplitPufitFex::initialize ( )
overridevirtual

Initialize the fex.

Definition at line 33 of file PUSplitPufitFex.cxx.

34 {
35 CHECK(m_inputKey.initialize());
36
37 // Update the decor keys if necessary
38 if (m_inputCategoryKey.key().find(".") == std::string::npos)
40 else if (SG::contKeyFromKey(m_inputCategoryKey.key()) != m_inputKey.key())
41 {
42 ATH_MSG_ERROR("Input category key does not match the input key!");
43 return StatusCode::FAILURE;
44 }
45 CHECK(m_inputCategoryKey.initialize());
46 return initializeBase({"NeutralForward", "ChargedHS", "ChargedPU", "UncorrSelNF"});
47 }
StatusCode initializeBase(const std::vector< std::string > &componentNames)
Initialize the base class.
Definition FexBase.cxx:48
std::string contKeyFromKey(const std::string &key)
Extract the container part of key.

◆ initializeBase()

StatusCode HLT::MET::FexBase::initializeBase ( const std::vector< std::string > & componentNames)
protectedinherited

Initialize the base class.

Parameters
componentNamesThe names of any components in the output MET object.

The xAOD::TrigMissingET writes out a main 'met' value but can also write out extra MET components - either for debugging, monitoring or further use offline. The object has to be initialized with this names, they cannot be extended after this, so this information must be available for the base class to use.

Definition at line 48 of file FexBase.cxx.

50 {
51 ATH_MSG_DEBUG("Initialising FexBase base class");
52 m_baseInitialised = true;
53 m_componentNames = componentNames;
54 CHECK( m_metContainerKey.initialize() );
55 if (!m_monTool.empty())
56 CHECK( m_monTool.retrieve() );
57 return StatusCode::SUCCESS;
58 }

◆ inputHandles()

virtual std::vector< Gaudi::DataHandle * > AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::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.

◆ isClonable()

◆ monitor()

StatusCode HLT::MET::FexBase::monitor ( const xAOD::TrigMissingET & met,
MonGroupBuilder & monitors ) const
protectedvirtualinherited

Add monitor variables from an xAOD::TrigMissingET object.

Parameters
metThe object to fill from
monitorsExtra variables to be monitored

Definition at line 141 of file FexBase.cxx.

144 {
145 METComponent metComponent(met);
146 // Increase the capacity of the vector
147 monitors.increaseCapacity(16, true);
148 // Add the standard variables
149 monitors.add(Monitored::Scalar("EF_MEx_log", toLog10GeV(metComponent.mpx) ) );
150 monitors.add(Monitored::Scalar("EF_MEy_log", toLog10GeV(metComponent.mpy) ) );
151 monitors.add(Monitored::Scalar("EF_MEz_log", toLog10GeV(metComponent.mpz) ) );
152 monitors.add(Monitored::Scalar("EF_MET_log", toLog10GeV(metComponent.met() ) ) );
153 monitors.add(Monitored::Scalar("EF_ME_log", toLog10GeV(metComponent.magnitude() ) ) );
154 monitors.add(Monitored::Scalar("EF_SumEt_log", toLog10GeV(metComponent.sumEt) ) );
155 monitors.add(Monitored::Scalar("EF_SumE_log", toLog10GeV(metComponent.sumE, -9e9) ) );
156 monitors.add(Monitored::Scalar("EF_MEx_lin", toLinGeV(metComponent.mpx) ) );
157 monitors.add(Monitored::Scalar("EF_MEy_lin", toLinGeV(metComponent.mpy) ) );
158 monitors.add(Monitored::Scalar("EF_MEz_lin", toLinGeV(metComponent.mpz) ) );
159 monitors.add(Monitored::Scalar("EF_MET_lin", toLinGeV(metComponent.met() ) ) );
160 monitors.add(Monitored::Scalar("EF_ME_lin", toLinGeV(metComponent.magnitude() ) ) );
161 monitors.add(Monitored::Scalar("EF_SumEt_lin", toLinGeV(metComponent.sumEt) ) );
162 monitors.add(Monitored::Scalar("EF_SumE_lin", toLinGeV(metComponent.sumE) ) );
163 monitors.add(Monitored::Scalar(
164 "EF_XS", toLinGeV(metComponent.met() ) / toLinGeV(metComponent.sumEt, 1) ) );
165 monitors.add(Monitored::Scalar("EF_MET_phi", metComponent.phi() ) );
166 return StatusCode::SUCCESS;
167 }

◆ msg()

MsgStream & AthCommonMsg< Gaudi::Algorithm >::msg ( ) const
inlineinherited

Definition at line 24 of file AthCommonMsg.h.

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

◆ msgLvl()

bool AthCommonMsg< Gaudi::Algorithm >::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< Gaudi::Algorithm > >::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.

◆ 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< Gaudi::Algorithm > >::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< Gaudi::Algorithm > >::renounceArray ( SG::VarHandleKeyArray & handlesArray)
inlineprotectedinherited

remove all handles from I/O resolution

Definition at line 364 of file AthCommonDataStore.h.

364 {
366 }

◆ setFilterPassed()

virtual void AthCommonReentrantAlgorithm< Gaudi::Algorithm >::setFilterPassed ( bool state,
const EventContext & ctx ) const
inlinevirtualinherited

Definition at line 100 of file AthCommonReentrantAlgorithm.h.

100 {
102 }
virtual void setFilterPassed(bool state, const EventContext &ctx) const

◆ sysExecute()

StatusCode AthCommonReentrantAlgorithm< Gaudi::Algorithm >::sysExecute ( const EventContext & ctx)
overridevirtualinherited

Execute an algorithm.

We override this in order to work around an issue with the Algorithm base class storing the event context in a member variable that can cause crashes in MT jobs.

Definition at line 85 of file AthCommonReentrantAlgorithm.cxx.

77{
78 return BaseAlg::sysExecute (ctx);
79}

◆ sysInitialize()

StatusCode AthCommonReentrantAlgorithm< Gaudi::Algorithm >::sysInitialize ( )
overridevirtualinherited

Override sysInitialize.

Override sysInitialize from the base class.

Loop through all output handles, and if they're WriteCondHandles, automatically register them and this Algorithm with the CondSvc

Scan through all outputHandles, and if they're WriteCondHandles, register them with the CondSvc

Reimplemented from AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >.

Reimplemented in HypoBase, and InputMakerBase.

Definition at line 61 of file AthCommonReentrantAlgorithm.cxx.

107 {
109
110 if (sc.isFailure()) {
111 return sc;
112 }
113
114 ServiceHandle<ICondSvc> cs("CondSvc",name());
115 for (auto h : outputHandles()) {
116 if (h->isCondition() && h->mode() == Gaudi::DataHandle::Writer) {
117 // do this inside the loop so we don't create the CondSvc until needed
118 if ( cs.retrieve().isFailure() ) {
119 ATH_MSG_WARNING("no CondSvc found: won't autoreg WriteCondHandles");
120 return StatusCode::SUCCESS;
121 }
122 if (cs->regHandle(this,*h).isFailure()) {
124 ATH_MSG_ERROR("unable to register WriteCondHandle " << h->fullKey()
125 << " with CondSvc");
126 }
127 }
128 }
129 return sc;
130}
#define ATH_MSG_WARNING(x)
virtual std::vector< Gaudi::DataHandle * > outputHandles() const override

◆ sysStart()

virtual StatusCode AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::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< Gaudi::Algorithm > >::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 }

Member Data Documentation

◆ m_baseInitialised

bool HLT::MET::FexBase::m_baseInitialised {false}
privateinherited

Whether or not this class has been correctly initialised.

Definition at line 119 of file FexBase.h.

119{false};

◆ m_caloNoise

Gaudi::Property<float> HLT::MET::PUSplitPufitFex::m_caloNoise
private
Initial value:
{
this, "CaloNoise", 50,
"The coefficient of the noise term in the calorimeter resolution estimate [MeV]"}

The coefficient of the noise term in the calo resolution estimate.

Definition at line 72 of file PUSplitPufitFex.h.

72 {
73 this, "CaloNoise", 50,
74 "The coefficient of the noise term in the calorimeter resolution estimate [MeV]"};

◆ m_caloStoch

Gaudi::Property<float> HLT::MET::PUSplitPufitFex::m_caloStoch
private
Initial value:
{
this, "CaloStochastic", 15.81,
"The coefficient of the stochastic term in the calorimeter resolution estimate [MeV^1/2]"}

The coefficient of the stochastic term in the calo resolution estimate.

Definition at line 76 of file PUSplitPufitFex.h.

76 {
77 this, "CaloStochastic", 15.81,
78 "The coefficient of the stochastic term in the calorimeter resolution estimate [MeV^1/2]"};

◆ m_componentNames

std::vector<std::string> HLT::MET::FexBase::m_componentNames
protectedinherited

The names of the output MET components.

Definition at line 48 of file FexBase.h.

◆ m_constraintImportance

Gaudi::Property<float> HLT::MET::PUSplitPufitFex::m_constraintImportance
private
Initial value:
{
this, "ConstraintImportance", 1,
"The relative importance of the two constraints to the fit"}

The relative constraint importance.

Definition at line 80 of file PUSplitPufitFex.h.

80 {
81 this, "ConstraintImportance", 1,
82 "The relative importance of the two constraints to the fit"};

◆ m_detStore

StoreGateSvc_t AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::m_detStore
privateinherited

Pointer to StoreGate (detector store by default)

Definition at line 393 of file AthCommonDataStore.h.

◆ m_evtStore

StoreGateSvc_t AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::m_evtStore
privateinherited

Pointer to StoreGate (event store by default)

Definition at line 390 of file AthCommonDataStore.h.

◆ m_extendedExtraObjects

DataObjIDColl AthCommonReentrantAlgorithm< Gaudi::Algorithm >::m_extendedExtraObjects
privateinherited

Extra output dependency collection, extended by AthAlgorithmDHUpdate to add symlinks.

Empty if no symlinks were found.

Definition at line 114 of file AthCommonReentrantAlgorithm.h.

◆ m_inputCategoryKey

SG::ReadDecorHandleKey<xAOD::IParticleContainer> HLT::MET::PUSplitPufitFex::m_inputCategoryKey
private
Initial value:
{
this, "InputCategoryName", "PUCategory",
"The name of PU classification auxdata"}

Definition at line 53 of file PUSplitPufitFex.h.

53 {
54 this, "InputCategoryName", "PUCategory",
55 "The name of PU classification auxdata"};

◆ m_inputKey

SG::ReadHandleKey<xAOD::IParticleContainer> HLT::MET::PUSplitPufitFex::m_inputKey
private
Initial value:
{
this, "InputName", "", "The input particle collection"}

Input objects.

Definition at line 51 of file PUSplitPufitFex.h.

51 {
52 this, "InputName", "", "The input particle collection"};

◆ m_maxComponentMETSumEtRatio

Gaudi::Property<float> HLT::MET::FexBase::m_maxComponentMETSumEtRatio
privateinherited
Initial value:
{
"MaxComponentMETSumEtRatio", 1.,
"The maximum MET/SumEt ratio per component"}

Definition at line 108 of file FexBase.h.

108 {
109 "MaxComponentMETSumEtRatio", 1.,
110 "The maximum MET/SumEt ratio per component"};

◆ m_maxEta

Gaudi::Property<float> HLT::MET::PUSplitPufitFex::m_maxEta
private
Initial value:
{
this, "MaxEta", 5, "The maximum eta range"}

The eta range of the grid.

Definition at line 60 of file PUSplitPufitFex.h.

60 {
61 this, "MaxEta", 5, "The maximum eta range"};

◆ m_maxGlobalMETSumEtRatio

Gaudi::Property<float> HLT::MET::FexBase::m_maxGlobalMETSumEtRatio
privateinherited
Initial value:
{
"MaxGlobalMETSumEtRatio", 1.,
"The maximum MET/SumEt ratio for the total value"}

Definition at line 111 of file FexBase.h.

111 {
112 "MaxGlobalMETSumEtRatio", 1.,
113 "The maximum MET/SumEt ratio for the total value"};

◆ m_metContainerKey

SG::WriteHandleKey<xAOD::TrigMissingETContainer> HLT::MET::FexBase::m_metContainerKey
privateinherited
Initial value:
{
this, "METContainerKey", "HLT_MET", "Name of the output MET object"}

The output MET object.

Definition at line 103 of file FexBase.h.

103 {
104 this, "METContainerKey", "HLT_MET", "Name of the output MET object"};

◆ m_monTool

ToolHandle<GenericMonitoringTool> HLT::MET::FexBase::m_monTool
privateinherited
Initial value:
{
this, "MonTool", "", "Monitoring tool"}

The monitoring tool.

Definition at line 106 of file FexBase.h.

106 {
107 this, "MonTool", "", "Monitoring tool"};

◆ m_nEtaBins

Gaudi::Property<std::size_t> HLT::MET::PUSplitPufitFex::m_nEtaBins
private
Initial value:
{
this, "NEtaBins", 14, "The number of eta bins"}

The number of bins in eta.

Definition at line 63 of file PUSplitPufitFex.h.

63 {
64 this, "NEtaBins", 14, "The number of eta bins"};

◆ m_neutralThresholdMode

Gaudi::Property<std::size_t> HLT::MET::PUSplitPufitFex::m_neutralThresholdMode
private
Initial value:
{
this, "NeutralThresholdMode", PUClassification::All,
"Which towers to use to calculate mean/variance and the masking threshold"}
constexpr PUClassification All

The neutral threshold mode.

Definition at line 84 of file PUSplitPufitFex.h.

84 {
85 this, "NeutralThresholdMode", PUClassification::All,
86 "Which towers to use to calculate mean/variance and the masking threshold"};

◆ m_nPhiBins

Gaudi::Property<std::size_t> HLT::MET::PUSplitPufitFex::m_nPhiBins
private
Initial value:
{
this, "NPhiBins", 8, "The number of phi bins"}

Definition at line 65 of file PUSplitPufitFex.h.

65 {
66 this, "NPhiBins", 8, "The number of phi bins"};

◆ m_nSigma

Gaudi::Property<float> HLT::MET::PUSplitPufitFex::m_nSigma
private
Initial value:
{
this, "NSigma", 5, "Set the threshold at mean + NSigma*variance"}

The sigma threshold.

Definition at line 57 of file PUSplitPufitFex.h.

57 {
58 this, "NSigma", 5, "Set the threshold at mean + NSigma*variance"};

◆ m_subtractCPUFromMean

Gaudi::Property<bool> HLT::MET::PUSplitPufitFex::m_subtractCPUFromMean
private
Initial value:
{
this, "SubtractCPUFromMean", false,
"Whether to remove the cPU component from the expected pileup value"}

Whether to remove the cPU component from the tower expectations.

Definition at line 88 of file PUSplitPufitFex.h.

88 {
89 this, "SubtractCPUFromMean", false,
90 "Whether to remove the cPU component from the expected pileup value"};

◆ m_trimFraction

Gaudi::Property<float> HLT::MET::PUSplitPufitFex::m_trimFraction
private
Initial value:
{
this, "TrimFraction", 0.9,
"The fraction of bins to use when calculating the mean and variance"}

The trimming fraction.

Definition at line 68 of file PUSplitPufitFex.h.

68 {
69 this, "TrimFraction", 0.9,
70 "The fraction of bins to use when calculating the mean and variance"};

◆ m_varHandleArraysDeclared

bool AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::m_varHandleArraysDeclared
privateinherited

Definition at line 399 of file AthCommonDataStore.h.

◆ m_vhka

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

Definition at line 398 of file AthCommonDataStore.h.


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