Loading [MathJax]/jax/input/TeX/config.js
 |
ATLAS Offline Software
|
Go to the documentation of this file.
8 #include "GaudiKernel/INTupleSvc.h"
18 #include "CaloDetDescr/CaloDetDescrElement.h"
45 m_nWrongBunchGroup(0),
50 m_onlineHelper(nullptr),
51 m_onlineHelperSC(nullptr),
140 return StatusCode::SUCCESS;
146 m_runData = std::make_unique<RunData>(0);
149 std::vector<std::regex> regexs;
156 std::vector<std::string> myChains;
168 if (calibStreamGroup) {
175 unsigned int idx = 0;
179 for (
const std::string& l1Item :
group->getListOfTriggers()) {
182 ATH_MSG_WARNING (
"LVL1 item " << l1Item <<
", obtained from TrigConfig, cannot be retrieved!" );
186 if (pos < 0 || pos >= 256) {
191 ATH_MSG_INFO (
"Adding LVL1 trigger bit for " << l1Item <<
" at position " <<
pos );
196 for (
const std::string&
name : myChains) {
211 return StatusCode::SUCCESS;
218 const EventContext& ctx = Gaudi::Hive::currentContext();
222 return StatusCode::SUCCESS;
230 int event = eventInfo->eventNumber();
231 int run = eventInfo->runNumber();
233 int bunchId = eventInfo->bcid();
239 return StatusCode::SUCCESS;
245 if (!bunchCrossing) {
247 return StatusCode::FAILURE;
258 return StatusCode::SUCCESS;
267 if (
eventIndex < 0)
return StatusCode::FAILURE;
273 return StatusCode::SUCCESS;
278 if (larDigitContainer->
empty()) {
281 return StatusCode::SUCCESS;
287 return StatusCode::SUCCESS;
295 return StatusCode::SUCCESS;
301 const LArOnOffIdMapping*
cabling=*cablingHdl;
303 ATH_MSG_ERROR(
"Do not have cabling object LArOnOffIdMapping" );
304 return StatusCode::FAILURE;
311 return StatusCode::FAILURE;
318 return StatusCode::FAILURE;
327 return StatusCode::FAILURE;
335 return StatusCode::FAILURE;
340 if (
evtStore()->contains<LArOFIterResultsContainer> (
"LArOFIterResult")) {
349 const std::map<unsigned int,uint16_t>& febErrorMap = larFebErrorSummary->
get_all_febs();
350 std::map<unsigned int, const LArRawChannel*> channelsToKeep;
360 if (!
hash.is_valid()) {
362 <<
") does not correspond to a valid hash -- returning StatusCode::FAILURE." );
363 return StatusCode::FAILURE;
370 HWIdentifier channelID =
channel->hardwareID();
380 std::map<HWIdentifier, LArOFIterResultsContainer::const_iterator> ofcResultPosition;
382 for (LArOFIterResultsContainer::const_iterator ofResult = ofIterResult->begin();
383 ofResult != ofIterResult->end(); ++ofResult)
384 ofcResultPosition[ofResult->getChannelID()] = ofResult;
387 <<
" " << (ofIterResult ? ofIterResult->size() : 0) <<
" "
399 std::map<unsigned int, const LArRawChannel*>::const_iterator findChannel = channelsToKeep.find(
hash);
400 if (findChannel == channelsToKeep.end())
continue;
404 HWIdentifier channelID = (*digit)->hardwareID();
414 const bool connected =
cabling->isOnlineConnected(channelID);
421 const std::vector<short>& samples = (*digit)->samples();
423 for (
short sample : samples)
435 if (!caloDetElement) caloDetElement = caloMgr->
get_element(
id);
444 unsigned int status = 0xFFFFFFFF;
446 if (!caloDetElement) caloDetElement = caloMgr->
get_element(
id);
448 status = bcCont->status(channelID).packedData();
450 std::map<unsigned int,uint16_t>::const_iterator findError = febErrorMap.find(febId.get_identifier32().get_compact());
451 if (findError != febErrorMap.end()) {
452 unsigned int febErrWord = findError->second;
462 ATH_MSG_WARNING (
"AutoCorr object is not of type LArAutoCorrComplete!" );
467 if (!
info->shape((*digit)->gain()))
472 if (
eventIndex < 0)
return StatusCode::FAILURE;
478 rawChannel->
time()/
double(1000),
496 data->setADCMax(rawChannel->
energy()/ramp[1]);
503 std::map<unsigned int, const LArRawSC*> scToKeep;
508 return StatusCode::SUCCESS;
513 if (etcontainer->
empty()) {
515 return StatusCode::SUCCESS;
519 const LArOnOffIdMapping* cablingSC=*cablingHdl;
521 ATH_MSG_ERROR(
"Do not have cabling object LArOnOffIdMapping" );
522 return StatusCode::FAILURE;
532 ATH_MSG_ERROR(
"Failed to retrieve pedestal cond obj for SC");
533 return StatusCode::FAILURE;
536 std::map<unsigned int, std::pair<float,float> > channelsToKeepSC;
538 for (
const LArRawSC* rawSC : *hdlSC) {
540 const std::vector<unsigned short>& bcids = rawSC->bcids();
541 const std::vector<int>& energies = rawSC->energies();
542 const std::vector<int>& tauenergies = rawSC->tauEnergies();
543 const std::vector<bool>& satur = rawSC->satur();
547 float scTim = -99999999.;
549 const size_t nBCIDs = bcids.size();
551 for (
i = 0;
i < nBCIDs && bcids[
i] != bunchId;
i++)
553 if(
i==nBCIDs)
continue;
554 if (satur[
i])
continue;
562 if (!
hash.is_valid()) {
563 ATH_MSG_FATAL (
"Found a LArRawSC whose HWIdentifier (" << rawSC->hardwareID()
564 <<
") does not correspond to a valid hash -- returning StatusCode::FAILURE." );
565 return StatusCode::FAILURE;
568 if(tauenergies.size() && scEne != 0) scTim = tauenergies[
i] / scEne;
569 channelsToKeepSC[
hash] = std::make_pair(scEne, scTim);
575 HWIdentifier channelID = rawSC->hardwareID();
576 const Identifier id = cablingSC->cnvToIdentifier(channelID);
589 return StatusCode::SUCCESS;
594 if (larSCDigitContainer->
empty()) {
597 return StatusCode::SUCCESS;
606 std::map<unsigned int, std::pair<float,float> >::const_iterator findChannel = channelsToKeepSC.find(
hash);
607 if (findChannel == channelsToKeepSC.end())
continue;
610 float pedestal = pedestalsSC->
pedestal((*digit)->channelID(), 0);
612 const std::vector<short>& samples = (*digit)->samples();
614 for (
short sample : samples)
619 const Identifier id = cablingSC->cnvToIdentifier((*digit)->channelID());
625 if (!caloDetElement) caloDetElement = caloMgrSC->
get_element(
id);
635 if (
eventIndex < 0)
return StatusCode::FAILURE;
640 findChannel->second.first,
641 findChannel->second.second/
double(1000),
653 return StatusCode::SUCCESS;
660 return StatusCode::SUCCESS;
677 ATH_MSG_INFO (
"Cell with no cellInfo at index " <<
i <<
" !!" );
704 return StatusCode::SUCCESS;
712 std::vector<unsigned int> triggerWords;
719 const std::vector<ROIB::CTPRoI> tav = l1Result->
cTPResult().
TAV();
721 triggerWords.push_back(word.roIWord());
723 for (
const std::pair<const TString, unsigned int>&
p :
m_runData->triggerConfig()) {
724 while (triggerWords.size() <=
p.second/32) triggerWords.push_back(0);
726 triggerWords[
p.second/32] |= (0x1 << (
p.second % 32));
748 eventData->
addRoI(roI.cptr()->eta(), roI.cptr()->phi(),
group->getListOfTriggers()[0].c_str(), roI.label().c_str());
def retrieve(aClass, aKey=None)
ToolHandle< ILArShapeDumperTool > m_dumperTool
ROIB::CTPRoI contains a RoI delivered by the CTP.
Liquid Argon SuperCell raw data.
virtual float pedestal(const HWIdentifier &id, int gain) const =0
bool m_gains[CaloGain::LARNGAIN]
SG::ReadCondHandleKey< CaloNoise > m_noiseCDOKey
char data[hepevt_bytes_allocation_ATLAS]
const LArVectorProxy ADC2MEV(const HWIdentifier &id, int gain) const
Const iterator class for DataVector/DataList.
IdentifierHash channel_Hash(HWIdentifier channelId) const
Create channel_hash from channel_Id.
const std::map< unsigned int, uint16_t > & get_all_febs() const
get all febs with error
#define maxValue(current, test)
void setRunData(const RunData *runData)
Class holding the LVL1 RoIB result build by the RoIBuilder.
LArBadChannelMask m_bcMaskSC
const HistoryContainer * historyContainer(unsigned int i) const
Gaudi::Details::PropertyBase & declareProperty(Gaudi::Property< T > &t)
virtual StatusCode execute() override
Container class for LArRawSC.
Conditions-Data class holding LAr Bad Channel or Bad Feb information.
LArBadChannelMask m_bcMask
LArShapeDumper(const std::string &name, ISvcLocator *pSvcLocator)
std::uint64_t m_count
the number of times the timer has been started
This class groups all DetDescr information related to a CaloCell. Provides a generic interface for al...
const CaloDetDescrElement * get_element(const Identifier &cellId) const
get element by its identifier
unsigned int addEvent(EventData *eventData)
int slot(const HWIdentifier id) const
Return the slot number of a hardware cell identifier: slot = [1,15] Slot-ID in top part of the crat...
StatusCode buildBitMask(const std::vector< std::string > &problemsToMask, MsgStream &msg)
nope - should be used for standalone also, perhaps need to protect the class def bits #ifndef XAOD_AN...
virtual StatusCode initialize() override
void addRoI(float eta, float phi, const char *name="", const char *label="")
#define ATH_MSG_VERBOSE(x)
const std::string & key() const
Return the StoreGate ID for the referenced object.
SG::ReadCondHandleKey< LArBadChannelCont > m_BCKeySC
std::vector< std::string > m_triggerNames
float getNoise(const IdentifierHash h, const int gain) const
Accessor by IdentifierHash and gain.
bool cellShouldBeMasked(const LArBadChannelCont *bcCont, const HWIdentifier &hardwareId) const
unsigned m_nPrescaledAway
@ LAr
The LAr calorimeter.
SG::ReadHandleKey< LArRawChannelContainer > m_channelsKey
const ServiceHandle< StoreGateSvc > & detStore() const
The standard StoreGateSvc/DetectorStore Returns (kind of) a pointer to the StoreGateSvc.
@ Error
The sub-detector issued an error.
SG::ReadCondHandleKey< LArOnOffIdMapping > m_cablingKeySC
This class defines the interface for accessing AutoCorrelation parameters for each channel @stereotyp...
Gaudi::Property< std::vector< std::string > > m_problemsToMaskSC
Definition of CaloDetDescriptor.
bool isFCALchannel(const HWIdentifier id) const
This class implements the ILArAutoCorr interface.
ServiceHandle< StoreGateSvc > & evtStore()
The standard StoreGateSvc (event store) Returns (kind of) a pointer to the StoreGateSvc.
HistoryContainer *& hist_cont(unsigned int i)
bool isEMECchannel(const HWIdentifier id) const override final
Gaudi::Property< std::vector< std::string > > m_problemsToMask
POOL::TEvent event(POOL::TEvent::kClassAccess)
Liquid Argon ROD output object base class.
::StatusCode StatusCode
StatusCode definition for legacy code.
SG::ReadCondHandleKey< LArADC2MeV > m_adc2mevKey
Amg::Vector3D transform(Amg::Vector3D &v, Amg::Transform3D &tr)
Transform a point from a Trasformation3D.
unsigned int nChannels() const
SG::ReadHandleKey< LArRawSCContainer > m_rawscKey
#define CHECK(...)
Evaluate an expression and check for errors.
InDet::SiSpacePointsSeedMakerEventData EventData
void setTriggerData(const std::vector< unsigned int > &words)
const LArOnline_SuperCellID * m_onlineHelperSC
StatusCode initialize(bool used=true)
If this object is used as a property, then this should be called during the initialize phase.
CellInfo * cell_info() const
virtual bool isValid() override final
Can the handle be successfully dereferenced?
HWIdentifier feb_Id(int barrel_ec, int pos_neg, int feedthrough, int slot) const
Create feb_Id from fields.
SG::ReadHandleKey< LArDigitContainer > m_digitsKey
HistoryContainer * makeNewHistorySC(const IdentifierHash &hash, CellInfo *info)
const CTPResult & cTPResult() const
Gets the CTP part of the L1 RDO.
ToolHandle< ILArShapeDumperTool > m_dumperToolSC
StatusCode initialize(bool used=true)
storage of the time histories of all the cells
bool isEMBchannel(const HWIdentifier id) const
SG::ReadCondHandleKey< ILArPedestal > m_pedestalKey
Class describing the basic event information.
SG::ReadHandleKey< LArDigitContainer > m_digitsKeySC
const std::vector< CTPRoI > TAV() const
get trigger result after veto
const CellInfo * cellInfo() const
const_iterator end() const noexcept
Return a const_iterator pointing past the end of the collection.
SG::ReadCondHandleKey< ILArPedestal > m_pedestalKeySC
virtual StatusCode start() override
SG::ReadCondHandleKey< BunchCrossingCondData > m_bcDataKey
SG::ReadCondHandleKey< CaloDetDescrManager > m_caloMgrKey
unsigned int addRun(RunData *eventData)
This class provides the client interface for accessing the detector description information common to...
std::unique_ptr< LArSamples::RunData > m_runData
LArSamples::DataStore * m_samples
virtual StatusCode finalize() override
#define ATH_MSG_WARNING(x)
Holds information from the FEB Error Summary.
void add(const DataContainer *data)
append data (takes ownership)
SG::ReadCondHandleKey< LArOnOffIdMapping > m_cablingKey
virtual StatusCode stop() override
SG::ReadCondHandleKey< LArBadChannelCont > m_BCKey
Container class for LArDigit.
std::vector< const Trig::ChainGroup * > m_triggerGroups
unsigned m_nWrongBunchGroup
SG::ReadCondHandleKey< CaloSuperCellDetDescrManager > m_caloSuperCellMgrKey
bool isHECchannel(const HWIdentifier id) const override final
HistoryContainer *& hist_cont_sc(unsigned int i)
const LArOnlineID * m_onlineHelper
std::vector< std::string > getListOfTriggers() const
PublicToolHandle< Trig::TrigDecisionTool > m_trigDec
virtual float pedestalRMS(const HWIdentifier &id, int gain) const =0
access to RMS of Pedestal index by Identifier, and gain setting
SG::ReadCondHandleKey< ILArAutoCorr > m_acorrKey
size_type size() const noexcept
Returns the number of elements in the collection.
int makeEvent(LArSamples::EventData *&eventData, int run, int event, int lumiBlock, int bunchXing) const
bool empty() const noexcept
Returns true if the collection is empty.
bool writeTrees(const char *fileName)
virtual AutoCorrRef_t autoCorr(const HWIdentifier &CellID, int gain) const
bool match(std::string s1, std::string s2)
match the individual directories of two strings
HWIdentifier feedthrough_Id(int barrel_ec, int pos_neg, int feedthrough) const
Create a feedthrough identifier from fields.
const_iterator begin() const noexcept
Return a const_iterator pointing at the beginning of the collection.
bool isFilled(const bcid_type bcid) const
The simplest query: Is the bunch crossing filled or not?
Proxy for accessing a range of float values like a vector.
Container for LArRawChannel (IDC using LArRawChannelCollection)
HistoryContainer * makeNewHistory(const IdentifierHash &hash, CellInfo *info)
append data (takes ownership of everything)
thread_local event_number_t eventIndex