ATLAS Offline Software
Loading...
Searching...
No Matches
D3PD::TileCellDigitAssociationTool Class Reference

#include <TileCellDigitAssociationTool.h>

Inheritance diagram for D3PD::TileCellDigitAssociationTool:
Collaboration diagram for D3PD::TileCellDigitAssociationTool:

Public Types

typedef MultiAssociationTool< CaloCell, TileDigitsBase
typedef SGTileDigitsGetterTool Getter

Public Member Functions

 TileCellDigitAssociationTool (const std::string &type, const std::string &name, const IInterface *parent)
 Standard Gaudi tool constructor.
virtual ~TileCellDigitAssociationTool ()
StatusCode initialize ()
virtual StatusCode reset (const CaloCell &p)
 Return the target object.
virtual const TileDigitsnext ()
 Return a pointer to the next element in the association.
virtual const std::type_info & fromTypeinfo () const
 Return the std::type_info for the source of the association.
virtual StatusCode resetUntyped (const void *p)
 Start the iteration for a new association.
 MultiAssociationToolImpl (const std::string &type, const std::string &name, const IInterface *parent)
 Standard Gaudi tool constructor.
virtual const std::type_info & elementTypeinfo () const
 Return the element type for the target of the association.
virtual const void * nextUntyped ()
 Return a pointer to the next element in the association.
virtual void releaseElementUntyped (const void *p)
 Release an object retrieved from the association.
virtual void releaseElement (const CaloCell *p)
 Release an object retrieved from the association.
virtual void releaseElement (const TO_T *p)
 Release an object retrieved from the association.
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 book ()
 Create any needed tuple variables.
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, T *&ptr, const std::string &docstring="")
 Make the template implementation from IAddVariable visible.
StatusCode addVariable (const std::string &name, T *&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, T *&ptr, const std::string &dim, const std::string &docstring="")
 Add a variable to the tuple.
StatusCode addDimensionedVariable (const std::string &name, T *&ptr, const std::string &dim, const std::string &docstring, const U &defval)
 Add a variable to the tuple.

Protected Member Functions

const void * doConversion (const void *p)
 Helper to convert pointers to source objects.
StatusCode configureMulti (D3PD::IAddVariable *tree, const std::type_info &ti, const std::vector< const std::type_info * > &tis, size_t &which)
 Configure during initialization: type-check.

Protected Attributes

ObjectMetadata m_metadata
 Metadata about the variables created by this object.

Private Attributes

Getter m_digitGetter
std::string m_tileDigitKey
const TileHWIDm_tilehwid
HWIdentifier m_adcId1
HWIdentifier m_adcId2
int m_nDigitReturned
std::string m_prefix
 Parameter: source object prefix.
std::string m_blockName
 Property: the name of this block.
TypeConverter m_inputConverter
 Helper to convert source object pointers.
const std::string & m_suffix
 Reference to the variable suffix.
IAddVariablem_tree
 Reference to the block name.

Static Private Attributes

static const std::string s_emptyString
 Used to provide a default value for blockName.

Detailed Description

Definition at line 26 of file TileCellDigitAssociationTool.h.

Member Typedef Documentation

◆ Base

◆ Getter

Constructor & Destructor Documentation

◆ TileCellDigitAssociationTool()

D3PD::TileCellDigitAssociationTool::TileCellDigitAssociationTool ( const std::string & type,
const std::string & name,
const IInterface * parent )

Standard Gaudi tool constructor.

Parameters
typeThe name of the tool type.
nameThe tool name.
parentThe tool's Gaudi parent.

Definition at line 24 of file TileCellDigitAssociationTool.cxx.

25 :
26 Base(type,name,parent),
27 m_digitGetter(type,name,parent),
28 m_tilehwid(0),
30{
31 declareProperty("TileDigitsSGKey",m_tileDigitKey = "TileDigitsFlt");
32}
MultiAssociationTool< CaloCell, TileDigits > Base

◆ ~TileCellDigitAssociationTool()

D3PD::TileCellDigitAssociationTool::~TileCellDigitAssociationTool ( )
virtual

Definition at line 35 of file TileCellDigitAssociationTool.cxx.

35 {
36}

Member Function Documentation

◆ addDimensionedVariable() [1/3]

StatusCode D3PD::AddVariable::addDimensionedVariable ( const std::string & name,
const std::type_info & ti,
void *& ptr,
const std::string & dim,
const std::string & docstring = "",
const void * defval = 0 )
virtualinherited

Add a variable to the tuple.

Parameters
nameThe name of the variable.
typeThe type of the variable.
ptrPointer to the type of the variable. The pointer need not be initialized; the D3PD software will set the pointer prior to calling fill().
dimDimension for the variable. (Presently unimplemented!)
docstringDocumentation string for this variable.
defvalPointer 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.

