ATLAS Offline Software
Loading...
Searching...
No Matches
TrigT2ZdcSignalsCnvTool.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):
13
14namespace 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< ITrigT2ZdcSignalsCnvTool >( this );
23 }
24
36
37 // A small sanity check. The output container should really be empty...
38 if( !xaod->empty() ) {
39 ATH_MSG_WARNING( "The output xAOD container is not empty (size=="
40 << xaod->size() << ")" );
41 }
42
44 TrigT2ZdcSignalsContainer::const_iterator t2zdcsig_iter_end = aod->end();
45
46 ATH_MSG_VERBOSE("AOD TrigT2ZdcSignalsContainer size:: "<< aod->size());
47
48 for(;t2zdcsig_iter != t2zdcsig_iter_end; ++t2zdcsig_iter){
49 // Create a (single) output xAOD object.
51 xaod->push_back(xT2ZdcSignals);
52
53 //
54 xT2ZdcSignals->setTriggerEnergies( (*t2zdcsig_iter)-> triggerEnergies() );
55 xT2ZdcSignals->setTriggerTimes( (*t2zdcsig_iter) -> triggerTimes() );
56
57 ATH_MSG_VERBOSE("AOD vs xAOD::triggerEnergies size:: "<< (*t2zdcsig_iter)->triggerEnergies().size()<<" "<<xT2ZdcSignals->triggerEnergies().size());
58 ATH_MSG_VERBOSE("AOD vs xAOD:triggerTimes size:: "<< (*t2zdcsig_iter)->triggerTimes().size()<<" "<<xT2ZdcSignals->triggerTimes().size());
59 }
60 // Return gracefully:
61 return StatusCode::SUCCESS;
62 }
63
64} // namespace xAODMaker
#define ATH_MSG_VERBOSE(x)
#define ATH_MSG_WARNING(x)
AthAlgTool(const std::string &type, const std::string &name, const IInterface *parent)
Constructor with parameters:
DataModel_detail::const_iterator< DataVector > const_iterator
Definition DataVector.h:838
value_type push_back(value_type pElem)
Add an element to the end of the collection.
const_iterator end() const noexcept
Return a const_iterator pointing past the end of the collection.
const_iterator begin() const noexcept
Return a const_iterator pointing at the beginning of the collection.
size_type size() const noexcept
Returns the number of elements in the collection.
bool empty() const noexcept
Returns true if the collection is empty.
TrigT2ZdcSignalsCnvTool(const std::string &type, const std::string &name, const IInterface *parent)
Regular AlgTool constructor.
virtual StatusCode convert(const TrigT2ZdcSignalsContainer *aod, xAOD::TrigT2ZdcSignalsContainer *xaod) override
Function that fills an existing xAOD::TrigT2ZdcSignalsContainer.
const std::vector< float > & triggerEnergies() const
Return the trigger energies of each counter.
void setTriggerEnergies(const std::vector< float > &trigEg)
const std::vector< float > & triggerTimes() const
Return the relative times of the triggers.
void setTriggerTimes(const std::vector< float > &trigTm)