ATLAS Offline Software
Public Member Functions | Protected Member Functions | Protected Attributes | List of all members
Muon::MmRdoToPrepDataToolMT Class Reference

#include <MmRdoToPrepDataToolMT.h>

Inheritance diagram for Muon::MmRdoToPrepDataToolMT:
Collaboration diagram for Muon::MmRdoToPrepDataToolMT:

Public Member Functions

virtual ~MmRdoToPrepDataToolMT ()=default
 default destructor More...
 
virtual StatusCode initialize () override
 standard Athena-Algorithm method More...
 
virtual StatusCode decode (const EventContext &ctx, const std::vector< IdentifierHash > &idVect) const override
 Decode method - declared in Muon::IMuonRdoToPrepDataTool. More...
 
virtual StatusCode decode (const EventContext &ctx, const std::vector< uint32_t > &robIds) const override
 
virtual StatusCode provideEmptyContainer (const EventContext &ctx) const override
 
StatusCode processCollection (const EventContext &ctx, Muon::MMPrepDataContainer *mmPrepDataContainer, xAOD::MMClusterContainer *xAODContainer, const std::vector< IdentifierHash > &idsToDecode, const MM_RawDataCollection *rdoColl) const
 

Protected Member Functions

Muon::MMPrepDataContainersetupMM_PrepDataContainer (const EventContext &ctx) const
 
xAOD::MMClusterContainersetupxAODPrepDataContainer (SG::WriteHandle< xAOD::MMClusterContainer > &outputContainer) const
 
const MM_RawDataContainergetRdoContainer (const EventContext &ctx) const
 
void processRDOContainer (const EventContext &ctx, Muon::MMPrepDataContainer *mmPrepDataContainer, xAOD::MMClusterContainer *xAODContainer, const std::vector< IdentifierHash > &idsToDecode) const
 

Protected Attributes

SG::ReadCondHandleKey< MuonGM::MuonDetectorManagerm_muDetMgrKey
 
ServiceHandle< Muon::IMuonIdHelperSvcm_idHelperSvc
 
SG::WriteHandleKey< Muon::MMPrepDataContainerm_writeKey
 MdtPrepRawData containers. More...
 
SG::ReadHandleKey< MM_RawDataContainerm_readKey
 
SG::UpdateHandleKey< MMPrepDataCollection_Cachem_updateKey
 This is the key for the cache for the MM PRD containers, can be empty. More...
 
Gaudi::Property< bool > m_merge {this, "MergePrds", true}
 
ToolHandle< IMMClusterBuilderToolm_clusterBuilderTool
 
ToolHandle< INSWCalibToolm_calibTool {this, "NSWCalibTool", ""}
 
Gaudi::Property< float > m_singleStripChargeCut
 
SG::WriteHandleKey< xAOD::MMClusterContainerm_xAODKey
 

Detailed Description

Definition at line 23 of file MmRdoToPrepDataToolMT.h.

Constructor & Destructor Documentation

◆ ~MmRdoToPrepDataToolMT()

virtual Muon::MmRdoToPrepDataToolMT::~MmRdoToPrepDataToolMT ( )
virtualdefault

default destructor

Member Function Documentation

◆ decode() [1/2]

StatusCode Muon::MmRdoToPrepDataToolMT::decode ( const EventContext &  ctx,
const std::vector< IdentifierHash > &  idVect 
) const
overridevirtual

Decode method - declared in Muon::IMuonRdoToPrepDataTool.

Definition at line 266 of file MmRdoToPrepDataToolMT.cxx.

267  {
268 
269  // is idVect a right thing to use here? to be reviewed maybe
270  ATH_MSG_DEBUG("Size of the RDO container to be decoded: " << idVect.size());
271 
272  MMPrepDataContainer* mmPrepDataContainer = setupMM_PrepDataContainer(ctx);
273 
274  if (!mmPrepDataContainer) {
275  return StatusCode::FAILURE;
276  }
277 
279  xAOD::MMClusterContainer* xAODContainer{nullptr};
280  if (!m_xAODKey.empty()) {
281  outputContainer = SG::WriteHandle{m_xAODKey, ctx};
282  ATH_CHECK(outputContainer.record(std::make_unique<xAOD::MMClusterContainer>(),
283  std::make_unique<xAOD::MMClusterAuxContainer>()));
284  xAODContainer = outputContainer.ptr();
285  }
286 
287  processRDOContainer(ctx, mmPrepDataContainer, xAODContainer, idVect);
288 
289  return StatusCode::SUCCESS;
290 }