129{
130 if (!m_tree) {
131 // Called from constructor --- just initialize pointer.
132 ptr = 0;
133 return StatusCode::SUCCESS;
134 }
135
137 ti, ptr, dim,
138 docstring, defval ) );
140 ti, ptr, dim,
142}
#define CHECK(...)
Evaluate an expression and check for errors.
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.
Type-safe wrapper for multiple-target associator tools.

◆ addDimensionedVariable() [2/3]

StatusCode D3PD::IAddVariable::addDimensionedVariable ( const std::string & name,
T *& ptr,
const std::string & dim,
const std::string & docstring,
const U & defval )
inherited

Add a variable to the tuple.

Parameters
nameThe name of the variable.
ptrPointer to the type of the variable. The pointer need not be initialized; the D3PD software will set the pointer prior to calling fill().
dimDimension for the variable. (Presently unimplemented!)
docstringDocumentation string for this variable.
defvalPointer 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.

◆ addDimensionedVariable() [3/3]

StatusCode D3PD::IAddVariable::addDimensionedVariable ( const std::string & name,
T *& ptr,
const std::string & dim,
const std::string & docstring = "" )
inherited

Add a variable to the tuple.

Parameters
nameThe name of the variable.
ptrPointer to the type of the variable. The pointer need not be initialized; the D3PD software will set the pointer prior to calling fill().
dimDimension for the variable. (Presently unimplemented!)
docstringDocumentation string for this variable.

If called from the constructor, the only effect is to clear ptr.

◆ addVariable() [1/3]

StatusCode D3PD::AddVariable::addVariable ( const std::string & name,
const std::type_info & ti,
void *& ptr,
const std::string & docstring = "",
const void * defval = 0 )
virtualinherited

Add a variable to the tuple.

Parameters
nameThe name of the variable.
typeThe type of the variable.
ptrPointer to the type of the variable. The pointer need not be initialized; the D3PD software will set the pointer prior to calling fill().
docstringDocumentation string for this variable.
defvalPointer 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.

90{
91 if (!m_tree) {
92 // Called from constructor --- just initialize pointer.
93 ptr = 0;
95 }
96
98 ti, ptr, docstring, defval ) );
101}
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.

◆ addVariable() [2/3]

StatusCode D3PD::IAddVariable::addVariable ( const std::string & name,
T *& ptr,
const std::string & docstring,
const U & defval )
inherited

Make the template implementation from IAddVariable visible.

◆ addVariable() [3/3]

StatusCode D3PD::IAddVariable::addVariable ( const std::string & name,
T *& ptr,
const std::string & docstring = "" )
inherited

Make the template implementation from IAddVariable visible.

◆ book()

StatusCode D3PD::MultiAssociationToolImpl::book ( )
virtualinherited

Create any needed tuple variables.

This is called at the start of the first event. The default implementation is a no-op.

Definition at line 78 of file MultiAssociationToolImpl.cxx.

93{
95}

◆ configureD3PD() [1/2]

StatusCode D3PD::AddVariable::configureD3PD ( IAddVariable * tree)
inherited

Configure the parent tree.

Parameters
treeThe parent IAddVariable instance.

Definition at line 69 of file AddVariable.cxx.

62{
63 m_tree = tree;
64 m_metadata.clear();
66}

◆ configureD3PD() [2/2]

StatusCode D3PD::MultiAssociationToolImpl::configureD3PD ( IAddVariable * tree,
const std::type_info & ti )
virtualinherited

Configure during initialization: type-check.

Parameters
treeOur parent for tuple making.
tiGives the type of the object being passed to resetUntyped.

configureD3PD should check that the type of the object coming as input (to getUntyped) is compatible with what it expects, and raise an error otherwise.

Definition at line 68 of file MultiAssociationToolImpl.cxx.

◆ configureMulti()

StatusCode D3PD::MultiAssociationToolImpl::configureMulti ( D3PD::IAddVariable * tree,
const std::type_info & ti,
const std::vector< const std::type_info * > & tis,
size_t & which )
protectedinherited

Configure during initialization: type-check.

Alternate implementation for the case where we have to choose among multiple possible input types.

Parameters
treeOur parent for tuple making.
tiGives the type of the object being passed to getUntyped.
tisList of possible input types that we can accept.
[out]whichIndex of the accepted type.

configureMulti should check that the type of the object coming as input (to getUntyped) is compatible with what it expects, and raise an error otherwise.

Definition at line 111 of file MultiAssociationToolImpl.cxx.

◆ doConversion()

const void * D3PD::MultiAssociationToolImpl::doConversion ( const void * p)
protectedinherited

Helper to convert pointers to source objects.

Parameters
pSource object, as a pointer to the type passed to configureD3PD. return Source object, as a pointer to the type given by fromTypeinfo.

