![]() |
ATLAS Offline Software
|
Block filler tool for EM samplings from a CaloCluster. More...
#include <ClusterSamplingFillerTool.h>
Public Types | |
| typedef BlockFillerTool< Types< CaloCluster, xAOD::CaloCluster > > | Base |
Public Member Functions | |
| ClusterSamplingFillerTool (const std::string &type, const std::string &name, const IInterface *parent) | |
| Standard Gaudi tool constructor. | |
| virtual StatusCode | initialize () override |
| virtual StatusCode | book () override |
| Book variables for this block. | |
| virtual StatusCode | fill (const CaloCluster &p) override |
| Fill one block — type-safe version. | |
| virtual StatusCode | fill (const xAOD::CaloCluster &p) override |
| Fill one block — type-safe version. | |
| virtual StatusCode | configureD3PD (IAddVariable *tree, const std::type_info &ti) |
| Configure during initialization: type-check. | |
| StatusCode | configureD3PD (IAddVariable *tree) |
| Configure the parent tree. | |
| virtual StatusCode | fillUntyped (const void *p, bool again=false) |
| Fill one block. | |
| virtual StatusCode | fill (const Types< CaloCluster, xAOD::CaloCluster > &p)=0 |
| Fill one block — type-safe version. | |
| virtual StatusCode | fillAgain (const Types< CaloCluster, xAOD::CaloCluster > &p) |
Fill one block, after AGAIN has been returned (type-safe). | |
| BlockFillerToolImpl (const std::string &type, const std::string &name, const IInterface *parent) | |
| Standard Gaudi tool constructor. | |
| virtual StatusCode | addVariable (const std::string &name, const std::type_info &ti, void *&ptr, const std::string &docstring="", const void *defval=0) |
| Add a variable to the tuple. | |
| StatusCode | addVariable (const std::string &name, Types< CaloCluster, xAOD::CaloCluster > *&ptr, const std::string &docstring="") |
Make the template implementation from IAddVariable visible. | |
| StatusCode | addVariable (const std::string &name, Types< CaloCluster, xAOD::CaloCluster > *&ptr, const std::string &docstring, const U &defval) |
Make the template implementation from IAddVariable visible. | |
| virtual StatusCode | addDimensionedVariable (const std::string &name, const std::type_info &ti, void *&ptr, const std::string &dim, const std::string &docstring="", const void *defval=0) |
| Add a variable to the tuple. | |
| StatusCode | addDimensionedVariable (const std::string &name, Types< CaloCluster, xAOD::CaloCluster > *&ptr, const std::string &dim, const std::string &docstring="") |
| Add a variable to the tuple. | |
| StatusCode | addDimensionedVariable (const std::string &name, Types< CaloCluster, xAOD::CaloCluster > *&ptr, const std::string &dim, const std::string &docstring, const U &defval) |
| Add a variable to the tuple. | |
Protected Member Functions | |
| StatusCode | configureImpl (IAddVariable *tree, const std::type_info &ti, const std::type_info &fill_ti) |
| Configure during initialization: type-check. | |
| StatusCode | configureImpl (IAddVariable *tree, const std::type_info &ti, const std::vector< const std::type_info * > &tis, size_t &which) |
| Configure during initialization: type-check. | |
| StatusCode | convert (void const *&p) const |
| Do type conversion. | |
Protected Attributes | |
| ObjectMetadata | m_metadata |
| Metadata about the variables created by this object. | |
Private Member Functions | |
| template<class T> | |
| StatusCode | fillEtamax (const T &p) |
| Fill etamax/reco status. | |
| StatusCode | fillSamplings (const std::vector< double > &eSamp, const std::vector< double > &etaSamp, const std::vector< double > &phiSamp) |
| Fill sampling variables. | |
Private Attributes | |
| std::vector< unsigned int > | m_samplings |
| Parameter: Samplings to write. Empty means to write all. | |
| bool | m_writeEmHadEnergies |
| parameters | |
| bool | m_writeSamplingEnergies |
| bool | m_writeSamplingEtaPhi |
| bool | m_writeSamplingEtaPhiRaw |
| bool | m_writeSamplingEtamax |
| bool | m_writeRecoStatus |
| float * | m_Eem |
| Variable: total EM and HAD energies. | |
| float * | m_Ehad |
| float * | m_Es [NSAMP] |
| Variable: Sampling energies. | |
| float * | m_etas [NSAMP] |
| Variable: Sampling eta centroids. | |
| float * | m_phis [NSAMP] |
| Variable: Sampling phi centroids. | |
| float * | m_raw_etas [NSAMP] |
| Variable: Sampling raw eta centroids. | |
| float * | m_raw_phis [NSAMP] |
| Variable: Sampling raw phi centroids. | |
| float * | m_etamax [NSAMP] |
| Variable: Eta of maximum energy. | |
| unsigned int * | m_RecoStatus |
| SG::ReadCondHandleKey< CaloDetDescrManager > | m_caloDetDescrMgrKey |
| std::string | m_prefix |
| Property: the variable prefix for this block. | |
| std::string | m_suffix |
| Property: the variable prefix for this block. | |
| std::string | m_blockName |
| Property: the name of this block. | |
| TypeConverter | m_converter |
| Helper to do type conversions. | |
| IAddVariable * | m_tree |
| Reference to the block name. | |
Static Private Attributes | |
| static const unsigned int | NSAMP = 24 |
| static const std::string | s_emptyString |
| Used to provide a default value for blockName. | |
Block filler tool for EM samplings from a CaloCluster.
Definition at line 31 of file ClusterSamplingFillerTool.h.
| typedef BlockFillerTool<Types<CaloCluster, xAOD::CaloCluster> > D3PD::ClusterSamplingFillerTool::Base |
Definition at line 35 of file ClusterSamplingFillerTool.h.
| D3PD::ClusterSamplingFillerTool::ClusterSamplingFillerTool | ( | const std::string & | type, |
| const std::string & | name, | ||
| const IInterface * | parent ) |
Standard Gaudi tool constructor.
| type | The name of the tool type. |
| name | The tool name. |
| parent | The tool's Gaudi parent. |
Definition at line 45 of file ClusterSamplingFillerTool.cxx.
|
virtualinherited |
Add a variable to the tuple.
| name | The name of the variable. |
| type | The type of the variable. |
| ptr | Pointer to the type of the variable. The pointer need not be initialized; the D3PD software will set the pointer prior to calling fill(). |
| dim | Dimension for the variable. (Presently unimplemented!) |
| docstring | Documentation string for this variable. |
| defval | Pointer to the default value to use for this variable. Null for no default (generally means to fill with zeros). Of the type given by ti. Only works for basic types. |
If called from the constructor, the only effect is to clear ptr.
Definition at line 119 of file AddVariable.cxx.
|
inherited |
Add a variable to the tuple.
| name | The name of the variable. |
| ptr | Pointer to the type of the variable. The pointer need not be initialized; the D3PD software will set the pointer prior to calling fill(). |
| dim | Dimension for the variable. (Presently unimplemented!) |
| docstring | Documentation string for this variable. |
| defval | Pointer to the default value to use for this variable. Only works for basic types. |
If called from the constructor, the only effect is to clear ptr.
|
inherited |
Add a variable to the tuple.
| name | The name of the variable. |
| ptr | Pointer to the type of the variable. The pointer need not be initialized; the D3PD software will set the pointer prior to calling fill(). |
| dim | Dimension for the variable. (Presently unimplemented!) |
| docstring | Documentation string for this variable. |
If called from the constructor, the only effect is to clear ptr.
|
virtualinherited |
Add a variable to the tuple.
| name | The name of the variable. |
| type | The type of the variable. |
| ptr | Pointer to the type of the variable. The pointer need not be initialized; the D3PD software will set the pointer prior to calling fill(). |
| docstring | Documentation string for this variable. |
| defval | Pointer to the default value to use for this variable. Null for no default (generally means to fill with zeros). Of the type given by ti. Only works for basic types. |
If called from the constructor, the only effect is to clear ptr.
Definition at line 93 of file AddVariable.cxx.
|
inherited |
Make the template implementation from IAddVariable visible.
|
inherited |
Make the template implementation from IAddVariable visible.
|
inherited |
|
overridevirtual |
Book variables for this block.
Implements D3PD::BlockFillerTool< Types< CaloCluster, xAOD::CaloCluster > >.
Definition at line 86 of file ClusterSamplingFillerTool.cxx.
|
inherited |
Configure the parent tree.
| tree | The parent IAddVariable instance. |
Definition at line 69 of file AddVariable.cxx.
|
virtualinherited |
Configure during initialization: type-check.
| tree | Our parent for tuple making. |
| ti | Gives the type of the object being passed to fillUntyped. |
configureD3PD should check that the type of the object coming as input is compatible with what it expects, and raise an error otherwise.
|
protectedinherited |
Configure during initialization: type-check.
| tree | Our parent for tuple making. |
| ti | Gives the type of the object being passed to fillUntyped. |
| fill_ti | is the type of object that the user code will expect. |
This is the common implementation for the configureD3PD method of IBlockFillerTool. It checks that the type of the object coming as input is compatible with what the user code is expecting, and raises an error otherwise.
Definition at line 70 of file BlockFillerToolImpl.cxx.
|
protectedinherited |
Configure during initialization: type-check.
| tree | Our parent for tuple making. | |
| ti | Gives the type of the object being passed to fillUntyped. | |
| tis | List of possible input types that we can accept. | |
| [out] | which | Index of the accepted type. |
This is the common implementation for the configureD3PD method of IBlockFillerTool. It checks that the type of the object coming as input is compatible with what the user code is expecting, and raises an error otherwise.
This version allows for one of a set of types to match. If successful, WHICH is set to the index (0-based) of the matching type.
Definition at line 91 of file BlockFillerToolImpl.cxx.
|
protectedinherited |
Do type conversion.
| p[in,out] | Pointer to convert. |
On entry, p is a pointer to an object of the type that was passed into configureImpl as ti. Convert the pointer to point to an object of the type that was given as fill_ti. If the conversion fails, the pointer is set to 0 (and FAILURE is returned).
Definition at line 107 of file BlockFillerToolImpl.cxx.
|
pure virtualinherited |
Fill one block — type-safe version.
| p | The input object. |
This is called once per object. The caller is responsible for arranging that all the pointers for booked variables are set appropriately upon entry.
|
overridevirtual |
Fill one block — type-safe version.
| p | The input object. |
This is called once per object. The caller is responsible for arranging that all the pointers for booked variables are set appropriately upon entry.
Definition at line 165 of file ClusterSamplingFillerTool.cxx.
|
overridevirtual |
Fill one block — type-safe version.
| p | The input object. |
This is called once per object. The caller is responsible for arranging that all the pointers for booked variables are set appropriately upon entry.
Definition at line 194 of file ClusterSamplingFillerTool.cxx.
|
virtualinherited |
Fill one block, after AGAIN has been returned (type-safe).
| p | The input object. |
Once fill returns AGAIN, the parent should call fillAgain with the same arguments. This continues until fillAgain returns something other than AGAIN.
By default, this just calls fill().
|
private |
Fill etamax/reco status.
| p | The input object. |
Definition at line 220 of file ClusterSamplingFillerTool.cxx.
|
private |
Fill sampling variables.
| eSamp | Energy per sample. |
| etaSamp | Eta per sample. |
| phiSamp | Phi per sample. |
Definition at line 239 of file ClusterSamplingFillerTool.cxx.
|
virtualinherited |
Fill one block.
| p | The input object. |
| again | Set if this is a subsequent call requested by an AGAIN return |
This is called once per object. The type of the object at which p points is given by the ti argument to configureD3PD. The caller is responsible for arranging that all the pointers for booked variables are set appropriately upon entry.
If the return status is the special code AGAIN (defined above), then this filler tool wants to make multiple entries. The parent should set up to capture a new ‘row’ and run through the list of block filler tools again, but for this tool call fillAgainUntyped instead of fillUntyped. This should be repeated as long as fillAgainUntyped returns AGAIN.
Once fillUntyped returns AGAIN, the parent should call fillUntyped with the same p argument and again set to true. This continues until fillUntyped returns something other than AGAIN.
Not all parents may support this. In that case, returning AGAIN will be treated as an error.
|
overridevirtual |
Definition at line 77 of file ClusterSamplingFillerTool.cxx.
|
privateinherited |
Property: the name of this block.
Definition at line 118 of file BlockFillerToolImpl.h.
|
private |
Definition at line 133 of file ClusterSamplingFillerTool.h.
|
privateinherited |
Helper to do type conversions.
Definition at line 121 of file BlockFillerToolImpl.h.
|
private |
Variable: total EM and HAD energies.
Definition at line 111 of file ClusterSamplingFillerTool.h.
|
private |
Definition at line 112 of file ClusterSamplingFillerTool.h.
|
private |
Variable: Sampling energies.
Definition at line 115 of file ClusterSamplingFillerTool.h.
|
private |
Variable: Eta of maximum energy.
Definition at line 130 of file ClusterSamplingFillerTool.h.
|
private |
Variable: Sampling eta centroids.
Definition at line 118 of file ClusterSamplingFillerTool.h.
|
protectedinherited |
Metadata about the variables created by this object.
Definition at line 129 of file AddVariable.h.
|
private |
Variable: Sampling phi centroids.
Definition at line 121 of file ClusterSamplingFillerTool.h.
|
privateinherited |
Property: the variable prefix for this block.
Definition at line 112 of file BlockFillerToolImpl.h.
|
private |
Variable: Sampling raw eta centroids.
Definition at line 124 of file ClusterSamplingFillerTool.h.
|
private |
Variable: Sampling raw phi centroids.
Definition at line 127 of file ClusterSamplingFillerTool.h.
|
private |
Definition at line 132 of file ClusterSamplingFillerTool.h.
|
private |
Parameter: Samplings to write. Empty means to write all.
Definition at line 100 of file ClusterSamplingFillerTool.h.
|
privateinherited |
Property: the variable prefix for this block.
Definition at line 115 of file BlockFillerToolImpl.h.
|
privateinherited |
Reference to the block name.
The parent IAddVariable instance.
Definition at line 143 of file AddVariable.h.
|
private |
parameters
Definition at line 103 of file ClusterSamplingFillerTool.h.
|
private |
Definition at line 108 of file ClusterSamplingFillerTool.h.
|
private |
Definition at line 104 of file ClusterSamplingFillerTool.h.
|
private |
Definition at line 107 of file ClusterSamplingFillerTool.h.
|
private |
Definition at line 105 of file ClusterSamplingFillerTool.h.
|
private |
Definition at line 106 of file ClusterSamplingFillerTool.h.
|
staticprivate |
Definition at line 97 of file ClusterSamplingFillerTool.h.
|
staticprivateinherited |
Used to provide a default value for blockName.
Definition at line 41 of file AddVariable.h.