ATLAS Offline Software
Loading...
Searching...
No Matches
CscRawDataCnv_p3.cxx
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration
3*/
4
6#include "CscRawDataCnv_p3.h"
7#include "GaudiKernel/GaudiException.h"
8#include <TString.h> // for Form
9
10void
11CscRawDataCnv_p3::transToPers(const CscRawData* trans, CscRawData_p3* pers, MsgStream &)
12{
13 pers->m_amps = trans->samples();
14 pers->m_address = trans->address();
15 pers->m_id = trans->identify();
16 pers->m_time = trans->time();
17 pers->m_rpuID = trans->rpuID();
18 pers->m_width = trans->width();
19 pers->m_isTimeComputed = trans->isTimeComputed();
20 if (m_idHelp) {
21 // translate the transient (positional) hash into a geometrical hash as expected by the p3 persistent data format
22 IdContext context = m_idHelp->cscIdHelper().channel_context();
23 Identifier id;
24 IdentifierHash geoHash;
25 if (!m_idHelp->cscIdHelper().get_id(trans->hashId(), id, &context)) {
26 if (!m_idHelp->cscIdHelper().get_channel_hash(id, geoHash)) pers->m_hashId = geoHash;
27 }
28 } else {
29 throw std::runtime_error(Form("File: %s, Line: %d\nCscRawDataCnv_p3::transToPers() - No MuonIdHelperSvc present (needed for channel hash conversion)", __FILE__, __LINE__));
30 }
31}
32
33void
34CscRawDataCnv_p3::persToTrans(const CscRawData_p3* pers, CscRawData* trans, MsgStream &)
35{
36 *trans = CscRawData (pers->m_amps,
37 pers->m_address,
38 pers->m_id,
39 pers->m_rpuID,
40 pers->m_width);
41 // translate the persistent p3 (geometrical) hash into a positional hash (as expected by the transient data format)
42 trans->setHashID(pers->m_hashId);
43
44 if (pers->m_isTimeComputed)
45 trans->setTime (pers->m_time);
46}
virtual void transToPers(const CscRawData *transObj, CscRawData_p3 *persObj, MsgStream &log)
virtual void persToTrans(const CscRawData_p3 *persObj, CscRawData *transObj, MsgStream &log)
Muon::IMuonIdHelperSvc * m_idHelp
uint32_t m_address
online identifier of the first strip in the ROD cluster
uint16_t m_time
online peaking time of the first strip: this is 0 if failed to compute time in the ROD
bool m_isTimeComputed
failed to compute the time in the ROD or not - if failure m_time = 0
std::vector< uint16_t > m_amps
in common with _p1
uint16_t m_id
online identifier of the collection in which this strip is
uint32_t m_hashId
offline hash identifier of the first strip in the online cluster
uint16_t m_rpuID
SPU -Sparsifier Processing Unit - identifier in which this strip is.
uint16_t m_width
number of consecutive strips forming the on-line cluster
Class to hold the electronic output for a single CSC readout channel: n sampling ADC data + the addre...
Definition CscRawData.h:21
uint16_t time() const
Definition CscRawData.h:127
uint32_t address() const
Definition CscRawData.h:131
uint32_t hashId() const
Definition CscRawData.h:132
void setHashID(uint32_t hash)
Definition CscRawData.h:121
uint16_t rpuID() const
data access methods
Definition CscRawData.h:125
uint16_t identify() const
Definition CscRawData.h:126
uint16_t width() const
Definition CscRawData.h:128
const std::vector< uint16_t > & samples() const
Definition CscRawData.h:130
void setTime(uint16_t time)
Definition CscRawData.h:119
bool isTimeComputed() const
Definition CscRawData.h:129
This class saves the "context" of an expanded identifier (ExpandedIdentifier) for compact or hash ver...
Definition IdContext.h:26
This is a "hash" representation of an Identifier.