ATLAS Offline Software
JEMRoICnvTool.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):
10 
11 // Local include(s):
12 #include "JEMRoICnvTool.h"
13 
14 namespace xAODMaker {
15 
16  JEMRoICnvTool::JEMRoICnvTool( const std::string& type,
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< IJEMRoICnvTool >( this );
23  }
24 
25 
36  xAOD::JEMRoIContainer* xaod) {
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 
44  // Loop over the ESD objects:
47  for( ; itr != end; ++itr ) {
48 
49  xAOD::JEMRoI* x = new xAOD::JEMRoI();
50  xaod->push_back( x );
51 
52  x->setRoiWord( (*itr)->roiWord() );
53 
54  }
55 
56  // Return gracefully:
57  return StatusCode::SUCCESS;
58  }
59 
60 } // namespace xAODMaker
DataModel_detail::const_iterator
Const iterator class for DataVector/DataList.
Definition: DVLIterator.h:82
JEMRoIContainer.h
xAODMaker::JEMRoICnvTool::JEMRoICnvTool
JEMRoICnvTool(const std::string &type, const std::string &name, const IInterface *parent)
Regular AlgTool constructor.
Definition: JEMRoICnvTool.cxx:16
xAODMaker
Definition: StoreGateSvc.h:72
x
#define x
JEMRoICnvTool.h
mergePhysValFiles.end
end
Definition: DataQuality/DataQualityUtils/scripts/mergePhysValFiles.py:93
JEMRoICollection.h
EL::StatusCode
::StatusCode StatusCode
StatusCode definition for legacy code.
Definition: PhysicsAnalysis/D3PDTools/EventLoop/EventLoop/StatusCode.h:22
test_pyathena.parent
parent
Definition: test_pyathena.py:15
xAODMaker::JEMRoICnvTool::convert
virtual StatusCode convert(const DataVector< LVL1::JEMRoI > *esd, xAOD::JEMRoIContainer *xaod) override
Function that fills an existing xAOD::EmTauRoIContainer.
Definition: JEMRoICnvTool.cxx:35
DataVector< LVL1::JEMRoI >
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.
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
xAOD::JEMRoI_v1
Description of JEMRoI_v1.
Definition: JEMRoI_v1.h:27
JEMRoIAuxContainer.h
AthAlgTool
Definition: AthAlgTool.h:26
DataVector::size
size_type size() const noexcept
Returns the number of elements in the collection.
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.
xAOD::JEMRoI
JEMRoI_v1 JEMRoI
Define the latest version of the JEMRoI class.
Definition: Event/xAOD/xAODTrigL1Calo/xAODTrigL1Calo/JEMRoI.h:14