Definition at line 95 of file MultiAssociationToolImpl.cxx.

105{
106 if (!p) return 0;
107 const void* pp = m_inputConverter.convertUntyped (p);
108 if (!pp) {
110 << "Pointer conversion from " << m_inputConverter.srcName() << " to "
111 << m_inputConverter.dstName() << "failed.";
112 return 0;
113 }
114 return pp;
115}
#define REPORT_MESSAGE(LVL)
Report a message.

◆ elementTypeinfo()

virtual const std::type_info & D3PD::MultiAssociationToolTo< CaloCell >::elementTypeinfo ( ) const
virtualinherited

Return the element type for the target of the association.

I.e., nextUntyped returns a pointer to this type.

◆ fromTypeinfo()

virtual const std::type_info & D3PD::MultiAssociationTool< CaloCell, TileDigits >::fromTypeinfo ( ) const
virtualinherited

Return the std::type_info for the source of the association.

Implements D3PD::MultiAssociationToolImpl.

◆ initialize()

StatusCode D3PD::TileCellDigitAssociationTool::initialize ( )

Definition at line 38 of file TileCellDigitAssociationTool.cxx.

39{
40 CHECK( m_digitGetter.initialize()) ;
41 CHECK( m_digitGetter.setProperty("SGKey",m_tileDigitKey) );
43 return StatusCode::SUCCESS;
44}
retrieve(aClass, aKey=None)
Definition PyKernel.py:110

◆ MultiAssociationToolImpl()

( const std::string & type,
const std::string & name,
const IInterface * parent )
inherited

Standard Gaudi tool constructor.

Parameters
typeThe name of the tool type.
nameThe tool name.
parentThe tool's Gaudi parent.

◆ next()

const TileDigits * D3PD::TileCellDigitAssociationTool::next ( )
virtual

Return a pointer to the next element in the association.

Return 0 when the association has been exhausted.

Implements D3PD::MultiAssociationToolTo< TO_T >.

Definition at line 87 of file TileCellDigitAssociationTool.cxx.

87 {
88 if(m_nDigitReturned>1)return 0;
89
90 const TileDigits* tiledigit=
91 (const TileDigits*) m_digitGetter.nextUntyped();
92 while(tiledigit){
93 HWIdentifier rId=tiledigit->adc_HWID();
94 if(m_adcId1.is_valid()){
95 if(m_adcId1==rId){
97 m_adcId1.clear();
98 return tiledigit;
99 }
100 }
101 if(m_adcId2.is_valid()){
102 if(m_adcId2==rId){
104 m_adcId2.clear();
105 return tiledigit;
106 }
107 }
108 tiledigit=(const TileDigits*) m_digitGetter.nextUntyped();
109 }
110
111 return 0;
112}
HWIdentifier adc_HWID(void) const
Definition TileRawData.h:53

◆ nextUntyped()

virtual const void * D3PD::MultiAssociationToolTo< CaloCell >::nextUntyped ( )
virtualinherited

Return a pointer to the next element in the association.

Return 0 when the association has been exhausted.

◆ releaseElement() [1/2]

virtual void D3PD::MultiAssociationToolTo< CaloCell >::releaseElement ( const CaloCell * p)
virtualinherited

Release an object retrieved from the association.

Parameters
pThe object to release.

Call this when you are done with the object returned by next(). The default implementation is a no-op, but if the association dynamically allocated the object which it returned, this gives it a chance to free it.

◆ releaseElement() [2/2]

template<typename TO_T>
virtual void D3PD::MultiAssociationToolTo< TO_T >::releaseElement ( const TO_T * p)
virtualinherited

Release an object retrieved from the association.

Parameters
pThe object to release.

Call this when you are done with the object returned by next(). The default implementation is a no-op, but if the association dynamically allocated the object which it returned, this gives it a chance to free it.

Reimplemented in D3PD::MultiAssociationTool< Types< T0 >, Types< U0 > >.

◆ releaseElementUntyped()

virtual void D3PD::MultiAssociationToolTo< CaloCell >::releaseElementUntyped ( const void * p)
virtualinherited

Release an object retrieved from the association.

Parameters
pThe object to release.

Call this when you are done with the object returned by nextUntyped(). The default implementation is a no-op, but if the association dynamically allocated the object which it returned, this gives it a chance to free it.

◆ reset()

StatusCode D3PD::TileCellDigitAssociationTool::reset ( const CaloCell & p)
virtual

Return the target object.

Parameters
pThe source object for the association. Return the target of the association, or 0.

Implements D3PD::MultiAssociationTool< CaloCell, TileDigits >.

Definition at line 46 of file TileCellDigitAssociationTool.cxx.