◆ decode() [2/2]

StatusCode Muon::MmRdoToPrepDataToolMT::decode ( const EventContext &  ctx,
const std::vector< uint32_t > &  robIds 
) const
overridevirtual

Definition at line 292 of file MmRdoToPrepDataToolMT.cxx.

293  {
294  ATH_MSG_FATAL("ROB based decoding is not supported....");
295  return StatusCode::FAILURE;
296 }

◆ getRdoContainer()

const MM_RawDataContainer * Muon::MmRdoToPrepDataToolMT::getRdoContainer ( const EventContext &  ctx) const
protected

Definition at line 229 of file MmRdoToPrepDataToolMT.cxx.

229  {
230  auto rdoContainerHandle = SG::makeHandle(m_readKey, ctx);
231  if (rdoContainerHandle.isValid()) {
232  ATH_MSG_DEBUG("MM_getRdoContainer success");
233  return rdoContainerHandle.cptr();
234  }
235  ATH_MSG_WARNING("Retrieval of MM_RawDataContainer failed !");
236 
237  return nullptr;
238 }

◆ initialize()

StatusCode Muon::MmRdoToPrepDataToolMT::initialize ( )
overridevirtual

standard Athena-Algorithm method

Definition at line 26 of file MmRdoToPrepDataToolMT.cxx.

26  {
27  ATH_MSG_DEBUG(" in initialize()");
28  ATH_CHECK(m_idHelperSvc.retrieve());
29  // check if the initialization of the data container is success
30  ATH_CHECK(m_writeKey.initialize());
31  ATH_CHECK(m_readKey.initialize());
33  ATH_CHECK(m_calibTool.retrieve());
34  ATH_CHECK(m_updateKey.initialize(!m_updateKey.key().empty()));
35  ATH_CHECK(m_xAODKey.initialize(!m_xAODKey.empty()));
36  return StatusCode::SUCCESS;
37 }

◆ processCollection()

StatusCode Muon::MmRdoToPrepDataToolMT::processCollection ( const EventContext &  ctx,
Muon::MMPrepDataContainer mmPrepDataContainer,
xAOD::MMClusterContainer xAODContainer,
const std::vector< IdentifierHash > &  idsToDecode,
const MM_RawDataCollection rdoColl 
) const

reconstruct the clusters

Definition at line 39 of file MmRdoToPrepDataToolMT.cxx.

