Loading [MathJax]/jax/input/TeX/config.js
 |
ATLAS Offline Software
|
Go to the documentation of this file.
44 for (
int i = 0;
i < 3; ++
i) {
77 std::ifstream
file(cellMapPath.c_str());
84 int online_id, offline_id,
ch, con_num, fbr;
85 std::string feb, con_type;
88 std::getline(
file, feb);
93 file >> offline_id >> online_id >> feb >>
ch >> con_type >> con_num >> fbr;
95 if (
file.eof())
break;
98 caloCell.
id = offline_id;
101 caloCell.
fiber = fbr;
105 m_gepCellsBase.insert(std::pair<unsigned int, Gep::GepCaloCell>(caloCell.
id, caloCell));
111 ATH_MSG_ERROR(
"Could not open file containing the cell to FEB association");
112 return StatusCode::FAILURE;
115 ATH_MSG_DEBUG(
"Loaded FEB information for " << n_cells <<
" cells");
118 return StatusCode::SUCCESS;
136 CHECK(h_caloCells.isValid());
137 const auto &
cells = *h_caloCells;
142 if (!electronicNoiseHdl.isValid()) {
return StatusCode::FAILURE;}
143 const CaloNoise* electronicNoiseCDO = *electronicNoiseHdl;
146 if (!totalNoiseHdl.isValid()) {
return StatusCode::FAILURE;}
147 const CaloNoise* totalNoiseCDO = *totalNoiseHdl;
150 std::map<std::string,std::vector<Gep::GepCaloCell>> gepCellsPerFEB;
157 caloCell.
id = (
cell->ID().get_identifier32()).get_compact();
159 if (base_cell_itr !=
m_gepCellsBase.end()) caloCell = base_cell_itr->second;
163 caloCell.
FEB =
"Tile";
166 float electronicNoise = electronicNoiseCDO->
getNoise(
cell->ID(),
cell->gain());
170 if ((
cell->energy() / totalNoise) < 2.0)
continue;
175 caloCell.e = caloCell.et * TMath::CosH(
cell->eta());
178 caloCell.e =
cell->energy();
179 caloCell.et = caloCell.e / TMath::CosH(
cell->eta());
181 caloCell.time =
cell->time();
182 caloCell.quality =
cell->quality();
183 caloCell.provenance =
cell->provenance();
185 caloCell.totalNoise = totalNoise;
186 caloCell.electronicNoise = electronicNoise;
187 caloCell.sigma =
cell->energy() / totalNoise;
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();
204 bool IsEM_Barrel=
false;
205 bool IsEM_EndCap=
false;
206 bool IsEM_BarrelPos=
false;
207 bool IsEM_BarrelNeg=
false;
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;
225 caloCell.sampling = samplingEnum;
229 caloCell.id = (
cell->ID().get_identifier32()).get_compact();
232 caloCell.layer =
cell->caloDDE()->getLayer();
234 float deta = elt->
deta();
235 float dphi = elt->
dphi();
237 float etamin = caloCell.eta - (0.5*deta);
238 float etamax = caloCell.eta + (0.5*deta);
240 float phimin = caloCell.phi - (0.5*dphi);
241 float phimax = caloCell.phi + (0.5*dphi);
244 caloCell.etaMax = etamax;
245 caloCell.phiMin = phimin;
246 caloCell.phiMax = phimax;
247 caloCell.etaGranularity = deta;
248 caloCell.phiGranularity = dphi;
250 caloCell.index =
idx;
253 auto feb_itr = gepCellsPerFEB.find(caloCell.FEB);
254 if (feb_itr != gepCellsPerFEB.end()) feb_itr->second.push_back(caloCell);
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));
265 auto itr = gepCellsPerFEB.begin();
266 for ( ;itr != gepCellsPerFEB.end(); ++itr) {
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));
276 ATH_MSG_DEBUG(
"GEP is receiving a total of " << gepCellMap.
size() <<
" cells in this event");
279 ATH_CHECK( h_gepCellMap.
record( std::make_unique<Gep::GepCellMap>(gepCellMap) ) );
281 return StatusCode::SUCCESS;
291 int readoutRange = 0;
292 for (
int i = 1;
i <= 3; ++
i) {
311 const EventContext&)
const {
314 std::vector<IdentifierHash> cellNeighbours;
319 std::vector<unsigned int> neighbour_ids;
320 for (
unsigned int iNeighbour = 0;
321 iNeighbour < cellNeighbours.size();
333 return neighbour_ids;
340 std::map<int,Gep::GepCaloCell> orderedCells;
342 orderedCells.insert(std::pair<int,Gep::GepCaloCell>(
cell.channel,
cell));
347 for ( ;cell_itr != orderedCells.end(); ++cell_itr) {
348 cells.push_back(cell_itr->second);
352 return StatusCode::SUCCESS;
def retrieve(aClass, aKey=None)
JetConstituentVector::iterator iterator
virtual StatusCode initialize() override
@ IsEM
cut-based identification for egamma objects (cluster and track-based)
void insert(unsigned int id, const Gep::GepCaloCell &cell)
StatusCode setLeastSignificantBit(int value)
IdentifierHash calo_cell_hash(const Identifier cellId) const
create hash id from 'global' cell id
std::map< unsigned int, Gep::GepCaloCell > m_gepCellsBase
bool is_em_endcap(const Identifier id) const
test if the id belongs to the EM Endcap
int pos_neg(const Identifier id) const
LAr field values (NOT_VALID == invalid request)
SG::WriteHandleKey< Gep::GepCellMap > m_outputGepCellsKey
double dphi() const
delta phi
SG::ReadCondHandleKey< CaloNoise > m_electronicNoiseKey
Key of the CaloNoise Conditions data object.
SG::ReadHandleKey< CaloCellContainer > m_caloCellsKey
Identifier32 get_identifier32() const
Get the 32-bit version Identifier, will be invalid if >32 bits needed.
std::vector< unsigned int > getNeighbours(const CaloCellContainer &allcells, const CaloCell *acell, const EventContext &) const
int calo_sample(const Identifier id) const
returns an int taken from Sampling enum and describing the subCalo to which the Id belongs.
bool is_tile(const Identifier id) const
test if the id belongs to the Tiles
float getNoise(const IdentifierHash h, const int gain) const
Accessor by IdentifierHash and gain.
bool is_hec(const Identifier id) const
test if the id belongs to the HEC
const ServiceHandle< StoreGateSvc > & detStore() const
The standard StoreGateSvc/DetectorStore Returns (kind of) a pointer to the StoreGateSvc.
An algorithm that can be simultaneously executed in multiple threads.
SG::ReadCondHandle< T > makeHandle(const SG::ReadCondHandleKey< T > &key, const EventContext &ctx=Gaudi::Hive::currentContext())
Gaudi::Property< bool > m_doGepHardwareStyleEnergyEncoding
bool is_em(const Identifier id) const
test if the id belongs to LArEM
bool is_fcal(const Identifier id) const
test if the id belongs to the FCAL - true also for MiniFCAL
::StatusCode StatusCode
StatusCode definition for legacy code.
std::string connection_type
virtual StatusCode execute(const EventContext &) const override
Gaudi::Property< std::string > m_GepEnergyEncodingScheme
SG::ReadCondHandleKey< CaloNoise > m_totalNoiseKey
#define CHECK(...)
Evaluate an expression and check for errors.
unsigned m_maxCellsPerFEB
StatusCode initialize(bool used=true)
If this object is used as a property, then this should be called during the initialize phase.
double deta() const
delta eta
const CaloCell * findCell(const IdentifierHash theHash) const
fast find method given identifier hash.
Gaudi::Property< std::string > m_LArCellMap
bool is_em_barrel(const Identifier id) const
test if the id belongs to the EM barrel
StatusCode removeCellsFromOverloadedFEB(std::vector< Gep::GepCaloCell > &cells) const
GepCellsHandlerAlg(const std::string &name, ISvcLocator *pSvcLocator)
std::string to_string(const DetectorType &type)
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
StatusCode initialize(bool used=true)
Identifier ID() const
get ID (from cached data member) non-virtual and inline for fast access
Container class for CaloCell.
std::string PathResolverFindCalibFile(const std::string &logical_file_name)
StatusCode setNumberOfEnergyBits(int value)
StatusCode record(std::unique_ptr< T > data)
Record a const object to the store.
Data object for each calorimeter readout cell.
This is a base class for LAr and Tile Descriptors The primary goal is to speed up loops over all the ...
#define ATH_MSG_WARNING(x)
const CaloCell_ID * m_CaloCell_ID
int getGepEnergy(float offline_et) const
static std::string getSamplingName(CaloSample theSample)
Returns a string (name) for each CaloSampling.
StatusCode setG(int value)
This is a "hash" representation of an Identifier. This encodes a 32 bit index which can be used to lo...
Gaudi::Property< bool > m_doTruncationOfOverflowingFEBs
constexpr int pow(int base, int exp) noexcept