46 {
48
49 CHECK( m_digitGetter.reset(false) );
50
51 const CaloCell* cell=&p;
52 const TileCell* tilecell = dynamic_cast<const TileCell*> (cell);
53 if(!tilecell){
54 MsgStream log(msgSvc(), name());
55 log << MSG::ERROR
56 << "Passed CaloCell is not a TileCell" << endmsg;
57 return StatusCode::FAILURE;
58 }
59 const CaloDetDescrElement * caloDDE = tilecell->caloDDE();
60 long gain1 = tilecell->gain1();
61 long gain2 = tilecell->gain2();
62 IdentifierHash hash1 = caloDDE->onl1();
63 IdentifierHash hash2 = caloDDE->onl2();
64 if (hash1 != TileHWID::NOT_VALID_HASH) {
65 m_adcId1 = m_tilehwid->adc_id(hash1,gain1);
66 }
67 else{
68 MsgStream log(msgSvc(), name());
69 log<<MSG::DEBUG<<"TileCellDigitAssociationTool: Invalid hash on gain1"<<
70 endmsg;
71 m_adcId1.clear();
72 }
73
74 if (hash2 != TileHWID::NOT_VALID_HASH) {
75 m_adcId2 = m_tilehwid->adc_id(hash2,gain2);
76 }
77 else{
78 MsgStream log(msgSvc(), name());
79 log<<MSG::DEBUG<<"TileCellDigitAssociationTool: Invalid hash on gain2"<<
80 endmsg;
81 m_adcId2.clear();
82 }
83
84 return StatusCode::SUCCESS;
85}
#define endmsg
const CaloDetDescrElement * caloDDE() const
get pointer to CaloDetDescrElement (data member)
Definition CaloCell.h:321
IdentifierHash onl2() const
cell online identifier 2
IdentifierHash onl1() const
cell online identifier 1
int gain2(void) const
get gain of second PMT
Definition TileCell.cxx:175
int gain1(void) const
get gain of first PMT
Definition TileCell.cxx:168
@ NOT_VALID_HASH
Definition TileHWID.h:314
msgSvc
Provide convenience handles for various services.
Definition StdJOSetup.py:36

◆ resetUntyped()

virtual StatusCode D3PD::MultiAssociationTool< CaloCell, TileDigits >::resetUntyped ( const void * p)
virtualinherited

Start the iteration for a new association.

Parameters
pThe object from which to associate.

Member Data Documentation

◆ m_adcId1

HWIdentifier D3PD::TileCellDigitAssociationTool::m_adcId1
private

Definition at line 62 of file TileCellDigitAssociationTool.h.

◆ m_adcId2

HWIdentifier D3PD::TileCellDigitAssociationTool::m_adcId2
private

Definition at line 62 of file TileCellDigitAssociationTool.h.

◆ m_blockName

std::string D3PD::MultiAssociationToolImpl::m_blockName
privateinherited

Property: the name of this block.

Definition at line 122 of file MultiAssociationToolImpl.h.

◆ m_digitGetter

Getter D3PD::TileCellDigitAssociationTool::m_digitGetter
private

Definition at line 59 of file TileCellDigitAssociationTool.h.

◆ m_inputConverter

TypeConverter D3PD::MultiAssociationToolImpl::m_inputConverter
privateinherited

Helper to convert source object pointers.

Definition at line 125 of file MultiAssociationToolImpl.h.

◆ m_metadata

ObjectMetadata D3PD::AddVariable::m_metadata
protectedinherited

Metadata about the variables created by this object.

Definition at line 129 of file AddVariable.h.

◆ m_nDigitReturned

int D3PD::TileCellDigitAssociationTool::m_nDigitReturned
private

Definition at line 63 of file TileCellDigitAssociationTool.h.

◆ m_prefix

std::string D3PD::MultiAssociationToolImpl::m_prefix
privateinherited

Parameter: source object prefix.

Definition at line 119 of file MultiAssociationToolImpl.h.

◆ m_suffix

const std::string& D3PD::AddVariable::m_suffix
privateinherited

Reference to the variable suffix.

Definition at line 137 of file AddVariable.h.

◆ m_tileDigitKey

std::string D3PD::TileCellDigitAssociationTool::m_tileDigitKey
private

Definition at line 60 of file TileCellDigitAssociationTool.h.

◆ m_tilehwid

const TileHWID* D3PD::TileCellDigitAssociationTool::m_tilehwid
private

Definition at line 61 of file TileCellDigitAssociationTool.h.

◆ m_tree

IAddVariable* D3PD::AddVariable::m_tree
privateinherited

Reference to the block name.

The parent IAddVariable instance.

Definition at line 143 of file AddVariable.h.

◆ s_emptyString

const std::string D3PD::AddVariable::s_emptyString
staticprivateinherited

Used to provide a default value for blockName.

Definition at line 41 of file AddVariable.h.


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