43  {
44  ATH_MSG_DEBUG(" ***************** Start of process MM Collection");
45  const MmIdHelper& id_helper = m_idHelperSvc->mmIdHelper();
46  // protect for large splashes
47  bool merge = m_merge || rdoColl->size() > 100;
48 
49  const IdentifierHash hash = rdoColl->identifierHash();
50 
51  // check if we actually want to decode this RDO collection
52  if (!idsToDecode.empty() and std::find(idsToDecode.begin(), idsToDecode.end(),
53  hash) == idsToDecode.end()) {
54  ATH_MSG_DEBUG("Hash ID " << hash << " not in input list, ignore");
55  return StatusCode::SUCCESS;
56  } else
57  ATH_MSG_DEBUG("Going to decode " << hash);
58 
59  // check if the collection already exists, otherwise add it
60  if (mmPrepDataContainer->indexFindPtr(hash) != nullptr) {
61 
62  ATH_MSG_DEBUG("In processCollection: collection already contained in the MM PrepData container");
63  return StatusCode::SUCCESS;
64  }
65 
66  // Get write handle for this collection
68  // Check if collection already exists (via the cache, i.e. in online trigger
69  // mode)
70  if (lock.OnlineAndPresentInAnotherView()) {
71  ATH_MSG_DEBUG("In processCollection: collection already available in the MM PrepData container (via cache)");
72  return StatusCode::SUCCESS;
73  }
74  auto prdColl = std::make_unique<MMPrepDataCollection>(hash);
75 
76  // set the offline identifier of the collection Id
77  IdContext context = id_helper.module_context();
78  Identifier moduleId{};
79  if (id_helper.get_id(hash, moduleId, &context) != 0) {
80  ATH_MSG_ERROR("Could not convert the hash Id: " << hash << " to identifier");
81  } else {
82  ATH_MSG_DEBUG(" dump moduleId " << moduleId);
83  prdColl->setIdentifier(moduleId);
84  }
85 
86  // MuonDetectorManager from the conditions store
88  if (!MuonDetMgr.isValid()) {
89  ATH_MSG_ERROR("Null pointer to the read MuonDetectorManager conditions object");
90  return StatusCode::FAILURE;
91  }
92 
93  std::vector<MMPrepData> MMprds;
94  // convert the RDO collection to a PRD collection
95  for (const MM_RawData* rdo : *rdoColl) {
96  ATH_MSG_DEBUG("Adding a new MM PrepRawData");
97 
98  const Identifier rdoId = rdo->identify();
99  // ATH_MSG_ALWAYS(" dump rdo " << m_idHelperSvc->toString(rdoId) << " pdo " << rdo->charge()
100  // << " time " << rdo->time() << " relBCID " << rdo->relBcid());
101 
102  int channel = rdo->channel();
103  std::vector<Identifier> rdoList;
104  Identifier prdId = id_helper.channelID(rdoId, id_helper.multilayer(rdoId), id_helper.gasGap(rdoId), channel);
105  ATH_MSG_DEBUG(" channel RDO " << channel << " channel from rdoID " << id_helper.channel(rdoId));
106  rdoList.push_back(prdId);
107 
108  // get the local and global positions
109  const MuonGM::MMReadoutElement* detEl = MuonDetMgr->getMMReadoutElement(prdId);
111 
112  bool getLocalPos = detEl->stripPosition(prdId, localPos);
113  if (!getLocalPos) {
114  if (msgLvl(MSG::DEBUG)) { // We should still keep this a warning and fix it properly but silence it for now (ATLASRECTS-7520)
115  ATH_MSG_WARNING("Could not get the local strip position for "<< m_idHelperSvc->toString(prdId));
116  }
117  continue;
118  }
119 
120  Amg::Vector3D globalPos{Amg::Vector3D::Zero()};
121  bool getGlobalPos = detEl->stripGlobalPosition(prdId, globalPos);
122  if (!getGlobalPos) {
123  ATH_MSG_WARNING("Could not get the global strip position for MM");
124  continue;
125  }
126  NSWCalib::CalibratedStrip calibStrip;
127  ATH_CHECK(m_calibTool->calibrateStrip(ctx, rdo, calibStrip));
128  if (calibStrip.charge < 0) {
129  if (!hitNegativeCharge || msgLvl(MSG::DEBUG)) {
130  ATH_MSG_DEBUG("One MM RDO or more, such as one with pdo = "<< rdo->charge()
131  << " counts, corresponds to a negative charge ("<< calibStrip.charge << "). Skipping these RDOs");
132  hitNegativeCharge = true;
133  }
134  continue;
135  }
136 
137  Trk::LocalDirection localDir;
138  const Trk::PlaneSurface& psurf = detEl->surface(prdId);
140  psurf.globalToLocal(globalPos, globalPos, lpos);
141  psurf.globalToLocalDirection(globalPos, localDir);
142 
143  ATH_MSG_DEBUG(" Surface centre x " << Amg::toString(psurf.center()));
144  ATH_MSG_DEBUG(" localPos x " <<Amg::toString(localPos)<< " localPos y " << Amg::toString(lpos));
145 
146  Amg::Vector3D gdir = psurf.transform().linear() * Amg::Vector3D::UnitY();
147  ATH_MSG_DEBUG(" MM detector surface direction phi "<< gdir.phi() << " global radius hit " << globalPos.perp()
148  << " phi pos " << globalPos.phi() << " global z "<< globalPos.z());
149 
150  auto cov = Amg::MatrixX(2, 2);
151  cov.setIdentity();
152  (cov)(0, 0) = calibStrip.resTransDistDrift;
153  (cov)(1, 1) = calibStrip.resLongDistDrift;
154  localPos.x() += calibStrip.dx;
155 
156  if (!merge) {
157  // storage will be handeled by Store Gate
158  auto mpd = std::make_unique<MMPrepData>(prdId, hash,
159  std::move(localPos), std::move(rdoList), std::move(cov),
160  detEl,
161  calibStrip.time, calibStrip.charge, calibStrip.distDrift);
163 
164  prdColl->push_back(std::move(mpd));
165 
166  } else {
167  if (calibStrip.charge < m_singleStripChargeCut) {
168  // ATH_MSG_ALWAYS("Strip with charge " << calibStrip.charge << " below the cut of " << m_singleStripChargeCut << ", skipping it");
169  continue;
170  }
171  // ATH_MSG_ALWAYS("producing prd with charge " << calibStrip.charge << " time " << calibStrip.time);
172  MMPrepData mpd(prdId, hash, std::move(localPos), std::move(rdoList),
173  std::move(cov), detEl, calibStrip.time, calibStrip.charge,
174  calibStrip.distDrift);
175  // set the hash of the MMPrepData such that it contains the correct value
176  // in case it gets used in SimpleMMClusterBuilderTool::getClusters
177  mpd.setHashAndIndex(hash, 0);
179  MMprds.push_back(std::move(mpd));
180  }
181  }
182 
183  if (merge) {
184  std::vector<std::unique_ptr<MMPrepData>> clusters;
185 
187  ATH_CHECK(m_clusterBuilderTool->getClusters(ctx, std::move(MMprds), clusters));
188 
189  for (std::unique_ptr<MMPrepData>& prdN : clusters) {
190  prdN->setHashAndIndex(prdColl->identifyHash(), prdColl->size());
191  prdColl->push_back(std::move(prdN));
192  }
193  } // merge
194 
195  if (xAODContainer) {
196  // Lambda to fill xprd from prd
197  std::vector<const MMPrepData*> sortMe{prdColl->begin(), prdColl->end()};
198  std::ranges::sort(sortMe, IdentifierByDetElSorter{m_idHelperSvc.get()});
199  for (const MMPrepData* prd : sortMe) {
200  xAOD::MMCluster* cluster{xAODContainer->push_back(std::make_unique<xAOD::MMCluster>())};
201  cluster->setIdentifier(prd->identify().get_compact());
202  cluster->setMeasurement(m_idHelperSvc->detElementHash(prd->identify()),
203  xAOD::MeasVector<1>{prd->localPosition().x()},
204  xAOD::MeasMatrix<1>{prd->localCovariance()(0, 0)});
205  cluster->setGasGap(id_helper.gasGap(prd->identify()));
206  cluster->setChannelNumber(id_helper.channel(prd->identify()));
207  cluster->setTime(prd->time());
208  cluster->setCharge(prd->charge());
209  cluster->setDriftDist(prd->driftDist());
210  cluster->setAngle(prd->angle());
211  cluster->setChiSqProb(prd->chisqProb());
212  cluster->setAuthor(prd->author());
213  cluster->setQuality(prd->quality());
214  cluster->setStripNumbers(prd->stripNumbers());
215  cluster->setStripTimes(prd->stripTimes());
216  cluster->setStripCharges(prd->stripCharges());
217  cluster->setStripDriftDist(prd->stripDriftDist());
218  cluster->setStripDriftErrors(prd->stripDriftErrors());
219  }
220  }
221  // now write the collection
222  ATH_CHECK(lock.addOrDelete(std::move(prdColl)));
223  ATH_MSG_DEBUG("PRD hash " << hash << " has been moved to container");
224 
225  return StatusCode::SUCCESS;
226 }

