ATLAS Offline Software
CmxCpHitsByteStreamxAODCnv.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 #include <vector>
6 #include <stdint.h>
7 
10 
12 #include "ByteStreamData/ROBData.h"
13 
15 #include "GaudiKernel/DataObject.h"
16 #include "GaudiKernel/IOpaqueAddress.h"
17 #include "GaudiKernel/IRegistry.h"
18 #include "GaudiKernel/ISvcLocator.h"
19 #include "GaudiKernel/StatusCode.h"
20 
23 #include "StoreGate/StoreGateSvc.h"
24 
28 
30 
31 namespace LVL1BS {
32 
34  Converter(storageType(), classID(), svcloc),
35  AthMessaging(svcloc != 0 ? msgSvc() : 0, "CmxCpHitsByteStreamxAODCnv"),
36  m_name("CmxCpHitsByteStreamxAODCnv")
37 {
38 
39 }
40 
41 // CLID
42 
45 }
46 
48 {
50 }
51 
52 // Init method gets all necessary services etc.
53 
54 
56  ATH_MSG_DEBUG("Initializing " << m_name);
57 
59  return StatusCode::SUCCESS;
60 }
61 
62 // createObj should create the RDO from bytestream.
63 
65  DataObject*& pObj) {
66  ATH_MSG_DEBUG("createObj() called");
67  // -------------------------------------------------------------------------
68  ByteStreamAddress *pBS_Addr = dynamic_cast<ByteStreamAddress *>(pAddr);
69  CHECK(pBS_Addr != nullptr);
70  // -------------------------------------------------------------------------
71  const std::string nm = *(pBS_Addr->par());
72  const std::string nmAux = nm + "Aux.";
73  ATH_MSG_DEBUG("Creating xAOD::CMXCPHits interface objects '" << nm << "'");
74 
75  xAOD::CMXCPHitsContainer* const cphitsCollection =
77 
78  // Create link with AUX container
80  ATH_MSG_DEBUG("Creating store with data link to '" << nmAux);
81 
82  for(size_t i=0; i < link->size(); ++i){
83  cphitsCollection->push_back(new xAOD::CMXCPHits());
84  }
85  // ==========================================================================
86  cphitsCollection->setStore(link);
87  pObj = SG::asStorable(cphitsCollection);
88  ATH_MSG_DEBUG("Number of xAOD::CMXCPHits created: " << cphitsCollection->size());
89 
90  return StatusCode::SUCCESS;
91 }
92 
93 // createRep should create the bytestream from RDOs.
94 
96  IOpaqueAddress*& /*pAddr*/) {
97  return StatusCode::FAILURE;
98 }
99 
100 } // end namespace
LVL1BS::CmxCpHitsByteStreamxAODCnv::classID
static const CLID & classID()
Definition: CmxCpHitsByteStreamxAODCnv.cxx:43
CMXCPHits.h
StorableConversions.h
convert to and from a SG storable
ROBData.h
Defines the ROB data entity. The ROB data is an abstract entity that is used to discase the raw event...
LVL1BS::CmxCpHitsByteStreamxAODCnv::CmxCpHitsByteStreamxAODCnv
CmxCpHitsByteStreamxAODCnv(ISvcLocator *svcloc)
Definition: CmxCpHitsByteStreamxAODCnv.cxx:33
initialize
void initialize()
Definition: run_EoverP.cxx:894
SG::asStorable
DataObject * asStorable(T *pObject)
Definition: StorableConversions.h:158
LVL1BS::CmxCpHitsByteStreamxAODCnv::initialize
virtual StatusCode initialize()
Definition: CmxCpHitsByteStreamxAODCnv.cxx:55
CMXCPHitsContainer.h
xAOD::AuxContainerBase::size
virtual size_t size() const override
Get the size of the container.
Definition: AuxContainerBase.cxx:429
ClassID_traits::ID
static const CLID & ID()
the CLID of T
Definition: Control/AthenaKernel/AthenaKernel/ClassID_traits.h:50
StdJOSetup.msgSvc
msgSvc
Provide convenience handles for various services.
Definition: StdJOSetup.py:36
lumiFormat.i
int i
Definition: lumiFormat.py:85
ClassID_traits.h
a traits class that associates a CLID to a type T It also detects whether T inherits from Gaudi DataO...
RawEvent.h
EL::StatusCode
::StatusCode StatusCode
StatusCode definition for legacy code.
Definition: PhysicsAnalysis/D3PDTools/EventLoop/EventLoop/StatusCode.h:22
ATH_MSG_DEBUG
#define ATH_MSG_DEBUG(x)
Definition: AthMsgStreamMacros.h:29
LVL1BS::CmxCpHitsByteStreamxAODCnv::m_name
std::string m_name
Converter name.
Definition: CmxCpHitsByteStreamxAODCnv.h:53
ByteStreamAddress
IOpaqueAddress for ByteStreamCnvSvc, with ROB ids.
Definition: ByteStreamAddress.h:28
AthMessaging
Class to provide easy MsgStream access and capabilities.
Definition: AthMessaging.h:55
CHECK
#define CHECK(...)
Evaluate an expression and check for errors.
Definition: Control/AthenaKernel/AthenaKernel/errorcheck.h:422
ByteStreamAddress.h
DataVector
Derived DataVector<T>.
Definition: DataVector.h:581
CLID
uint32_t CLID
The Class ID type.
Definition: Event/xAOD/xAODCore/xAODCore/ClassID_traits.h:47
CMXCPHitsAuxContainer.h
ByteStreamAddress::storageType
static constexpr long storageType()
Definition: ByteStreamAddress.h:51
xAOD::CMXCPHitsContainer
CMXCPHitsContainer_v1 CMXCPHitsContainer
Define the latest version of the CMXCPHits class.
Definition: CMXCPHitsContainer.h:18
Converter
Definition: Converter.h:27
errorcheck.h
Helpers for checking error return status codes and reporting errors.
CmxCpHitsByteStreamxAODCnv.h
DataVector::push_back
value_type push_back(value_type pElem)
Add an element to the end of the collection.
LVL1BS::CmxCpHitsByteStreamxAODCnv::createObj
virtual StatusCode createObj(IOpaqueAddress *pAddr, DataObject *&pObj)
Create TriggerTowers from ByteStream.
Definition: CmxCpHitsByteStreamxAODCnv.cxx:64
CalibCoolCompareRT.nm
nm
Definition: CalibCoolCompareRT.py:110
LVL1BS
Definition: ZdcByteStreamReadV1V2Tool.h:47
xAOD::CMXCPHits_v1
Description of CMXCPHits_v1.
Definition: CMXCPHits_v1.h:27
StoreGateSvc.h
DataVector::size
size_type size() const noexcept
Returns the number of elements in the collection.
LVL1BS::CmxCpHitsByteStreamxAODCnv::createRep
virtual StatusCode createRep(DataObject *pObj, IOpaqueAddress *&pAddr)
Create ByteStream from TriggerTowers.
Definition: CmxCpHitsByteStreamxAODCnv.cxx:95
IROBDataProviderSvc.h
LVL1BS::CmxCpHitsByteStreamxAODCnv::storageType
static long storageType()
Definition: CmxCpHitsByteStreamxAODCnv.cxx:47