ATLAS Offline Software
TrigT2MbtsBitsCnvTool.cxx
Go to the documentation of this file.
1 /*
2  Copyright (C) 2002-2021 CERN for the benefit of the ATLAS collaboration
3 */
4 
5 
6 // EDM include(s):
9 
11 // Local include(s):
12 #include "TrigT2MbtsBitsCnvTool.h"
13 
14 namespace xAODMaker {
15 
17  const std::string& name,
18  const IInterface* parent )
19  : AthAlgTool( type, name, parent ) {
20 
21  // Declare the interface(s) provided by the tool:
22  declareInterface< ITrigT2MbtsBitsCnvTool >( this );
23  }
24 
25 
36  xAOD::TrigT2MbtsBitsContainer* xaod ) const {
37 
38  // A small sanity check. The output container should really be empty...
39  if( !xaod->empty() ) {
40  ATH_MSG_WARNING( "The output xAOD container is not empty (size=="
41  << xaod->size() << ")" );
42  }
43 
45  TrigT2MbtsBitsContainer::const_iterator t2mbts_iter_end = aod->end();
46 
47  ATH_MSG_VERBOSE("AOD TrigT2MbtsBitsContainer size:: "<< aod->size());
48 
49  for(;t2mbts_iter != t2mbts_iter_end; ++t2mbts_iter){
50  // Create a (single) output xAOD object.
51  xAOD::TrigT2MbtsBits* xT2MbtsBits = new xAOD::TrigT2MbtsBits();
52  xaod->push_back(xT2MbtsBits);
53 
54  //
55  xT2MbtsBits->setTriggerEnergies( (*t2mbts_iter)-> triggerEnergies() );
56  xT2MbtsBits->setTriggerTimes( (*t2mbts_iter) -> triggerTimes() );
57 
58  ATH_MSG_VERBOSE("AOD vs xAOD::triggerEnergies size:: "<< (*t2mbts_iter)->triggerEnergies().size()<<" "<<xT2MbtsBits->triggerEnergies().size());
59  ATH_MSG_VERBOSE("AOD vs xAOD:triggerTimes size:: "<< (*t2mbts_iter)->triggerTimes().size()<<" "<<xT2MbtsBits->triggerTimes().size());
60  }
61  // Return gracefully:
62  return StatusCode::SUCCESS;
63  }
64 
65 } // namespace xAODMaker
xAOD::TrigT2MbtsBits_v1::setTriggerTimes
void setTriggerTimes(const std::vector< float > &trigTm)
DataModel_detail::const_iterator
Const iterator class for DataVector/DataList.
Definition: DVLIterator.h:82
xAOD::TrigT2MbtsBits_v1::setTriggerEnergies
void setTriggerEnergies(const std::vector< float > &trigEg)
ATH_MSG_VERBOSE
#define ATH_MSG_VERBOSE(x)
Definition: AthMsgStreamMacros.h:28
xAODMaker
Definition: StoreGateSvc.h:72
TrigT2MbtsBitsCnvTool.h
TrigT2MbtsBits.h
xAODMaker::TrigT2MbtsBitsCnvTool::convert
virtual StatusCode convert(const TrigT2MbtsBitsContainer *aod, xAOD::TrigT2MbtsBitsContainer *xaod) const override
Function that fills an existing xAOD::TrigT2MbtsBitsContainer.
Definition: TrigT2MbtsBitsCnvTool.cxx:35
xAOD::TrigT2MbtsBits
TrigT2MbtsBits_v1 TrigT2MbtsBits
Definition: Event/xAOD/xAODTrigMinBias/xAODTrigMinBias/TrigT2MbtsBits.h:11
TrigT2MbtsBitsContainer
Definition: Trigger/TrigEvent/TrigCaloEvent/TrigCaloEvent/TrigT2MbtsBitsContainer.h:13
EL::StatusCode
::StatusCode StatusCode
StatusCode definition for legacy code.
Definition: PhysicsAnalysis/D3PDTools/EventLoop/EventLoop/StatusCode.h:22
xAOD::TrigT2MbtsBits_v1
Definition: TrigT2MbtsBits_v1.h:14
test_pyathena.parent
parent
Definition: test_pyathena.py:15
DataVector
Derived DataVector<T>.
Definition: DataVector.h:581
name
std::string name
Definition: Control/AthContainers/Root/debug.cxx:192
DataVector::push_back
value_type push_back(value_type pElem)
Add an element to the end of the collection.
TrigT2MbtsBitsContainer.h
DataVector::end
const_iterator end() const noexcept
Return a const_iterator pointing past the end of the collection.
ATH_MSG_WARNING
#define ATH_MSG_WARNING(x)
Definition: AthMsgStreamMacros.h:32
python.CaloScaleNoiseConfig.type
type
Definition: CaloScaleNoiseConfig.py:78
xAODMaker::TrigT2MbtsBitsCnvTool::TrigT2MbtsBitsCnvTool
TrigT2MbtsBitsCnvTool(const std::string &type, const std::string &name, const IInterface *parent)
Regular AlgTool constructor.
Definition: TrigT2MbtsBitsCnvTool.cxx:16
AthAlgTool
Definition: AthAlgTool.h:26
xAOD::TrigT2MbtsBits_v1::triggerTimes
const std::vector< float > & triggerTimes() const
Return the relative times of the triggers.
TrigT2MbtsBitsContainer.h
DataVector::size
size_type size() const noexcept
Returns the number of elements in the collection.
xAOD::TrigT2MbtsBits_v1::triggerEnergies
const std::vector< float > & triggerEnergies() const
Return the trigger energies of each counter.
DataVector::empty
bool empty() const noexcept
Returns true if the collection is empty.
DataVector::begin
const_iterator begin() const noexcept
Return a const_iterator pointing at the beginning of the collection.