◆ processRDOContainer()

void Muon::MmRdoToPrepDataToolMT::processRDOContainer ( const EventContext &  ctx,
Muon::MMPrepDataContainer mmPrepDataContainer,
xAOD::MMClusterContainer xAODContainer,
const std::vector< IdentifierHash > &  idsToDecode 
) const
protected

Definition at line 240 of file MmRdoToPrepDataToolMT.cxx.

243  {
244  ATH_MSG_DEBUG("In processRDOContainer");
245  const MM_RawDataContainer* rdoContainer = getRdoContainer(ctx);
246  if (!rdoContainer) {
247  return;
248  }
249 
250  for (const MM_RawDataCollection* rdoColl : *rdoContainer) {
251 
252  if (rdoColl->empty()){
253  continue;
254  }
255  ATH_MSG_DEBUG("New RDO collection with " << rdoColl->size() << "MM Hits");
256 
257  if (processCollection(ctx, mmPrepDataContainer, xAODContainer, idsToDecode, rdoColl).isFailure()) {
259  "processCsm returns a bad StatusCode - keep going for new data "
260  "collections in this event");
261  }
262  }
263 }

◆ provideEmptyContainer()

StatusCode Muon::MmRdoToPrepDataToolMT::provideEmptyContainer ( const EventContext &  ctx) const
overridevirtual

