Loading [MathJax]/extensions/tex2jax.js
ATLAS Offline Software
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
GepCellsHandlerAlg.h
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2002-2025 CERN for the benefit of the ATLAS collaboration
3  */
4 
5 #ifndef TRIGGEPPERF_GepCellsHandlerALG_H
6 #define TRIGGEPPERF_GepCellsHandlerALG_H
7 
9 
11 #include "GaudiKernel/ToolHandle.h"
14 
15 #include "GepCellMap.h"
16 
17 #include <vector>
18 #include <map>
19 class CaloCell;
20 class CaloCell_ID;
21 
23 
24  public:
25 
26  GepCellsHandlerAlg( const std::string& name, ISvcLocator* pSvcLocator );
27 
28  virtual StatusCode initialize() override;
29  virtual StatusCode execute(const EventContext&) const override;
30 
31  private:
32 
34 
35  // At the moment only have a detailed scheme for 6-10 bit readouts, thus rejecting any other value
36  switch(value) {
37  case 6: m_maxCellsPerFEB = 53; break;
38  case 7: m_maxCellsPerFEB = 46; break;
39  case 8: m_maxCellsPerFEB = 41; break;
40  case 9: m_maxCellsPerFEB = 37; break;
41  case 10: m_maxCellsPerFEB = 34; break;
42  default: ATH_MSG_FATAL("A GEP energy encoding scheme with " << value << " energy bits is currently not defined");
43  return StatusCode::FAILURE;
44  }
45 
46  ATH_MSG_INFO("Setting GEP energy encoding to a " << value << "-bit scheme which allows for the sending of " << m_maxCellsPerFEB << " cells to GEP per FEB");
48 
49  return StatusCode::SUCCESS;
50  }
51 
53  if (value < 1) {
54  ATH_MSG_FATAL("The value of the least significant bit in the GEP energy encoding cannot be set to " << value);
55  return StatusCode::FAILURE;
56  }
57  ATH_MSG_INFO("Setting the value for the least significant bit in the GEP energy encoding to " << value << " MeV");
59 
60  return StatusCode::SUCCESS;
61  }
62 
64  if (value < 1) {
65  ATH_MSG_FATAL("The value of G in the GEP energy encoding cannot be set to " << value);
66  return StatusCode::FAILURE;
67  }
68  ATH_MSG_INFO("Setting the value for G in the GEP energy encoding to " << value);
69  m_valG = value;
70 
71  return StatusCode::SUCCESS;
72  }
73 
74  // Values are set in the initialize function
75  int m_nEnergyBits = -1;
76  int m_valLeastSigBit = -1;
77  int m_valG = -1;
78  int m_readoutRanges[5] = {-1,-1,-1,-1,-1};
79  int m_stepsPerRange = -1;
80  unsigned m_maxCellsPerFEB = -1;
81 
82  std::map<unsigned int,Gep::GepCaloCell> m_gepCellsBase = {};
83 
84  Gaudi::Property<std::string> m_GepEnergyEncodingScheme {this, "GEPEnergyEncodingScheme", "",
85  "String defining the GEP readout scheme according to number of readout bits + '-' + value of LSB in MeV + '-' + gain value"};
86 
87  Gaudi::Property<bool> m_doGepHardwareStyleEnergyEncoding {this, "HardwareStyleEnergyEncoding", false,
88  "Enabling or disabling the hardware-style energy encoding for the GEP"};
89 
90  Gaudi::Property<bool> m_doTruncationOfOverflowingFEBs {this, "TruncationOfOverflowingFEBs", false,
91  "Enabling or disabling the truncation of cells from FEBs with more than the maximum number of cells which can be send"};
92 
93  Gaudi::Property<std::string> m_LArCellMap {this, "LArCellMapFile", "UpgradePerformanceFunctions/LAr_Cell_Map_offlineID_0.csv",
94  "File associating LAr cells with readout FEBs and connection technology"};
95 
99  SG::ReadCondHandleKey<CaloNoise> m_electronicNoiseKey{this, "electronicNoiseKey", "totalNoise", "SG Key of CaloNoise data object"};
100 
101  SG::ReadCondHandleKey<CaloNoise> m_totalNoiseKey{this, "totalNoiseKey", "totalNoise", "SG Key of CaloNoise data object"};
102 
103  SG::WriteHandleKey<Gep::GepCellMap> m_outputGepCellsKey{this, "outputGepCellsKey", "", "Key for GepCell map"};
104 
105  SG::ReadHandleKey<CaloCellContainer> m_caloCellsKey {this, "caloCells", "AllCalo", "key to read in a CaloCell constainer"};
106 
107  const CaloCell_ID* m_CaloCell_ID{nullptr};
108  int getGepEnergy(float offline_et) const;
109  std::vector<unsigned int> getNeighbours(const CaloCellContainer& allcells,
110  const CaloCell* acell,
111  const EventContext&) const;
112  StatusCode removeCellsFromOverloadedFEB(std::vector<Gep::GepCaloCell> &cells) const;
113 
114 };
115 
116 #endif //> !TRIGGEPPERF_GEPCELLSHANDLERALG_H
RunTileCalibRec.cells
cells
Definition: RunTileCalibRec.py:271
GepCellsHandlerAlg::initialize
virtual StatusCode initialize() override
Definition: GepCellsHandlerAlg.cxx:19
ATH_MSG_FATAL
#define ATH_MSG_FATAL(x)
Definition: AthMsgStreamMacros.h:34
GepCellsHandlerAlg::setLeastSignificantBit
StatusCode setLeastSignificantBit(int value)
Definition: GepCellsHandlerAlg.h:52
GepCellsHandlerAlg::m_stepsPerRange
int m_stepsPerRange
Definition: GepCellsHandlerAlg.h:79
ATH_MSG_INFO
#define ATH_MSG_INFO(x)
Definition: AthMsgStreamMacros.h:31
GepCellsHandlerAlg::m_gepCellsBase
std::map< unsigned int, Gep::GepCaloCell > m_gepCellsBase
Definition: GepCellsHandlerAlg.h:82
GepCellsHandlerAlg::m_outputGepCellsKey
SG::WriteHandleKey< Gep::GepCellMap > m_outputGepCellsKey
Definition: GepCellsHandlerAlg.h:103
GepCellsHandlerAlg::m_electronicNoiseKey
SG::ReadCondHandleKey< CaloNoise > m_electronicNoiseKey
Key of the CaloNoise Conditions data object.
Definition: GepCellsHandlerAlg.h:99
GepCellsHandlerAlg::m_caloCellsKey
SG::ReadHandleKey< CaloCellContainer > m_caloCellsKey
Definition: GepCellsHandlerAlg.h:105
athena.value
value
Definition: athena.py:124
GepCellsHandlerAlg::getNeighbours
std::vector< unsigned int > getNeighbours(const CaloCellContainer &allcells, const CaloCell *acell, const EventContext &) const
Definition: GepCellsHandlerAlg.cxx:309
GepCellsHandlerAlg::m_nEnergyBits
int m_nEnergyBits
Definition: GepCellsHandlerAlg.h:75
SG::ReadHandleKey< CaloCellContainer >
CaloDetDescrManager.h
Definition of CaloDetDescrManager.
AthReentrantAlgorithm
An algorithm that can be simultaneously executed in multiple threads.
Definition: AthReentrantAlgorithm.h:74
GepCellMap.h
GepCellsHandlerAlg::m_doGepHardwareStyleEnergyEncoding
Gaudi::Property< bool > m_doGepHardwareStyleEnergyEncoding
Definition: GepCellsHandlerAlg.h:87
GepCellsHandlerAlg::m_readoutRanges
int m_readoutRanges[5]
Definition: GepCellsHandlerAlg.h:78
SG::WriteHandleKey< Gep::GepCellMap >
EL::StatusCode
::StatusCode StatusCode
StatusCode definition for legacy code.
Definition: PhysicsAnalysis/D3PDTools/EventLoop/EventLoop/StatusCode.h:22
GepCellsHandlerAlg::execute
virtual StatusCode execute(const EventContext &) const override
Definition: GepCellsHandlerAlg.cxx:122
GepCellsHandlerAlg::m_GepEnergyEncodingScheme
Gaudi::Property< std::string > m_GepEnergyEncodingScheme
Definition: GepCellsHandlerAlg.h:84
GepCellsHandlerAlg::m_totalNoiseKey
SG::ReadCondHandleKey< CaloNoise > m_totalNoiseKey
Definition: GepCellsHandlerAlg.h:101
GepCellsHandlerAlg::m_maxCellsPerFEB
unsigned m_maxCellsPerFEB
Definition: GepCellsHandlerAlg.h:80
CaloCell_ID
Helper class for offline cell identifiers.
Definition: CaloCell_ID.h:34
AthReentrantAlgorithm.h
GepCellsHandlerAlg::m_LArCellMap
Gaudi::Property< std::string > m_LArCellMap
Definition: GepCellsHandlerAlg.h:93
GepCellsHandlerAlg::removeCellsFromOverloadedFEB
StatusCode removeCellsFromOverloadedFEB(std::vector< Gep::GepCaloCell > &cells) const
Definition: GepCellsHandlerAlg.cxx:338
GepCellsHandlerAlg::GepCellsHandlerAlg
GepCellsHandlerAlg(const std::string &name, ISvcLocator *pSvcLocator)
Definition: GepCellsHandlerAlg.cxx:14
name
std::string name
Definition: Control/AthContainers/Root/debug.cxx:240
CaloNoise.h
CaloCellContainer.h
CaloCellContainer
Container class for CaloCell.
Definition: CaloCellContainer.h:55
SG::ReadCondHandleKey< CaloNoise >
GepCellsHandlerAlg::setNumberOfEnergyBits
StatusCode setNumberOfEnergyBits(int value)
Definition: GepCellsHandlerAlg.h:33
CaloCell
Data object for each calorimeter readout cell.
Definition: CaloCell.h:57
GepCellsHandlerAlg::m_valLeastSigBit
int m_valLeastSigBit
Definition: GepCellsHandlerAlg.h:76
GepCellsHandlerAlg::m_CaloCell_ID
const CaloCell_ID * m_CaloCell_ID
Definition: GepCellsHandlerAlg.h:107
GepCellsHandlerAlg::getGepEnergy
int getGepEnergy(float offline_et) const
Definition: GepCellsHandlerAlg.cxx:286
GepCellsHandlerAlg::setG
StatusCode setG(int value)
Definition: GepCellsHandlerAlg.h:63
GepCellsHandlerAlg::m_doTruncationOfOverflowingFEBs
Gaudi::Property< bool > m_doTruncationOfOverflowingFEBs
Definition: GepCellsHandlerAlg.h:90
GepCellsHandlerAlg
Definition: GepCellsHandlerAlg.h:22
GepCellsHandlerAlg::m_valG
int m_valG
Definition: GepCellsHandlerAlg.h:77