ATLAS Offline Software
TgcPrepDataReplicationTool3BCtoAllBC.cxx
Go to the documentation of this file.
1 /*
2  Copyright (C) 2002-2021 CERN for the benefit of the ATLAS collaboration
3 */
4 
8 
11 
12 //================ Constructor =================================================
14  (const std::string& t, const std::string& n, const IInterface* p)
15  : base_class(t, n, p) {}
16 
17 //================ Initialization ==============================================
19 {
21  ATH_CHECK(m_idHelperSvc.retrieve());
22 
23  for(int ibc = 0; ibc < BC_ALL; ibc++) {
24  std::ostringstream location;
25  location << "TGC_Measurements"
26  << (ibc == BC_PREVIOUS ? "PriorBC" : "")
27  << (ibc == BC_NEXT ? "NextBC" : "");
28  m_3BCKeys.at(ibc) = location.str();
29  }
30 
31  ATH_CHECK(m_3BCKeys.initialize());
32 
33 
34  return StatusCode::SUCCESS;
35 }
36 
38 {
39  return convert3BCtoAllBC(ctx);
40 }
41 
43 
44  SG::WriteHandle<TgcPrepDataContainer> tgcPrepDataContainerAll(m_AllBCKey, ctx);
45  ATH_CHECK(tgcPrepDataContainerAll.record(std::make_unique<TgcPrepDataContainer>(m_idHelperSvc->tgcIdHelper().module_hash_max()) ));
46 
47  auto tgc3BCs = m_3BCKeys.makeHandles(ctx);
48 
49  // convert
50  int ibc{0};
51  for (SG::ReadHandle<TgcPrepDataContainer>& handle : m_3BCKeys.makeHandles(ctx)) {
52  uint16_t bcBitMap = 0;
53  if (ibc == BC_PREVIOUS) bcBitMap = TgcPrepData::BCBIT_PREVIOUS;
54  else if (ibc == BC_CURRENT) bcBitMap = TgcPrepData::BCBIT_CURRENT;
55  else if (ibc == BC_NEXT) bcBitMap = TgcPrepData::BCBIT_NEXT;
56  ++ibc;
57 
58  if(!handle.isValid()) {
59  ATH_MSG_FATAL("Cannot retrieve " << handle.key());
60  return StatusCode::FAILURE;
61  }
62  for (const Muon::TgcPrepDataCollection* coll : *handle) {
63 
64  for (const Muon::TgcPrepData* to_copy : *coll) {
65  const Identifier channelId = to_copy->identify();
66  const Identifier elementId = m_idHelperSvc->tgcIdHelper().elementID(channelId);
67 
68  Muon::TgcPrepDataCollection* collection = Muon::IDC_Helper::getCollection<TgcPrepDataContainer, TgcIdHelper>
69  (elementId, tgcPrepDataContainerAll.ptr(), m_idHelperSvc->tgcIdHelper(), msg());
70 
71  Muon::TgcPrepDataCollection::iterator duplicateInAllBCs =
72  std::find_if(collection->begin(),collection->end(),[&channelId](const TgcPrepData* duplicate){
73  return channelId == duplicate->identify();
74  });
75  if(duplicateInAllBCs != collection->end()) {
76  TgcPrepData *prd = *duplicateInAllBCs;
77  prd->setBcBitMap(prd->getBcBitMap() | bcBitMap);
78  } else {
80  newPrepData->setHashAndIndex(collection->identifyHash(), collection->size());
81  collection->push_back(newPrepData);
82  }
83  }
84  }
85  }
86 
87  return StatusCode::SUCCESS;
88 }
89 
TgcPrepDataReplicationToolAllBCto3BC.h
ATH_MSG_FATAL
#define ATH_MSG_FATAL(x)
Definition: AthMsgStreamMacros.h:34
python.PerfMonSerializer.p
def p
Definition: PerfMonSerializer.py:743
Muon::TgcPrepData::BCBIT_PREVIOUS
@ BCBIT_PREVIOUS
Definition: TgcPrepData.h:97
SG::ReadHandle
Definition: StoreGate/StoreGate/ReadHandle.h:70
initialize
void initialize()
Definition: run_EoverP.cxx:894
read_hist_ntuple.t
t
Definition: read_hist_ntuple.py:5
TgcPrepDataReplicationTool3BCtoAllBC.h
Muon::TgcPrepDataReplicationTool3BCtoAllBC::TgcPrepDataReplicationTool3BCtoAllBC
TgcPrepDataReplicationTool3BCtoAllBC(const std::string &t, const std::string &n, const IInterface *p)
Constructor.
Definition: TgcPrepDataReplicationTool3BCtoAllBC.cxx:14
Muon::TgcPrepData::BCBIT_CURRENT
@ BCBIT_CURRENT
Definition: TgcPrepData.h:97
Muon::MuonPrepDataCollection::identifyHash
virtual IdentifierHash identifyHash() const override final
Muon::TgcPrepData::getBcBitMap
uint16_t getBcBitMap() const
Returns the bcBitMap of this PRD bit2 for Previous BC, bit1 for Current BC, bit0 for Next BC.
Definition: TgcPrepData.cxx:75
Muon::TgcPrepDataReplicationTool3BCtoAllBC::initialize
virtual StatusCode initialize() override
Definition: TgcPrepDataReplicationTool3BCtoAllBC.cxx:18
xAOD::uint16_t
setWord1 uint16_t
Definition: eFexEMRoI_v1.cxx:88
DataModel_detail::iterator
(Non-const) Iterator class for DataVector/DataList.
Definition: DVLIterator.h:184
Trk::PrepRawData::setHashAndIndex
void setHashAndIndex(unsigned short collHash, unsigned short objIndex)
TEMP for testing: might make some classes friends later ...
beamspotman.n
n
Definition: beamspotman.py:731
EL::StatusCode
::StatusCode StatusCode
StatusCode definition for legacy code.
Definition: PhysicsAnalysis/D3PDTools/EventLoop/EventLoop/StatusCode.h:22
SG::WriteHandle::ptr
pointer_type ptr()
Dereference the pointer.
TgcDigit.h
ATH_CHECK
#define ATH_CHECK
Definition: AthCheckMacros.h:40
Muon::TgcPrepData::BCBIT_NEXT
@ BCBIT_NEXT
Definition: TgcPrepData.h:97
Muon::MuonPrepDataCollection
Template to hold collections of MuonPrepRawData objects.
Definition: MuonPrepDataCollection.h:46
CaloCondBlobAlgs_fillNoiseFromASCII.channelId
channelId
Definition: CaloCondBlobAlgs_fillNoiseFromASCII.py:122
EventPrimitives.h
IDC_Helper.h
Muon::TgcPrepData::setBcBitMap
void setBcBitMap(const uint16_t)
set the bcBitMap for this PRD
Definition: TgcPrepData.cxx:80
DataVector::push_back
value_type push_back(value_type pElem)
Add an element to the end of the collection.
Muon::TgcPrepDataReplicationToolAllBCto3BC::makeTgcPrepData
static TgcPrepData * makeTgcPrepData(const TgcPrepData *to_copy, uint16_t bcBitMap)
Make new TgcPrepData.
Definition: TgcPrepDataReplicationToolAllBCto3BC.cxx:90
DataVector::end
const_iterator end() const noexcept
Return a const_iterator pointing past the end of the collection.
SG::WriteHandle
Definition: StoreGate/StoreGate/WriteHandle.h:76
SG::WriteHandle::record
StatusCode record(std::unique_ptr< T > data)
Record a const object to the store.
Muon::TgcPrepData
Class to represent TGC measurements.
Definition: TgcPrepData.h:32
Muon::TgcPrepDataReplicationTool3BCtoAllBC::replicate
virtual StatusCode replicate(const EventContext &ctx) const override
Definition: TgcPrepDataReplicationTool3BCtoAllBC.cxx:37
DataVector::size
size_type size() const noexcept
Returns the number of elements in the collection.
Muon::TgcPrepDataReplicationTool3BCtoAllBC::convert3BCtoAllBC
StatusCode convert3BCtoAllBC(const EventContext &ctx) const
Definition: TgcPrepDataReplicationTool3BCtoAllBC.cxx:42
python.AutoConfigFlags.msg
msg
Definition: AutoConfigFlags.py:7
DataVector::begin
const_iterator begin() const noexcept
Return a const_iterator pointing at the beginning of the collection.
Identifier
Definition: IdentifierFieldParser.cxx:14