Definition at line 297 of file MmRdoToPrepDataToolMT.cxx.

297  {
298  if (!m_xAODKey.empty()) {
299  SG::WriteHandle writeHandle{m_xAODKey, ctx};
300  ATH_CHECK(writeHandle.record(std::make_unique<xAOD::MMClusterContainer>(),
301  std::make_unique<xAOD::MMClusterAuxContainer>()));
302  }
303 
304  return setupMM_PrepDataContainer(ctx) ? StatusCode::SUCCESS
305  : StatusCode::FAILURE;
306 }

◆ setupMM_PrepDataContainer()

MMPrepDataContainer * Muon::MmRdoToPrepDataToolMT::setupMM_PrepDataContainer ( const EventContext &  ctx) const
protected

Definition at line 309 of file MmRdoToPrepDataToolMT.cxx.

309  {
310 
311  SG::WriteHandle handle{m_writeKey, ctx};
312  if (m_updateKey.key().empty()) {
313  // No external cache, just record the container
315  handle.record(std::make_unique<MMPrepDataContainer>(
316  m_idHelperSvc->mmIdHelper().module_hash_max()));
317 
318  if (status.isFailure() || !handle.isValid()) {
320  "Could not record container of MicroMega PrepData Container at "
321  << m_writeKey.key());
322  return nullptr;
323  }
324  } else {
325  // use the cache to get the container
327  if (!update.isValid()) {
328  ATH_MSG_FATAL("Invalid UpdateHandle " << m_updateKey.key());
329  return nullptr;
330  }
331  StatusCode status = handle.record(std::make_unique<MMPrepDataContainer>(update.ptr()));
332  if (status.isFailure() || !handle.isValid()) {
334  "Could not record container of MM PrepData Container using cache "
335  << m_updateKey.key() << " - "
336  << m_writeKey.key());
337  return nullptr;
338  }
339  ATH_MSG_DEBUG("Created container using cache for "
340  << m_updateKey.key());
341  }
342  return handle.ptr();
343 }

◆ setupxAODPrepDataContainer()

xAOD::MMClusterContainer* Muon::MmRdoToPrepDataToolMT::setupxAODPrepDataContainer ( SG::WriteHandle< xAOD::MMClusterContainer > &  outputContainer) const
protected

Member Data Documentation

◆ m_calibTool

ToolHandle<INSWCalibTool> Muon::MmRdoToPrepDataToolMT::m_calibTool {this, "NSWCalibTool", ""}
protected

Definition at line 81 of file MmRdoToPrepDataToolMT.h.

◆ m_clusterBuilderTool

ToolHandle<IMMClusterBuilderTool> Muon::MmRdoToPrepDataToolMT::m_clusterBuilderTool
protected
Initial value:
{
this, "ClusterBuilderTool",
"Muon::SimpleMMClusterBuilderTool/SimpleMMClusterBuilderTool"}

Definition at line 78 of file MmRdoToPrepDataToolMT.h.

◆ m_idHelperSvc

ServiceHandle<Muon::IMuonIdHelperSvc> Muon::MmRdoToPrepDataToolMT::m_idHelperSvc
protected
Initial value:
{
this, "MuonIdHelperSvc", "Muon::MuonIdHelperSvc/MuonIdHelperSvc"}

Definition at line 63 of file MmRdoToPrepDataToolMT.h.

◆ m_merge

Gaudi::Property<bool> Muon::MmRdoToPrepDataToolMT::m_merge {this, "MergePrds", true}
protected

Definition at line 76 of file MmRdoToPrepDataToolMT.h.

◆ m_muDetMgrKey

SG::ReadCondHandleKey<MuonGM::MuonDetectorManager> Muon::MmRdoToPrepDataToolMT::m_muDetMgrKey
protected
Initial value:
{
this, "DetectorManagerKey", "MuonDetectorManager",
"Key of input MuonDetectorManager condition data"}

Definition at line 59 of file MmRdoToPrepDataToolMT.h.

◆ m_readKey

