![]() |
ATLAS Offline Software
|
Tool writing the stream decisions to D3PDs. More...
#include <EventTrigInfoFillerTool.h>
Public Member Functions | |
| EventTrigInfoFillerTool (const std::string &type, const std::string &name, const IInterface *parent) | |
| Standard AlgTool constructor. | |
| virtual StatusCode | book () |
| Book variables for this block. | |
| virtual StatusCode | fill (const xAOD::EventInfo &ei) |
| Fill the variables for this block. | |
| BlockFillerToolImpl (const std::string &type, const std::string &name, const IInterface *parent) | |
| Standard Gaudi tool constructor. | |
| 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 | fillAgain (const xAOD::EventInfo &p) |
Fill one block, after AGAIN has been returned (type-safe). | |
| 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, xAOD::EventInfo *&ptr, const std::string &docstring="") |
Make the template implementation from IAddVariable visible. | |
| StatusCode | addVariable (const std::string &name, xAOD::EventInfo *&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, xAOD::EventInfo *&ptr, const std::string &dim, const std::string &docstring="") |
| Add a variable to the tuple. | |
| StatusCode | addDimensionedVariable (const std::string &name, xAOD::EventInfo *&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. | |
Static Private Member Functions | |
| static bool | streamPassed (const std::vector< xAOD::EventInfo::StreamTag > &stags, const std::string &sname) |
| Function deciding if a given stream was passed. | |
Private Attributes | |
| std::vector< bool * > | m_streams |
| Streams to which this event was written. | |
| std::vector< std::string > | m_configStreams |
| Streams for which the decision should be stored. | |
| unsigned int * | m_l1id |
| Variable: Extended level 1 ID. | |
| 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 std::string | s_emptyString |
| Used to provide a default value for blockName. | |
Tool writing the stream decisions to D3PDs.
This tool can be used to write flags into the D3PD files that tell the users which trigger streams one particular event ended up in. This should make handling the overlaps between streams quite a bit simpler.
Definition at line 36 of file EventTrigInfoFillerTool.h.
| D3PD::EventTrigInfoFillerTool::EventTrigInfoFillerTool | ( | const std::string & | type, |
| const std::string & | name, | ||
| const IInterface * | parent ) |
Standard AlgTool constructor.
Definition at line 15 of file EventTrigInfoFillerTool.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 |
|
virtual |
Book variables for this block.
Implements D3PD::BlockFillerTool< xAOD::EventInfo >.
Definition at line 26 of file EventTrigInfoFillerTool.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.
|
virtual |
Fill the variables for this block.
Implements D3PD::BlockFillerTool< xAOD::EventInfo >.
Definition at line 44 of file EventTrigInfoFillerTool.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().
|
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.
|
staticprivate |
Function deciding if a given stream was passed.
This is a very simple algorithm for deciding whether the specified stream appears in the list of streams that the current event was written to.
| stags | The list of streams that the event was written to |
| sname | Name of the stream that we're interested in |
true if the event ended up in the stream in question, false otherwise Definition at line 73 of file EventTrigInfoFillerTool.cxx.
|
privateinherited |
Property: the name of this block.
Definition at line 118 of file BlockFillerToolImpl.h.
|
private |
Streams for which the decision should be stored.
Definition at line 58 of file EventTrigInfoFillerTool.h.
|
privateinherited |
Helper to do type conversions.
Definition at line 121 of file BlockFillerToolImpl.h.
|
private |
Variable: Extended level 1 ID.
Definition at line 61 of file EventTrigInfoFillerTool.h.
|
protectedinherited |
Metadata about the variables created by this object.
Definition at line 129 of file AddVariable.h.
|
privateinherited |
Property: the variable prefix for this block.
Definition at line 112 of file BlockFillerToolImpl.h.
|
private |
Streams to which this event was written.
Definition at line 55 of file EventTrigInfoFillerTool.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.
|
staticprivateinherited |
Used to provide a default value for blockName.
Definition at line 41 of file AddVariable.h.