Loading [MathJax]/jax/input/TeX/config.js
ATLAS Offline Software
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
GepCellsHandlerAlg.cxx
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2002-2025 CERN for the benefit of the ATLAS collaboration
3  */
4 #include "./GepCellsHandlerAlg.h"
5 
6 #include "CaloEvent/CaloCell.h"
8 
9 #include "TMath.h"
11 #include <fstream>
12 #include <cmath> //std::pow
13 
14 GepCellsHandlerAlg::GepCellsHandlerAlg( const std::string& name, ISvcLocator* pSvcLocator ) :
15 AthReentrantAlgorithm( name, pSvcLocator ){
16  }
17 
18 
20  ATH_MSG_INFO ("Initializing " << name() << "...");
21  ATH_MSG_INFO ("Target GepCell container name " << m_outputGepCellsKey);
22 
23  // Retrieve AlgTools
26 
29 
30  // CaloIndentifier
31  CHECK( detStore()->retrieve (m_CaloCell_ID, "CaloCell_ID") );
32 
33  ATH_MSG_INFO("Hardware-style energy encoding for GEP cells has been set to " << m_doGepHardwareStyleEnergyEncoding.value());
34  if (!m_doGepHardwareStyleEnergyEncoding) ATH_MSG_WARNING("Hardware-style energy encoding for GEP cells has been disabled. Cell energies will have larger precision than realistically possible");
35 
36  ATH_MSG_INFO("Truncation of Gep cells from FEBs which are overflowing has been set to " << m_doTruncationOfOverflowingFEBs.value());
37  if (!m_doTruncationOfOverflowingFEBs) ATH_MSG_WARNING("Truncation of GEP cells from overflowing FEBs has been disabled. More GEP cells will be send to algorithms than realistically possible");
38 
39  // Setting up GEP energy encoding scheme
41 
42  // Read values of Gep readout scheme from argument
43  int GepScheme[3];
44  for (int i = 0; i < 3; ++i) {
45  GepScheme[i] = std::stoi(m_GepEnergyEncodingScheme.value().substr(0,m_GepEnergyEncodingScheme.value().find("-")));
46  m_GepEnergyEncodingScheme.value().erase(0, m_GepEnergyEncodingScheme.value().find("-")+1);
47  }
48 
49  CHECK(setNumberOfEnergyBits(GepScheme[0]));
50  CHECK(setLeastSignificantBit(GepScheme[1]));
51  CHECK(setG(GepScheme[2]));
52 
54 
55  m_readoutRanges[0] = 0;
60 
61  ATH_MSG_DEBUG("Readout scheme with " << m_nEnergyBits << "-bits provides the following four energy thresholds (with " << m_stepsPerRange << " discrete steps on each threshold)");
62  ATH_MSG_DEBUG("GEP cell energy range 0: min = " << m_readoutRanges[0] << " MeV -> max = " << m_readoutRanges[1] << " MeV");
63  ATH_MSG_DEBUG("GEP cell energy range 1: min = " << m_readoutRanges[1] + m_valLeastSigBit << " MeV -> max = " << m_readoutRanges[2] << " MeV");
64  ATH_MSG_DEBUG("GEP cell energy range 2: min = " << m_readoutRanges[2]+(m_valG*m_valLeastSigBit) << " MeV -> max = " << m_readoutRanges[3] << " MeV");
65  ATH_MSG_DEBUG("GEP cell energy range 3: min = " << m_readoutRanges[3]+(m_valG*m_valG*m_valLeastSigBit) << " MeV -> max = " << m_readoutRanges[4] << " MeV");
66  }
67 
69  // Loading the invariant cell data and storing in m_gepCellsBase for later use on event-by-event basis
70  m_gepCellsBase.clear();
71 
72  ATH_MSG_DEBUG("Loading cell map associating cells to FEBs");
73 
74  std::string cellMapPath = PathResolverFindCalibFile(m_LArCellMap);
75  if(cellMapPath.empty()) ATH_MSG_ERROR("Could not find file with cell map data: " << m_LArCellMap.value());
76 
77  std::ifstream file(cellMapPath.c_str());
78 
79  unsigned n_cells = 0;
80 
81  // Read input file
82  if (file.is_open()) {
83 
84  int online_id, offline_id, ch, con_num, fbr;
85  std::string feb, con_type;
86 
87  // Skipping header of file
88  std::getline(file, feb);
89 
90  // start reading data
91  while (true) {
92 
93  file >> offline_id >> online_id >> feb >> ch >> con_type >> con_num >> fbr;
94 
95  if (file.eof()) break;
96 
97  Gep::GepCaloCell caloCell;
98  caloCell.id = offline_id;
99  caloCell.FEB = feb;
100  caloCell.channel = ch;
101  caloCell.fiber = fbr;
102  caloCell.connection_type = con_type;
103  caloCell.connection_number = con_num;
104 
105  m_gepCellsBase.insert(std::pair<unsigned int, Gep::GepCaloCell>(caloCell.id, caloCell));
106 
107  ++n_cells;
108  }
109  }
110  else {
111  ATH_MSG_ERROR("Could not open file containing the cell to FEB association");
112  return StatusCode::FAILURE;
113  }
114 
115  ATH_MSG_DEBUG("Loaded FEB information for " << n_cells << " cells");
116  }
117 
118  return StatusCode::SUCCESS;
119 }
120 
121 
122 StatusCode GepCellsHandlerAlg::execute(const EventContext& ctx) const {
123 
124  // PS this function creates and stores a map which has Gep::GepCaloCells as its values
125  // The cells are made up of data which is invariant for all events, and dynamic
126  // data which varies with event.
127  // The invariant data should be setup in initialize(), and the dynamic
128  // data should be updated here in a way which is compatible with the const-ness of this
129  // function.
130  // This will be attended to in the future.
131 
132  ATH_MSG_DEBUG ("Executing " << name() << "...");
133 
134  // Read in a container containing (all) CaloCells
135  auto h_caloCells = SG::makeHandle(m_caloCellsKey, ctx);
136  CHECK(h_caloCells.isValid());
137  const auto & cells = *h_caloCells;
138 
139  ATH_MSG_DEBUG("Read in " + std::to_string(h_caloCells->size()) + " cells");
140 
141  SG::ReadCondHandle<CaloNoise> electronicNoiseHdl{m_electronicNoiseKey, ctx};
142  if (!electronicNoiseHdl.isValid()) {return StatusCode::FAILURE;}
143  const CaloNoise* electronicNoiseCDO = *electronicNoiseHdl;
144 
146  if (!totalNoiseHdl.isValid()) {return StatusCode::FAILURE;}
147  const CaloNoise* totalNoiseCDO = *totalNoiseHdl;
148 
149  int idx = -1;
150  std::map<std::string,std::vector<Gep::GepCaloCell>> gepCellsPerFEB;
151 
152  for(const auto *cell: cells){
153 
154  Gep::GepCaloCell caloCell;
155  ++idx;
156 
157  caloCell.id = (cell->ID().get_identifier32()).get_compact();
158  auto base_cell_itr = m_gepCellsBase.find(caloCell.id);
159  if (base_cell_itr != m_gepCellsBase.end()) caloCell = base_cell_itr->second;
160  else {
161  // Tile cells are not included in the cell base map
162  // In the future this might change, for now just setting FEB value to a dummy
163  caloCell.FEB = "Tile";
164  }
165 
166  float electronicNoise = electronicNoiseCDO->getNoise(cell->ID(), cell->gain());
167  float totalNoise = totalNoiseCDO->getNoise(cell->ID(), cell->gain());
168 
169  // Only send positive-energy 2sigma cells to the GEP
170  if ((cell->energy() / totalNoise) < 2.0) continue;
171 
172  // GEP will only have ET available for LAr cells, so convert to energy from ET
174  caloCell.et = getGepEnergy(cell->energy() / TMath::CosH(cell->eta()));
175  caloCell.e = caloCell.et * TMath::CosH(cell->eta());
176  }
177  else {
178  caloCell.e = cell->energy();
179  caloCell.et = caloCell.e / TMath::CosH(cell->eta());
180  }
181  caloCell.time = cell->time();
182  caloCell.quality = cell->quality();
183  caloCell.provenance = cell->provenance();
184 
185  caloCell.totalNoise = totalNoise;
186  caloCell.electronicNoise = electronicNoise;
187  caloCell.sigma = cell->energy() / totalNoise;
188 
189  caloCell.isBad = cell->badcell();
190  caloCell.eta = cell->eta();
191  caloCell.phi = cell->phi();
192  caloCell.sinTh = cell->sinTh();
193  caloCell.cosTh = cell->cosTh();
194  caloCell.sinPhi = cell->sinPhi();
195  caloCell.cosPhi = cell->cosPhi();
196  caloCell.cotTh = cell->cotTh();
197  caloCell.x = cell->x();
198  caloCell.y = cell->y();
199  caloCell.z = cell->z();
200 
201  unsigned int samplingEnum = m_CaloCell_ID->calo_sample(cell->ID());
202 
203  bool IsEM = m_CaloCell_ID->is_em(cell->ID());
204  bool IsEM_Barrel=false;
205  bool IsEM_EndCap=false;
206  bool IsEM_BarrelPos=false;
207  bool IsEM_BarrelNeg=false;
208  if(IsEM){
209  IsEM_Barrel=m_CaloCell_ID->is_em_barrel(cell->ID());
210  if(IsEM_Barrel){
211  if(m_CaloCell_ID->pos_neg(cell->ID())>0) IsEM_BarrelPos=true;
212  }
213  IsEM_EndCap=m_CaloCell_ID->is_em_endcap(cell->ID());
214  }
215 
216  caloCell.isEM = IsEM;
217  caloCell.isEM_barrel = IsEM_Barrel;
218  caloCell.isEM_endCap = IsEM_EndCap;
219  caloCell.isEM_barrelPos = IsEM_BarrelPos;
220  caloCell.isEM_barrelNeg = IsEM_BarrelNeg; //always false?
221  caloCell.isFCAL = m_CaloCell_ID->is_fcal(cell->ID());
222  caloCell.isHEC = m_CaloCell_ID->is_hec(cell->ID());
223  caloCell.isTile = m_CaloCell_ID->is_tile(cell->ID());
224 
225  caloCell.sampling = samplingEnum;
226  caloCell.detName = CaloSampling::getSamplingName(samplingEnum);
227 
228  caloCell.neighbours = getNeighbours(cells, cell, ctx);
229  caloCell.id = (cell->ID().get_identifier32()).get_compact();
230 
231  const CaloDetDescriptor *elt = cell->caloDDE()->descriptor();
232  caloCell.layer = cell->caloDDE()->getLayer();
233 
234  float deta = elt->deta();
235  float dphi = elt->dphi();
236 
237  float etamin = caloCell.eta - (0.5*deta);
238  float etamax = caloCell.eta + (0.5*deta);
239 
240  float phimin = caloCell.phi - (0.5*dphi);
241  float phimax = caloCell.phi + (0.5*dphi);
242 
243  caloCell.etaMin = etamin;
244  caloCell.etaMax = etamax;
245  caloCell.phiMin = phimin;
246  caloCell.phiMax = phimax;
247  caloCell.etaGranularity = deta;
248  caloCell.phiGranularity = dphi;
249 
250  caloCell.index = idx;
251 
252  // Fill cells into map according to FEB
253  auto feb_itr = gepCellsPerFEB.find(caloCell.FEB);
254  if (feb_itr != gepCellsPerFEB.end()) feb_itr->second.push_back(caloCell);
255  else {
256  std::vector<Gep::GepCaloCell> cellsThisFEB;
257  cellsThisFEB.push_back(caloCell);
258  gepCellsPerFEB.insert(std::pair<std::string,std::vector<Gep::GepCaloCell>>(caloCell.FEB,cellsThisFEB));
259  }
260  }
261 
262  Gep::GepCellMap gepCellMap;
263 
264  // do truncation
265  auto itr = gepCellsPerFEB.begin();
266  for ( ;itr != gepCellsPerFEB.end(); ++itr) {
267 
268  // LAr FEBs might overflow, so they will get truncated
269  if (m_doTruncationOfOverflowingFEBs && itr->second.size() > m_maxCellsPerFEB && itr->first != "Tile") {
270  ATH_MSG_DEBUG("FEB " << itr->first << " is sending " << itr->second.size() << " cells, which is more cells than GEP can receive. Removing all but the possible " << m_maxCellsPerFEB << " cells.");
271  CHECK(removeCellsFromOverloadedFEB(itr->second));
272  }
273  for (const Gep::GepCaloCell& cell : itr->second)
274  gepCellMap.insert(cell.id, cell);
275  }
276  ATH_MSG_DEBUG("GEP is receiving a total of " << gepCellMap.size() << " cells in this event");
277 
278  SG::WriteHandle<Gep::GepCellMap> h_gepCellMap = SG::makeHandle(m_outputGepCellsKey, ctx);
279  ATH_CHECK( h_gepCellMap.record( std::make_unique<Gep::GepCellMap>(gepCellMap) ) );
280 
281  return StatusCode::SUCCESS;
282 }
283 
284 
285 
286 int GepCellsHandlerAlg::getGepEnergy(float offline_et) const {
287 
288  // If cell saturates readout range, largest possible value is send
289  if (offline_et > m_readoutRanges[4]) return m_readoutRanges[4];
290 
291  int readoutRange = 0;
292  for (int i = 1; i <= 3; ++i) {
293  if (offline_et > m_readoutRanges[i]) readoutRange = i;
294  }
295 
296  float step = ((float) m_readoutRanges[readoutRange+1] - (float) m_readoutRanges[readoutRange]) / (m_stepsPerRange-1);
297  int gep_energy = -1;
298  for (int i = 0; i < m_stepsPerRange; ++i) {
299  if (offline_et < (m_readoutRanges[readoutRange]+(step*i))) break;
300  gep_energy = m_readoutRanges[readoutRange]+(step*i);
301  }
302 
303  return gep_energy;
304 }
305 
306 
307 
308 // Get neighbours of a given calo cell
309 std::vector<unsigned int> GepCellsHandlerAlg::getNeighbours(const CaloCellContainer& allcells,
310  const CaloCell* acell,
311  const EventContext&) const {
312 
313  // get all neighboring cells
314  std::vector<IdentifierHash> cellNeighbours;
315 
316  IdentifierHash cellHashID = m_CaloCell_ID->calo_cell_hash(acell->ID());
317  m_CaloCell_ID->get_neighbours(cellHashID,LArNeighbours::super3D,cellNeighbours);
318 
319  std::vector<unsigned int> neighbour_ids;
320  for (unsigned int iNeighbour = 0;
321  iNeighbour < cellNeighbours.size();
322  ++iNeighbour) {
323 
324  const CaloCell* neighbour = allcells.findCell(cellNeighbours[iNeighbour]);
325  if (neighbour) {
326  neighbour_ids.push_back((neighbour->ID().get_identifier32()).get_compact());
327  } else {
328  ATH_MSG_ERROR("Couldn't access neighbour #" << iNeighbour
329  << " for cell ID "
330  << (acell->ID().get_identifier32()).get_compact());
331  }
332  }
333  return neighbour_ids;
334 }
335 
336 
337 
339 
340  std::map<int,Gep::GepCaloCell> orderedCells;
341  for (const Gep::GepCaloCell& cell : cells)
342  orderedCells.insert(std::pair<int,Gep::GepCaloCell>(cell.channel,cell));
343 
344  cells.clear();
345 
346  std::map<int,Gep::GepCaloCell>::iterator cell_itr = orderedCells.begin();
347  for ( ;cell_itr != orderedCells.end(); ++cell_itr) {
348  cells.push_back(cell_itr->second);
349  if (cells.size() == m_maxCellsPerFEB) break;
350  }
351 
352  return StatusCode::SUCCESS;
353 }
354 
355 
356 
357 
python.PyKernel.retrieve
def retrieve(aClass, aKey=None)
Definition: PyKernel.py:110
xAOD::iterator
JetConstituentVector::iterator iterator
Definition: JetConstituentVector.cxx:68
RunTileCalibRec.cells
cells
Definition: RunTileCalibRec.py:271
GepCellsHandlerAlg::initialize
virtual StatusCode initialize() override
Definition: GepCellsHandlerAlg.cxx:19
Gep::GepCaloCell::fiber
int fiber
Definition: GepCaloCell.h:56
egammaPIDObs::IsEM
@ IsEM
cut-based identification for egamma objects (cluster and track-based)
Definition: egammaPIDdefsObs.h:55
Gep::GepCellMap
Definition: GepCellMap.h:17
Gep::GepCellMap::insert
void insert(unsigned int id, const Gep::GepCaloCell &cell)
Definition: GepCellMap.h:23
sendEI_SPB.ch
ch
Definition: sendEI_SPB.py:35
Gep::GepCellMap::size
unsigned int size()
Definition: GepCellMap.h:27
GepCellsHandlerAlg::setLeastSignificantBit
StatusCode setLeastSignificantBit(int value)
Definition: GepCellsHandlerAlg.h:52
CaloCell_Base_ID::calo_cell_hash
IdentifierHash calo_cell_hash(const Identifier cellId) const
create hash id from 'global' cell id
ReadCellNoiseFromCool.cell
cell
Definition: ReadCellNoiseFromCool.py:53
GepCellsHandlerAlg::m_stepsPerRange
int m_stepsPerRange
Definition: GepCellsHandlerAlg.h:79
SG::ReadCondHandle
Definition: ReadCondHandle.h:44
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
CaloCell_Base_ID::is_em_endcap
bool is_em_endcap(const Identifier id) const
test if the id belongs to the EM Endcap
CaloCell_Base_ID::pos_neg
int pos_neg(const Identifier id) const
LAr field values (NOT_VALID == invalid request)
GepCellsHandlerAlg::m_outputGepCellsKey
SG::WriteHandleKey< Gep::GepCellMap > m_outputGepCellsKey
Definition: GepCellsHandlerAlg.h:103
CaloDetDescriptor::dphi
double dphi() const
delta phi
Definition: CaloDetDescriptor.h:593
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
Identifier::get_identifier32
Identifier32 get_identifier32() const
Get the 32-bit version Identifier, will be invalid if >32 bits needed.
CaloCell.h
GepCellsHandlerAlg::getNeighbours
std::vector< unsigned int > getNeighbours(const CaloCellContainer &allcells, const CaloCell *acell, const EventContext &) const
Definition: GepCellsHandlerAlg.cxx:309
CaloCell_Base_ID::calo_sample
int calo_sample(const Identifier id) const
returns an int taken from Sampling enum and describing the subCalo to which the Id belongs.
Definition: CaloCell_Base_ID.cxx:141
GepCellsHandlerAlg::m_nEnergyBits
int m_nEnergyBits
Definition: GepCellsHandlerAlg.h:75
CaloCell_Base_ID::is_tile
bool is_tile(const Identifier id) const
test if the id belongs to the Tiles
CaloNoise::getNoise
float getNoise(const IdentifierHash h, const int gain) const
Accessor by IdentifierHash and gain.
Definition: CaloNoise.h:34
CaloCell_Base_ID::is_hec
bool is_hec(const Identifier id) const
test if the id belongs to the HEC
CaloCell_ID.h
AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::detStore
const ServiceHandle< StoreGateSvc > & detStore() const
The standard StoreGateSvc/DetectorStore Returns (kind of) a pointer to the StoreGateSvc.
Definition: AthCommonDataStore.h:95
Gep::GepCaloCell::channel
int channel
Definition: GepCaloCell.h:55
AthReentrantAlgorithm
An algorithm that can be simultaneously executed in multiple threads.
Definition: AthReentrantAlgorithm.h:74
SG::makeHandle
SG::ReadCondHandle< T > makeHandle(const SG::ReadCondHandleKey< T > &key, const EventContext &ctx=Gaudi::Hive::currentContext())
Definition: ReadCondHandle.h:274
GepCellsHandlerAlg::m_doGepHardwareStyleEnergyEncoding
Gaudi::Property< bool > m_doGepHardwareStyleEnergyEncoding
Definition: GepCellsHandlerAlg.h:87
GepCellsHandlerAlg::m_readoutRanges
int m_readoutRanges[5]
Definition: GepCellsHandlerAlg.h:78
CaloCell_Base_ID::is_em
bool is_em(const Identifier id) const
test if the id belongs to LArEM
ATH_MSG_ERROR
#define ATH_MSG_ERROR(x)
Definition: AthMsgStreamMacros.h:33
lumiFormat.i
int i
Definition: lumiFormat.py:85
CaloCell_Base_ID::is_fcal
bool is_fcal(const Identifier id) const
test if the id belongs to the FCAL - true also for MiniFCAL
Gep::GepCaloCell::id
unsigned int id
Definition: GepCaloCell.h:52
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
Gep::GepCaloCell::connection_type
std::string connection_type
Definition: GepCaloCell.h:57
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
file
TFile * file
Definition: tile_monitor.h:29
GepCellsHandlerAlg::m_totalNoiseKey
SG::ReadCondHandleKey< CaloNoise > m_totalNoiseKey
Definition: GepCellsHandlerAlg.h:101
ATH_CHECK
#define ATH_CHECK
Definition: AthCheckMacros.h:40
CHECK
#define CHECK(...)
Evaluate an expression and check for errors.
Definition: Control/AthenaKernel/AthenaKernel/errorcheck.h:422
GepCellsHandlerAlg::m_maxCellsPerFEB
unsigned m_maxCellsPerFEB
Definition: GepCellsHandlerAlg.h:80
Gep::GepCaloCell
Definition: GepCaloCell.h:13
SG::VarHandleKey::initialize
StatusCode initialize(bool used=true)
If this object is used as a property, then this should be called during the initialize phase.
Definition: AthToolSupport/AsgDataHandles/Root/VarHandleKey.cxx:103
CaloDetDescriptor::deta
double deta() const
delta eta
Definition: CaloDetDescriptor.h:588
LArNeighbours::super3D
@ super3D
Definition: LArNeighbours.h:29
CaloCellContainer::findCell
const CaloCell * findCell(const IdentifierHash theHash) const
fast find method given identifier hash.
Definition: CaloCellContainer.cxx:345
CaloNoise
Definition: CaloNoise.h:16
GepCellsHandlerAlg::m_LArCellMap
Gaudi::Property< std::string > m_LArCellMap
Definition: GepCellsHandlerAlg.h:93
CaloCell_Base_ID::is_em_barrel
bool is_em_barrel(const Identifier id) const
test if the id belongs to the EM barrel
Gep::GepCaloCell::FEB
std::string FEB
Definition: GepCaloCell.h:54
PathResolver.h
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
ActsTrk::to_string
std::string to_string(const DetectorType &type)
Definition: GeometryDefs.h:34
CaloCell_Base_ID::get_neighbours
int get_neighbours(const IdentifierHash caloHash, const LArNeighbours::neighbourOption &option, std::vector< IdentifierHash > &neighbourList) const
access to hashes for neighbours return == 0 for neighbours found
Definition: CaloCell_Base_ID.cxx:190
SG::CondHandleKey::initialize
StatusCode initialize(bool used=true)
CaloCell::ID
Identifier ID() const
get ID (from cached data member) non-virtual and inline for fast access
Definition: CaloCell.h:279
CaloCellContainer
Container class for CaloCell.
Definition: CaloCellContainer.h:55
PathResolverFindCalibFile
std::string PathResolverFindCalibFile(const std::string &logical_file_name)
Definition: PathResolver.cxx:431
SG::WriteHandle
Definition: StoreGate/StoreGate/WriteHandle.h:73
GepCellsHandlerAlg::setNumberOfEnergyBits
StatusCode setNumberOfEnergyBits(int value)
Definition: GepCellsHandlerAlg.h:33
SG::WriteHandle::record
StatusCode record(std::unique_ptr< T > data)
Record a const object to the store.
CaloCell
Data object for each calorimeter readout cell.
Definition: CaloCell.h:57
CaloDetDescriptor
This is a base class for LAr and Tile Descriptors The primary goal is to speed up loops over all the ...
Definition: CaloDetDescriptor.h:58
GepCellsHandlerAlg::m_valLeastSigBit
int m_valLeastSigBit
Definition: GepCellsHandlerAlg.h:76
ATH_MSG_WARNING
#define ATH_MSG_WARNING(x)
Definition: AthMsgStreamMacros.h:32
GepCellsHandlerAlg::m_CaloCell_ID
const CaloCell_ID * m_CaloCell_ID
Definition: GepCellsHandlerAlg.h:107
LArNewCalib_DelayDump_OFC_Cali.idx
idx
Definition: LArNewCalib_DelayDump_OFC_Cali.py:69
Gep::GepCaloCell::connection_number
int connection_number
Definition: GepCaloCell.h:58
GepCellsHandlerAlg::getGepEnergy
int getGepEnergy(float offline_et) const
Definition: GepCellsHandlerAlg.cxx:286
LArCellBinning.step
step
Definition: LArCellBinning.py:158
GepCellsHandlerAlg.h
CaloSampling::getSamplingName
static std::string getSamplingName(CaloSample theSample)
Returns a string (name) for each CaloSampling.
Definition: Calorimeter/CaloGeoHelpers/Root/CaloSampling.cxx:18
GepCellsHandlerAlg::setG
StatusCode setG(int value)
Definition: GepCellsHandlerAlg.h:63
IdentifierHash
This is a "hash" representation of an Identifier. This encodes a 32 bit index which can be used to lo...
Definition: IdentifierHash.h:25
GepCellsHandlerAlg::m_doTruncationOfOverflowingFEBs
Gaudi::Property< bool > m_doTruncationOfOverflowingFEBs
Definition: GepCellsHandlerAlg.h:90
LArCellBinning.etamin
etamin
Definition: LArCellBinning.py:137
pow
constexpr int pow(int base, int exp) noexcept
Definition: ap_fixedTest.cxx:15
python.LArMinBiasAlgConfig.float
float
Definition: LArMinBiasAlgConfig.py:65
GepCellsHandlerAlg::m_valG
int m_valG
Definition: GepCellsHandlerAlg.h:77