SG::ReadHandleKey<MM_RawDataContainer> Muon::MmRdoToPrepDataToolMT::m_readKey
protected
Initial value:
{
this, "InputCollection", "MMRDO"}

Definition at line 69 of file MmRdoToPrepDataToolMT.h.

◆ m_singleStripChargeCut

Gaudi::Property<float> Muon::MmRdoToPrepDataToolMT::m_singleStripChargeCut
protected
Initial value:
{
this, "singleStripChargeCut",
FLT_MIN }

Definition at line 85 of file MmRdoToPrepDataToolMT.h.

◆ m_updateKey

SG::UpdateHandleKey<MMPrepDataCollection_Cache> Muon::MmRdoToPrepDataToolMT::m_updateKey
protected
Initial value:
{
this, "PrdCacheKey", "",
"Optional external cache for the MM PRD container"}

This is the key for the cache for the MM PRD containers, can be empty.

Definition at line 73 of file MmRdoToPrepDataToolMT.h.

◆ m_writeKey

SG::WriteHandleKey<Muon::MMPrepDataContainer> Muon::MmRdoToPrepDataToolMT::m_writeKey
protected
Initial value:
{
this, "OutputCollection", "MM_Measurements"}

MdtPrepRawData containers.

Definition at line 67 of file MmRdoToPrepDataToolMT.h.

◆ m_xAODKey

SG::WriteHandleKey<xAOD::MMClusterContainer> Muon::MmRdoToPrepDataToolMT::m_xAODKey
protected
Initial value:
{
this, "xAODKey", "",
"If empty, do not produce xAOD, otherwise this is the key of the output "
"xAOD MDT PRD container"}

Definition at line 88 of file MmRdoToPrepDataToolMT.h.


The documentation for this class was generated from the following files:
MuonGM::MMReadoutElement::stripPosition
virtual bool stripPosition(const Identifier &id, Amg::Vector2D &pos) const override final
strip position – local or global If the strip number is outside the range of valid strips,...
Definition: MMReadoutElement.h:206
Muon::MmRdoToPrepDataToolMT::m_muDetMgrKey
SG::ReadCondHandleKey< MuonGM::MuonDetectorManager > m_muDetMgrKey
Definition: MmRdoToPrepDataToolMT.h:59
Trk::PlaneSurface::globalToLocal
virtual bool globalToLocal(const Amg::Vector3D &glob, const Amg::Vector3D &mom, Amg::Vector2D &loc) const override final
Specified for PlaneSurface: GlobalToLocal method without dynamic memory allocation - boolean checks i...
Definition: PlaneSurface.cxx:209
Muon::MmRdoToPrepDataToolMT::processCollection
StatusCode processCollection(const EventContext &ctx, Muon::MMPrepDataContainer *mmPrepDataContainer, xAOD::MMClusterContainer *xAODContainer, const std::vector< IdentifierHash > &idsToDecode, const MM_RawDataCollection *rdoColl) const
Definition: MmRdoToPrepDataToolMT.cxx:39
NSWCalib::CalibratedStrip::time
double time
Definition: INSWCalibTool.h:26
ATH_MSG_FATAL
#define ATH_MSG_FATAL(x)
Definition: AthMsgStreamMacros.h:34
Amg::MatrixX
Eigen::Matrix< double, Eigen::Dynamic, Eigen::Dynamic > MatrixX
Dynamic Matrix - dynamic allocation.
Definition: EventPrimitives.h:27
NSWCalib::CalibratedStrip::charge
double charge
Definition: INSWCalibTool.h:25
IdentifiableContainerMT::IDC_WriteHandle
friend class IDC_WriteHandle
Definition: IdentifiableContainerMT.h:140
plotting.yearwise_efficiency.channel
channel
Definition: yearwise_efficiency.py:24
MuonIdHelper::get_id
virtual int get_id(const IdentifierHash &hash_id, Identifier &id, const IdContext *context=0) const override
Create compact id from hash id (return == 0 for OK)
Definition: MuonIdHelper.cxx:70
Trk::PrepRawDataType::MMPrepData
@ MMPrepData
SG::ReadCondHandle
Definition: ReadCondHandle.h:44
find
std::string find(const std::string &s)
return a remapped string
Definition: hcg.cxx:135
xAOD::MMCluster_v1
Definition: MMCluster_v1.h:20
NSWCalib::CalibratedStrip::distDrift
double distDrift
Definition: INSWCalibTool.h:28
IdentifiableContainerMT::getWriteHandle
IDC_WriteHandle getWriteHandle(IdentifierHash hash)
Definition: IdentifiableContainerMT.h:248
Muon::MmRdoToPrepDataToolMT::m_idHelperSvc
ServiceHandle< Muon::IMuonIdHelperSvc > m_idHelperSvc
Definition: MmRdoToPrepDataToolMT.h:63
NSWCalib::CalibratedStrip::dx
double dx
Definition: INSWCalibTool.h:31
Amg::Vector2D
Eigen::Matrix< double, 2, 1 > Vector2D
Definition: GeoPrimitives.h:48
Muon::MmRdoToPrepDataToolMT::m_clusterBuilderTool
ToolHandle< IMMClusterBuilderTool > m_clusterBuilderTool
Definition: MmRdoToPrepDataToolMT.h:78
Muon::MMPrepDataContainer
MuonPrepDataContainerT< MMPrepData > MMPrepDataContainer
Definition: MuonPrepDataContainer.h:100
plotBeamSpotVxVal.cov
cov
Definition: plotBeamSpotVxVal.py:200
NSWCalib::CalibratedStrip::resTransDistDrift
double resTransDistDrift
Definition: INSWCalibTool.h:29
python.RatesEmulationExample.lock
lock
Definition: RatesEmulationExample.py:148
Muon::MmRdoToPrepDataToolMT::processRDOContainer
void processRDOContainer(const EventContext &ctx, Muon::MMPrepDataContainer *mmPrepDataContainer, xAOD::MMClusterContainer *xAODContainer, const std::vector< IdentifierHash > &idsToDecode) const
Definition: MmRdoToPrepDataToolMT.cxx:240
Trk::Surface::center
const Amg::Vector3D & center() const
Returns the center position of the Surface.
NSWCalib::CalibratedStrip::resLongDistDrift
double resLongDistDrift
Definition: INSWCalibTool.h:30
MuonGM::MuonClusterReadoutElement::surface
virtual const Trk::PlaneSurface & surface() const override
access to chamber surface (phi orientation), uses the first gas gap
Definition: MuonClusterReadoutElement.h:123
Muon::MmRdoToPrepDataToolMT::m_updateKey
SG::UpdateHandleKey< MMPrepDataCollection_Cache > m_updateKey
This is the key for the cache for the MM PRD containers, can be empty.
Definition: MmRdoToPrepDataToolMT.h:73
MmIdHelper::multilayer
int multilayer(const Identifier &id) const
Definition: MmIdHelper.cxx:796
SG::makeHandle
SG::ReadCondHandle< T > makeHandle(const SG::ReadCondHandleKey< T > &key, const EventContext &ctx=Gaudi::Hive::currentContext())
Definition: ReadCondHandle.h:274
Amg::toString
std::string toString(const Translation3D &translation, int precision=4)
GeoPrimitvesToStringConverter.
Definition: GeoPrimitivesToStringConverter.h:40
ATH_MSG_ERROR
#define ATH_MSG_ERROR(x)
Definition: AthMsgStreamMacros.h:33
Muon::MmRdoToPrepDataToolMT::m_xAODKey
SG::WriteHandleKey< xAOD::MMClusterContainer > m_xAODKey
Definition: MmRdoToPrepDataToolMT.h:88
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
MuonGM::MMReadoutElement::stripGlobalPosition
bool stripGlobalPosition(const Identifier &id, Amg::Vector3D &gpos) const
Definition: MMReadoutElement.h:277
Muon::MMPrepData::Author::RDOTOPRDConverter
@ RDOTOPRDConverter
ATH_CHECK
#define ATH_CHECK
Definition: AthCheckMacros.h:40
Trk::PlaneSurface::globalToLocalDirection
void globalToLocalDirection(const Amg::Vector3D &glodir, Trk::LocalDirection &locdir) const
This method transforms the global direction to a local direction wrt the plane.
Definition: PlaneSurface.cxx:256
NSWCalib::CalibratedStrip
Definition: INSWCalibTool.h:24
DataVector
Derived DataVector<T>.
Definition: DataVector.h:794
Trk::LocalDirection
represents the three-dimensional global direction with respect to a planar surface frame.
Definition: LocalDirection.h:81
xAOD::MeasVector
Eigen::Matrix< float, N, 1 > MeasVector
Abrivation of the Matrix & Covariance definitions.
Definition: MeasurementDefs.h:53
Muon::MmRdoToPrepDataToolMT::getRdoContainer
const MM_RawDataContainer * getRdoContainer(const EventContext &ctx) const
Definition: MmRdoToPrepDataToolMT.cxx:229
Muon::MmRdoToPrepDataToolMT::m_singleStripChargeCut
Gaudi::Property< float > m_singleStripChargeCut
Definition: MmRdoToPrepDataToolMT.h:85
SG::UpdateHandle
Definition: UpdateHandle.h:91
DataVector::push_back
value_type push_back(value_type pElem)
Add an element to the end of the collection.
SG::CondHandleKey::initialize
StatusCode initialize(bool used=true)
Amg::Vector3D
Eigen::Matrix< double, 3, 1 > Vector3D
Definition: GeoPrimitives.h:47
Muon::MmRdoToPrepDataToolMT::m_merge
Gaudi::Property< bool > m_merge
Definition: MmRdoToPrepDataToolMT.h:76
IdentifiableContainerMT::indexFindPtr
virtual const T * indexFindPtr(IdentifierHash hashId) const override final
return pointer on the found entry or null if out of range using hashed index - fast version,...
Definition: IdentifiableContainerMT.h:289
SG::WriteHandle
Definition: StoreGate/StoreGate/WriteHandle.h:73
MmIdHelper::channel
int channel(const Identifier &id) const override
Definition: MmIdHelper.cxx:800
MmIdHelper
Definition: MmIdHelper.h:54
MmIdHelper::gasGap
int gasGap(const Identifier &id) const override
get the hashes
Definition: MmIdHelper.cxx:798
CaloCondBlobAlgs_fillNoiseFromASCII.hash
dictionary hash
Definition: CaloCondBlobAlgs_fillNoiseFromASCII.py:108
ATH_MSG_WARNING
#define ATH_MSG_WARNING(x)
Definition: AthMsgStreamMacros.h:32
Trk::PlaneSurface
Definition: PlaneSurface.h:64
DEBUG
#define DEBUG
Definition: page_access.h:11
RunTileMonitoring.clusters
clusters
Definition: RunTileMonitoring.py:133
MuonIdHelper::module_context
IdContext module_context() const
id for module
Definition: MuonIdHelper.cxx:735
MuonGM::MMReadoutElement
An MMReadoutElement corresponds to a single STGC module; therefore typicaly a barrel muon station con...
Definition: MMReadoutElement.h:25
merge.status
status
Definition: merge.py:16
xAOD::MeasMatrix
Eigen::Matrix< float, N, N > MeasMatrix
Definition: MeasurementDefs.h:55
Muon::MmRdoToPrepDataToolMT::setupMM_PrepDataContainer
Muon::MMPrepDataContainer * setupMM_PrepDataContainer(const EventContext &ctx) const
Definition: MmRdoToPrepDataToolMT.cxx:309
MmIdHelper::channelID
Identifier channelID(int stationName, int stationEta, int stationPhi, int multilayer, int gasGap, int channel) const
Definition: MmIdHelper.cxx:736
Muon::MmRdoToPrepDataToolMT::m_writeKey
SG::WriteHandleKey< Muon::MMPrepDataContainer > m_writeKey
MdtPrepRawData containers.
Definition: MmRdoToPrepDataToolMT.h:67
Trk::Surface::transform
const Amg::Transform3D & transform() const
Returns HepGeom::Transform3D by reference.
IdContext
This class saves the "context" of an expanded identifier (ExpandedIdentifier) for compact or hash ver...
Definition: IdContext.h:26
WriteBchToCool.update
update
Definition: WriteBchToCool.py:67
Muon::MmRdoToPrepDataToolMT::m_calibTool
ToolHandle< INSWCalibTool > m_calibTool
Definition: MmRdoToPrepDataToolMT.h:81
merge
Definition: merge.py:1
generate::Zero
void Zero(TH1D *hin)
Definition: generate.cxx:32
Muon::MmRdoToPrepDataToolMT::m_readKey
SG::ReadHandleKey< MM_RawDataContainer > m_readKey
Definition: MmRdoToPrepDataToolMT.h:69
Identifier
Definition: IdentifierFieldParser.cxx:14