ATLAS Offline Software
Loading...
Searching...
No Matches
LArR4ElecCalibCalculator Class Reference

#include <LArR4ElecCalibCalculator.h>

Inheritance diagram for LArR4ElecCalibCalculator:
Collaboration diagram for LArR4ElecCalibCalculator:

Public Member Functions

virtual StatusCode initialize () override
virtual StatusCode execute (const EventContext &ctx) override
 Execute method.
virtual StatusCode stop () override
 AthAlgorithm (const std::string &name, ISvcLocator *pSvcLocator)
 Constructor.
virtual StatusCode sysInitialize () override
 Override sysInitialize.
virtual bool isClonable () const override
 Specify if the algorithm is clonable.
virtual StatusCode sysExecute (const EventContext &ctx) override
 Execute an algorithm.
virtual const DataObjIDColl & extraOutputDeps () const override
 Return the list of extra output dependencies.
virtual bool filterPassed (const EventContext &ctx) const
 Get filter decision:
virtual void setFilterPassed (bool state, const EventContext &ctx) const
 Set filter decision:
ServiceHandle< StoreGateSvc > & evtStore ()
 The standard StoreGateSvc (event store) Returns (kind of) a pointer to the StoreGateSvc.
const ServiceHandle< StoreGateSvc > & detStore () const
 The standard StoreGateSvc/DetectorStore Returns (kind of) a pointer to the StoreGateSvc.
virtual StatusCode sysStart () override
 Handle START transition.
virtual std::vector< Gaudi::DataHandle * > inputHandles () const override
 Return this algorithm's input handles.
virtual std::vector< Gaudi::DataHandle * > outputHandles () const override
 Return this algorithm's output handles.
Gaudi::Details::PropertyBase & declareProperty (Gaudi::Property< T, V, H > &t)
void updateVHKA (Gaudi::Details::PropertyBase &)
MsgStream & msg () const
bool msgLvl (const MSG::Level lvl) const

Protected Member Functions

virtual bool isReEntrant () const override final
 Legacy algorithms are not thread-safe.
void renounceArray (SG::VarHandleKeyArray &handlesArray)
 remove all handles from I/O resolution
std::enable_if_t< std::is_void_v< std::result_of_t< decltype(&T::renounce)(T)> > &&!std::is_base_of_v< SG::VarHandleKeyArray, T > &&std::is_base_of_v< Gaudi::DataHandle, T >, void > renounce (T &h)
void extraDeps_update_handler (Gaudi::Details::PropertyBase &ExtraDeps)
 Add StoreName to extra input/output deps as needed.

Private Types

typedef ServiceHandle< StoreGateSvcStoreGateSvc_t

Private Member Functions

Gaudi::Details::PropertyBase & declareGaudiProperty (Gaudi::Property< T, V, H > &hndl, const SG::VarHandleKeyType &)
 specialization for handling Gaudi::Property<SG::VarHandleKey>

Private Attributes

SG::ReadCondHandleKey< LArOnOffIdMappingm_cablingKey {this, "OnOffMap", "LArOnOffIdMap", "SG key for mapping object"}
SG::ReadCondHandleKey< ILAruA2MeVm_lAruA2MeVKey {this,"LAruA2MeVKey","LAruA2MeVSym","SG key of uA2MeV object"}
SG::ReadCondHandleKey< ILArDAC2uAm_lArDAC2uAKey {this,"LArDAC2uAKey","LArDAC2uASym","SG key of DAC2uA object"}
SG::ReadCondHandleKey< LArMCSymm_mcSym {this,"MCSym","LArMCSym","SG Key of LArMCSym object"}
SG::ReadCondHandleKey< CaloDetDescrManagerm_caloMgrKey {this,"CaloDetDescrManager", "CaloDetDescrManager"}
Gaudi::Property< std::string > m_keyoutput {this,"KeyOutput","LArRamp","SG Key of output object"}
IntegerProperty m_nADCBits {this,"nADCBits",15,"Assume 15-bit ADC"}
Gaudi::Property< float > m_pedestalValue {this,"pedestal",8192,"Pedestal values for the two gains"}
Gaudi::Property< float > m_pedestalRMS {this,"pedestalRMS",17,"Pedestal RMS for the two gains"}
Gaudi::Property< std::string > m_pedkeyoutput {this,"PedKeyOutput","LArPedestal","SG Key of output object"}
Gaudi::Property< std::string > m_crestDBStr {this, "CRESTDB","","CREST connection string"}
const LArOnlineIDm_onlineHelper =nullptr
const CaloCell_IDm_caloCellID =nullptr
DataObjIDColl m_extendedExtraObjects
 Extra output dependency collection, extended by AthAlgorithmDHUpdate to add symlinks.
StoreGateSvc_t m_evtStore
 Pointer to StoreGate (event store by default).
StoreGateSvc_t m_detStore
 Pointer to StoreGate (detector store by default).
std::vector< SG::VarHandleKeyArray * > m_vhka
bool m_varHandleArraysDeclared

Detailed Description

Definition at line 23 of file LArR4ElecCalibCalculator.h.

Member Typedef Documentation

◆ StoreGateSvc_t

typedef ServiceHandle<StoreGateSvc> AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::StoreGateSvc_t
privateinherited

Definition at line 388 of file AthCommonDataStore.h.

Member Function Documentation

◆ AthAlgorithm()

AthAlgorithm::AthAlgorithm ( const std::string & name,
ISvcLocator * pSvcLocator )

Constructor.

Definition at line 31 of file AthAlgorithm.cxx.

11 :
12 AthCommonAlgorithm<Gaudi::Algorithm>( name, pSvcLocator )
13{
14 // default cardinality for non-reentrant algorithms
15 setProperty( "Cardinality", 1 ).orThrow("Unable to set property 'Cardinality'", name);
16}
void setProperty(columnar::PythonToolHandle &self, const std::string &key, nb::object value)
AthCommonAlgorithm(const std::string &name, ISvcLocator *pSvcLocator)

◆ declareGaudiProperty()

Gaudi::Details::PropertyBase & AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::declareGaudiProperty ( Gaudi::Property< T, V, H > & hndl,
const SG::VarHandleKeyType &  )
inlineprivateinherited

specialization for handling Gaudi::Property<SG::VarHandleKey>

Definition at line 156 of file AthCommonDataStore.h.

158 {
160 hndl.value(),
161 hndl.documentation());
162
163 }
Gaudi::Details::PropertyBase & declareProperty(Gaudi::Property< T, V, H > &t)

◆ declareProperty()

Gaudi::Details::PropertyBase & AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::declareProperty ( Gaudi::Property< T, V, H > & t)
inlineinherited

Definition at line 145 of file AthCommonDataStore.h.

145 {
146 typedef typename SG::HandleClassifier<T>::type htype;
148 }
Gaudi::Details::PropertyBase & declareGaudiProperty(Gaudi::Property< T, V, H > &hndl, const SG::VarHandleKeyType &)
specialization for handling Gaudi::Property<SG::VarHandleKey>

◆ detStore()

const ServiceHandle< StoreGateSvc > & AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::detStore ( ) const
inlineinherited

The standard StoreGateSvc/DetectorStore Returns (kind of) a pointer to the StoreGateSvc.

Definition at line 95 of file AthCommonDataStore.h.

◆ evtStore()

ServiceHandle< StoreGateSvc > & AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::evtStore ( )
inlineinherited

The standard StoreGateSvc (event store) Returns (kind of) a pointer to the StoreGateSvc.

Definition at line 85 of file AthCommonDataStore.h.

◆ execute()

StatusCode LArR4ElecCalibCalculator::execute ( const EventContext & ctx)
overridevirtual

Execute method.

Implements AthAlgorithm.

Definition at line 58 of file LArR4ElecCalibCalculator.cxx.

58 {
59 return StatusCode::SUCCESS;
60}

◆ extraDeps_update_handler()

void AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::extraDeps_update_handler ( Gaudi::Details::PropertyBase & ExtraDeps)
protectedinherited

Add StoreName to extra input/output deps as needed.

use the logic of the VarHandleKey to parse the DataObjID keys supplied via the ExtraInputs and ExtraOuputs Properties to add the StoreName if it's not explicitly given

◆ extraOutputDeps()

const DataObjIDColl & AthCommonAlgorithm< Gaudi::Algorithm >::extraOutputDeps ( ) const
overridevirtualinherited

Return the list of extra output dependencies.

This list is extended to include symlinks implied by inheritance relations.

Definition at line 89 of file AthCommonAlgorithm.cxx.

54{
55 // If we didn't find any symlinks to add, just return the collection
56 // from the base class. Otherwise, return the extended collection.
57 if (!m_extendedExtraObjects.empty()) {
59 }
61}
Common base class for algorithms.

◆ filterPassed()

virtual bool AthCommonAlgorithm< Gaudi::Algorithm >::filterPassed ( const EventContext & ctx) const
inlinevirtualinherited

Get filter decision:

Definition at line 93 of file AthCommonAlgorithm.h.

93 {
94 return execState( ctx ).filterPassed();
95 }
virtual bool filterPassed(const EventContext &ctx) const
Get filter decision:

◆ initialize()

StatusCode LArR4ElecCalibCalculator::initialize ( )
overridevirtual

Definition at line 41 of file LArR4ElecCalibCalculator.cxx.

41 {
42
43 ATH_CHECK(detStore()->retrieve(m_onlineHelper, "LArOnlineID"));
44 ATH_CHECK(detStore()->retrieve(m_caloCellID, "CaloCell_ID"));
45
46 ATH_CHECK(m_cablingKey.initialize());
47
48 ATH_CHECK(m_lAruA2MeVKey.initialize());
49 ATH_CHECK(m_lArDAC2uAKey.initialize());
50 ATH_CHECK(m_mcSym.initialize());
51
52 ATH_CHECK(m_caloMgrKey.initialize());
53
54 return StatusCode::SUCCESS;
55}
#define ATH_CHECK
Evaluate an expression and check for errors.
const ServiceHandle< StoreGateSvc > & detStore() const
SG::ReadCondHandleKey< LArMCSym > m_mcSym
SG::ReadCondHandleKey< ILArDAC2uA > m_lArDAC2uAKey
SG::ReadCondHandleKey< ILAruA2MeV > m_lAruA2MeVKey
SG::ReadCondHandleKey< CaloDetDescrManager > m_caloMgrKey
SG::ReadCondHandleKey< LArOnOffIdMapping > m_cablingKey

◆ inputHandles()

virtual std::vector< Gaudi::DataHandle * > AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::inputHandles ( ) const
overridevirtualinherited

Return this algorithm's input handles.

We override this to include handle instances from key arrays if they have not yet been declared. See comments on updateVHKA.

◆ isClonable()

virtual bool AthCommonAlgorithm< Gaudi::Algorithm >::isClonable ( ) const
inlineoverridevirtualinherited

Specify if the algorithm is clonable.

Only relevant for non-reentrant algorithms. Actual number of clones needs to be set via the "Cardinality" property.

Reimplemented in AFP_DigiTop, AlgB, AlgT, BCM_Digitization, CscDigitBuilder, CscDigitToCscRDO, G4AtlasAlg, G4RunAlg, HGTD_Digitization, HiveAlgBase, InDet::GNNSeedingTrackMaker, InDet::SCT_Clusterization, InDet::SiSPGNNTrackMaker, InDet::SiSPSeededTrackFinder, InDet::SiTrackerSpacePointFinder, ISF::SimKernelMT, ITk::StripDigitization, ITkPixelCablingAlg, ITkStripCablingAlg, LArHitEMapMaker, LArTTL1Maker, LUCID_DigiTop, LVL1::L1TopoSimulation, MergeCalibHits, MergeGenericMuonSimHitColl, MergeHijingPars, MergeMcEventCollection, MergeTrackRecordCollection, MergeTruthJets, MergeTruthParticles, MuonDigitizer, PileUpMTAlg, PixelDigitization, RoIBResultToxAOD, SCT_ByteStreamErrorsTestAlg, SCT_CablingCondAlgFromCoraCool, SCT_CablingCondAlgFromText, SCT_ConditionsParameterTestAlg, SCT_ConditionsSummaryTestAlg, SCT_ConfigurationConditionsTestAlg, SCT_Digitization, SCT_FlaggedConditionTestAlg, SCT_LinkMaskingTestAlg, SCT_MajorityConditionsTestAlg, SCT_ModuleVetoTestAlg, SCT_MonitorConditionsTestAlg, SCT_PrepDataToxAOD, SCT_RawDataToxAOD, SCT_ReadCalibChipDataTestAlg, SCT_ReadCalibDataTestAlg, SCT_RODVetoTestAlg, SCT_SensorsTestAlg, SCT_SiliconConditionsTestAlg, SCT_StripVetoTestAlg, SCT_TdaqEnabledTestAlg, SCT_TestCablingAlg, SCTEventFlagWriter, SCTRawDataProvider, SCTSiLorentzAngleTestAlg, SCTSiPropertiesTestAlg, SGInputLoader, Simulation::BeamEffectsAlg, TileHitVecToCnt, TileMuonFitter, TilePulseForTileMuonReceiver, TileRawChannelMaker, TRTDigitization, and ZDC_DigiTop.

Definition at line 68 of file AthCommonAlgorithm.h.

68 {
69 return true;
70 }

◆ isReEntrant()

virtual bool AthAlgorithm::isReEntrant ( ) const
inlinefinaloverrideprotectedvirtualinherited

Legacy algorithms are not thread-safe.

Definition at line 47 of file AthAlgorithm.h.

47{ return false; }

◆ msg()

MsgStream & AthCommonMsg< Gaudi::Algorithm >::msg ( ) const
inlineinherited

Definition at line 24 of file AthCommonMsg.h.

24 {
25 return this->msgStream();
26 }

◆ msgLvl()

bool AthCommonMsg< Gaudi::Algorithm >::msgLvl ( const MSG::Level lvl) const
inlineinherited

Definition at line 30 of file AthCommonMsg.h.

30 {
31 return this->msgLevel(lvl);
32 }

◆ outputHandles()

virtual std::vector< Gaudi::DataHandle * > AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::outputHandles ( ) const
overridevirtualinherited

Return this algorithm's output handles.

We override this to include handle instances from key arrays if they have not yet been declared. See comments on updateVHKA.

◆ renounce()

std::enable_if_t< std::is_void_v< std::result_of_t< decltype(&T::renounce)(T)> > &&!std::is_base_of_v< SG::VarHandleKeyArray, T > &&std::is_base_of_v< Gaudi::DataHandle, T >, void > AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::renounce ( T & h)
inlineprotectedinherited

Definition at line 380 of file AthCommonDataStore.h.

381 {
382 h.renounce();
384 }
std::enable_if_t< std::is_void_v< std::result_of_t< decltype(&T::renounce)(T)> > &&!std::is_base_of_v< SG::VarHandleKeyArray, T > &&std::is_base_of_v< Gaudi::DataHandle, T >, void > renounce(T &h)

◆ renounceArray()

void AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::renounceArray ( SG::VarHandleKeyArray & handlesArray)
inlineprotectedinherited

remove all handles from I/O resolution

Definition at line 364 of file AthCommonDataStore.h.

364 {
366 }

◆ setFilterPassed()

virtual void AthCommonAlgorithm< Gaudi::Algorithm >::setFilterPassed ( bool state,
const EventContext & ctx ) const
inlinevirtualinherited

Set filter decision:

Reimplemented in AthFilterAlgorithm.

Definition at line 99 of file AthCommonAlgorithm.h.

99 {
101 }
virtual void setFilterPassed(bool state, const EventContext &ctx) const
Set filter decision:

◆ stop()

StatusCode LArR4ElecCalibCalculator::stop ( )
overridevirtual

Definition at line 63 of file LArR4ElecCalibCalculator.cxx.

63 {
64
65 // Values below are mA, in the lower gain
66 const std::map<CaloSampling::CaloSample, float> dynRange{
67 {CaloSampling::PreSamplerB, 2},
68 {CaloSampling::EMB1, 2},
69 {CaloSampling::EMB2, 10},
70 {CaloSampling::EMB3, 10},
71 {CaloSampling::PreSamplerE, 2},
72 {CaloSampling::EME1, 2},
73 {CaloSampling::EME2, 10},
74 {CaloSampling::EME3, 10},
75 {CaloSampling::HEC0, 2},
76 {CaloSampling::HEC1, 2},
77 {CaloSampling::HEC2, 2},
78 {CaloSampling::HEC3, 2,},
79 {CaloSampling::FCAL0, 10},
80 {CaloSampling::FCAL1, 10},
81 {CaloSampling::FCAL2, 10},
82 };
83
84 // Values are in ADC counts in HIGH gain
85 // Structure: maps of samplings < vector <eta-boundary,value> >
86 const std::map<CaloSampling::CaloSample, std::vector<std::pair<float, float> > > noiseMap{
87 {CaloSampling::PreSamplerB, {{5, 3.2}}},
88 {CaloSampling::EMB1, {{0.8, 1.8}, {5, 2.1}}},
89 {CaloSampling::EMB2, {{0.8, 1.4}, {5, 1.7}}},
90 {CaloSampling::EMB3, {{0.8, 1.4}, {5, 1.7}}},
91 {CaloSampling::PreSamplerE, {{5, 3.5}}},
92 {CaloSampling::EME1, {{2, 2.7}, {5, 2.9}}},
93 {CaloSampling::EME2, {{2, 1.3}, {5, 1.5}}},
94 {CaloSampling::EME3, {{2, 1.3}, {5, 1.5}}},
95 {CaloSampling::HEC0, {{5, 3.1}}},
96 {CaloSampling::HEC1, {{5, 3.1}}},
97 {CaloSampling::HEC2, {{5, 2.1}}},
98 {CaloSampling::HEC3, {{5, 2.1}}},
99
100 {CaloSampling::FCAL0, {{5, 4.3}}},
101 {CaloSampling::FCAL1, {{5, 4.6}}},
102 {CaloSampling::FCAL2, {{5, 4.5}}},
103 };
104
105 SG::ReadCondHandle<LArOnOffIdMapping> cablingHdl{m_cablingKey};
106 SG::ReadCondHandle<LArMCSym> larMCsymHdl{m_mcSym};
107 SG::ReadCondHandle<ILAruA2MeV> uA2MeVHdl{m_lAruA2MeVKey};
108 SG::ReadCondHandle<ILArDAC2uA> DAC2uAHdl{m_lArDAC2uAKey};
109
110 SG::ReadCondHandle<CaloDetDescrManager> caloMgrHandle{m_caloMgrKey};
111
112 std::unique_ptr<LArRampMC> rampMC = std::make_unique<LArRampMC>();
113 ATH_CHECK(rampMC->setGroupingType("Single", msg()));
114 ATH_CHECK(rampMC->initialize());
115
116 const auto& symIDs = larMCsymHdl->symIds();
117
118 const int nUsableBits = int(pow(2, m_nADCBits) * 3 / 4.);
119
120
121 //Calculate the R4 ramps (ADC2DAC) values, store them in run 1/2/3 style objects (LArRampMC)
122 //Can be stored in COOL-reference POOL files if the RegistrationSvc and OutptuConditionsAlg are scheduled in job-config
123 for (const HWIdentifier hwid : symIDs) {
124 const Identifier id = (*cablingHdl)->cnvToIdentifier(hwid);
125 const auto sampling = (CaloSampling::CaloSample)m_caloCellID->calo_sample(id);
126 const auto rangeIt = dynRange.find(sampling);
127 if (rangeIt == dynRange.end())[[unlikely]]{
128 ATH_MSG_WARNING("LArR4ElecCalibCalculator::stop: sampling not found in dynRange.");
129 continue;
130 }
131 const double mARange = rangeIt->second;
132 const double uAperADC = 1000 * mARange / nUsableBits;
133 const double dac2uA = (*DAC2uAHdl)->DAC2UA(hwid); // uA/DAC
134 const double ADC2DAC = uAperADC / dac2uA;
135
136 // For cross-check:
137 const double ADC2MeV = ADC2DAC * dac2uA * uA2MeVHdl->UA2MEV(hwid);
138 const double adc2uA = ADC2DAC * dac2uA;
139 ATH_MSG_DEBUG("sub_calo=" << m_caloCellID->sub_calo(id) << ", layer " << m_caloCellID->sampling(id) << ", region=" << m_caloCellID->region(id) << ": uA/ADC "
140 << uAperADC << ", ADC/mA " << nUsableBits / mARange << ", DAC2uA " << dac2uA << ", Ramp " << ADC2DAC << ", ADC2MeV=" << ADC2MeV
141 << ", ADC2DAC*dac2uA=" << adc2uA);
142
143 std::vector<float> vRamp;
144 vRamp.push_back(0); // ignore intercept for MC
145 vRamp.push_back(ADC2DAC);
146
147 rampMC->set(hwid, CaloGain::LARMEDIUMGAIN, vRamp);
148 // re-use the same short vector for higher gain
149 vRamp[1] /= 23.0; // HIGH gain =23* lower gain
150 rampMC->set(hwid, CaloGain::LARHIGHGAIN, vRamp);
151 }
152
153 // With the backward compatible MT-migration, the LArRampMC object became
154 // "write only". It is stored in the database but on read-back turned into a
155 // LArRampSym object. Only the latter can be used
156 std::unique_ptr<LArRampSym> rampSym = std::make_unique<LArRampSym>(*larMCsymHdl, rampMC.get());
157
158 StatusCode sc = detStore()->record(std::move(rampMC), m_keyoutput);
159 if (sc.isFailure()) {
160 ATH_MSG_ERROR("Failed to record LArRampSym object with key " << m_keyoutput);
161 }
163 if (sc.isFailure()) {
164 ATH_MSG_ERROR("Failed to symlink LArRampMC to ILArRamp base-class");
165 }
166
167 m_keyoutput += "Sym";
168 sc = detStore()->record(std::move(rampSym), m_keyoutput);
169 if (sc.isFailure()) {
170 ATH_MSG_ERROR("Failed to record LArRampSym object with key " << m_keyoutput);
171 }
173 if (sc.isFailure()) {
174 ATH_MSG_ERROR("Failed to symlink LArRampSym to ILArRamp base-class");
175 }
176
177
178 //Pedestal: Use only one value for all channels in the MC case
179 //Again, create a run 1/2/3 style LArPedestalMC object that can be store in a COOL-referenced POOL file
180 std::vector<float> pedVec, pedRMSVec;
181 pedVec.push_back(m_pedestalValue.value());
182 pedRMSVec.push_back(m_pedestalRMS.value());
183 std::unique_ptr<LArPedestalMC> pedPtr = std::make_unique<LArPedestalMC>();
184 pedPtr->set(pedVec, pedRMSVec);
185 ATH_CHECK(detStore()->record(std::move(pedPtr), m_pedkeyoutput));
186
187
188
189 //Noise: Fill a run 1/2/3-style LArNoiseMC object that can be store in a COOL-referenced POOL file
190 std::unique_ptr<LArNoiseMC> noisePtr = std::make_unique<LArNoiseMC>();
191 ATH_CHECK(noisePtr->setGroupingType("Single", msg()));
192 ATH_CHECK(noisePtr->initialize());
193
194 SG::ReadCondHandle<CaloDetDescrManager> caloDDM{m_caloMgrKey};
195 for (const HWIdentifier hwid : symIDs) {
196 const Identifier id = (*cablingHdl)->cnvToIdentifier(hwid);
197 const auto sampling = (CaloSampling::CaloSample)m_caloCellID->calo_sample(id);
198 const CaloDetDescrElement* dde = caloDDM->get_element(id);
199 const float eta = dde->eta_raw();
200
201 const auto& pairs = noiseMap.find(sampling)->second;
202 float noise = -1;
203 for (auto [e, n] : pairs) {
204 if (eta < e) {
205 noise = n;
206 ATH_MSG_DEBUG("Sampling: " << sampling << ", eta=" << eta << ", noise=" << noise);
207 break;
208 }
209 }
210 noisePtr->set(hwid, CaloGain::LARHIGHGAIN, noise);
211 noisePtr->set(hwid, CaloGain::LARMEDIUMGAIN, noise / 23.0);
212 } // end loop over sym-ids
213
214 std::unique_ptr<LArNoiseSym> noiseSym = std::make_unique<LArNoiseSym>(*larMCsymHdl, noisePtr.get());
215
216 ATH_CHECK(detStore()->record(std::move(noisePtr), "LArNoise"));
218 if (sc.isFailure()) {
219 ATH_MSG_ERROR("Failed to symlink LArNoiseMC to ILArNoise base-class");
220 }
221
222 sc = detStore()->record(std::move(noiseSym), "LArNoiseSym");
223 if (sc.isFailure()) {
224 ATH_MSG_ERROR("Failed to record LArNoiseSym object with key " << m_keyoutput);
225 }
227 if (sc.isFailure()) {
228 ATH_MSG_ERROR("Failed to symlink LArNoiseSym to ILArNoise base-class");
229 }
230
231
232
233
234 //If a CREST database is also given, we store the calibration constants in CREST
235 //In this case, the values are stored 'inline' in a Blob, so it can be read back into LArXYZFlat classes that are
236 //used for data-processing also in run 2 and 3.
237 if (!m_crestDBStr.value().empty()) {
238
239 chai::Tag::Metadata chaiMD{.iovType=chai::Tag::IovType::RunNumberLumiBlock,
240 .objectType="crest-json-single-iov",
241 .synchronization=chai::Tag::Synchronization::All,
242 .status=chai::Tag::Status::Unlocked,
243 .nodeDescription = chai::Tag::buildNodeDescription(chai::Tag::IovType::RunNumberLumiBlock, "CondAttrListCollection", 1238547719u)
244 };
245
246 std::vector<float> rampsHG, rampsMG, noiseHG, noiseMG, ped, pedRMS;
247 const LArRampSym* rampsIn = nullptr;
248 ATH_CHECK(detStore()->retrieve(rampsIn, "LArRampSym"));
249 const LArNoiseSym* noiseIn = nullptr;
250 ATH_CHECK(detStore()->retrieve(noiseIn, "LArNoiseSym"));
251
252 const unsigned int hashmax = m_onlineHelper->channelHashMax();
253
254 //Store only one pedestal value for all channels:
255 ped.push_back((m_pedestalValue.value()));
256 pedRMS.push_back(m_pedestalRMS.value());
257 for (unsigned idx = 0; idx < hashmax; ++idx) {
258 IdentifierHash hIdx(idx);
259 HWIdentifier hwid = m_onlineHelper->channel_Id(hIdx);
260 if (!(*cablingHdl)->isOnlineConnectedFromHash(hIdx)) {
261 rampsHG.push_back(0);
262 rampsHG.push_back(-999);
263 rampsMG.push_back(0);
264 rampsMG.push_back(-999);
265 noiseHG.push_back(-999);
266 noiseMG.push_back(-999);
267 } else {
268 const auto rampvecHG = rampsIn->ADC2DAC(hwid, CaloGain::LARHIGHGAIN);
269 rampsHG.push_back(rampvecHG[0]);
270 rampsHG.push_back(rampvecHG[1]);
271 const auto rampvecMG = rampsIn->ADC2DAC(hwid, CaloGain::LARMEDIUMGAIN);
272 rampsMG.push_back(rampvecMG[0]);
273 rampsMG.push_back(rampvecMG[1]);
274
275 noiseHG.push_back(noiseIn->noise(hwid, CaloGain::LARHIGHGAIN));
276 noiseMG.push_back(noiseIn->noise(hwid, CaloGain::LARMEDIUMGAIN));
277 }
278 }
279 chai::Database db = chai::Database(m_crestDBStr);
280 auto gt=db.createGlobalTag("GlobalTestTag", "test", "MC");
281
282 // Pedestals
283 {
284 chai::PayloadSpec spec(chai::FieldSpec({{"Pedestal", chai::Type::Blob}, {"PedestalRMS", chai::Type::Blob}, {"version", chai::Type::UInt32}}),
285
286 chai::ChannelSpec({
287 {0, "HIGHGain"},
288 {1, "MEDGain"},
289 }));
290
291 auto tag = db.createTag("LARElecCalibPedestal-R4-00", "Pedestal of FEB 2", spec, chaiMD);
292 gt->addTag("/LAR/ElecCalibMC/Pedestal","LARElecCalibPedestal-R4-00");
293
294 chai::Container container = tag->buildContainer();
295 for (size_t g = 0; g < 2; ++g) {
296 container[g].push(std::move(vecToBlobData(ped)));
297 container[g].push(std::move(vecToBlobData(pedRMS)));
298 container[g].push(0); // version number
299 }
300 tag->addPayload(container, 0);
301 }
302 // Ramps
303 {
304 chai::PayloadSpec spec(chai::FieldSpec({{"RampVec", chai::Type::Blob}, {"nPoints", chai::Type::UInt32}, {"version", chai::Type::UInt32}}),
305
306 chai::ChannelSpec({
307 {0, "HIGHGain"},
308 {1, "MEDGain"},
309 }));
310
311 auto tag = db.createTag("LARElecCalibMCRamp-R4-00", "Electronic gain of FEB 2", spec, chaiMD);
312 gt->addTag("/LAR/ElecCalibMC/Ramp", "LARElecCalibMCRamp-R4-00");
313
314 chai::Container container = tag->buildContainer();
315 container[0].push(std::move(vecToBlobData(rampsHG)));
316 container[0].push(2); // number of points (intercept,gradient)
317 container[0].push(0); // version number
318
319 container[1].push(std::move(vecToBlobData(rampsMG)));
320 container[1].push(2); // number of points (intercept,gradient)
321 container[1].push(0); // version number
322
323 tag->addPayload(container, 0);
324 }
325 // Noise
326 {
327 chai::PayloadSpec spec(chai::FieldSpec({{"Noise", chai::Type::Blob}, {"version", chai::Type::UInt32}}),
328
329 chai::ChannelSpec({
330 {0, "HIGHGain"},
331 {1, "MEDGain"},
332 }));
333
334 auto tag = db.createTag("LARElecCalibMCNoise-R4-00", "Noise of FEB 2 (in ADC counts)", spec, chaiMD);
335 gt->addTag("/LAR/ElecCalibMC/Noise","LARElecCalibMCNoise-R4-00");
336
337 chai::Container container = tag->buildContainer();
338
339 container[0].push(std::move(vecToBlobData(noiseHG)));
340 container[0].push(0); // version number
341
342 container[1].push(std::move(vecToBlobData(noiseMG)));
343 container[1].push(0); // version number
344 tag->addPayload(container, 0);
345 }
346 }
347 ATH_MSG_INFO("LArR4RampCalculator has finished.");
348 return StatusCode::SUCCESS;
349} // end finalize-method.
Scalar eta() const
pseudorapidity method
#define ATH_MSG_ERROR(x)
#define ATH_MSG_INFO(x)
#define ATH_MSG_WARNING(x)
#define ATH_MSG_DEBUG(x)
static Double_t sc
virtual const float & noise(const HWIdentifier &hwid, int gain) const override
Gaudi::Property< float > m_pedestalRMS
Gaudi::Property< std::string > m_keyoutput
Gaudi::Property< std::string > m_pedkeyoutput
Gaudi::Property< float > m_pedestalValue
Gaudi::Property< std::string > m_crestDBStr
virtual RampRef_t ADC2DAC(const HWIdentifier &CellID, int gain) const override
@ LARMEDIUMGAIN
Definition CaloGain.h:18
@ LARHIGHGAIN
Definition CaloGain.h:18
::StatusCode StatusCode
StatusCode definition for legacy code.
const SG::AuxVectorData * container() const
Return the container holding this element.
constexpr int pow(int x)
Definition conifer.h:27
#define unlikely(x)

◆ sysExecute()

StatusCode AthCommonAlgorithm< Gaudi::Algorithm >::sysExecute ( const EventContext & ctx)
overridevirtualinherited

Execute an algorithm.

We override this in order to work around an issue with the Algorithm base class storing the event context in a member variable that can cause crashes in MT jobs.

Reimplemented in AthAnalysisAlgorithm.

Definition at line 80 of file AthCommonAlgorithm.cxx.

41{
42 return BaseAlg::sysExecute (ctx);
43}

◆ sysInitialize()

StatusCode AthCommonAlgorithm< Gaudi::Algorithm >::sysInitialize ( )
overridevirtualinherited

Override sysInitialize.

Override sysInitialize from the base class.

Loop through all output handles, and if they're WriteCondHandles, automatically register them and this Algorithm with the CondSvc

Scan through all outputHandles, and if they're WriteCondHandles, register them with the CondSvc

Reimplemented from AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >.

Reimplemented in AthAnalysisAlgorithm, AthFilterAlgorithm, AthHistogramAlgorithm, HypoBase, InputMakerBase, and PyAthena::Alg.

Definition at line 60 of file AthCommonAlgorithm.cxx.

71 {
73
74 if (sc.isFailure()) {
75 return sc;
76 }
77
78 ServiceHandle<ICondSvc> cs("CondSvc",name());
79 for (auto h : outputHandles()) {
80 if (h->isCondition() && h->mode() == Gaudi::DataHandle::Writer) {
81 // do this inside the loop so we don't create the CondSvc until needed
82 if ( cs.retrieve().isFailure() ) {
83 ATH_MSG_WARNING("no CondSvc found: won't autoreg WriteCondHandles");
85 }
86 if (cs->regHandle(this,*h).isFailure()) {
88 ATH_MSG_ERROR("unable to register WriteCondHandle " << h->fullKey()
89 << " with CondSvc");
90 }
91 }
92 }
93 return sc;
94}
virtual StatusCode sysInitialize() override
virtual std::vector< Gaudi::DataHandle * > outputHandles() const override

◆ sysStart()

virtual StatusCode AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::sysStart ( )
overridevirtualinherited

Handle START transition.

We override this in order to make sure that conditions handle keys can cache a pointer to the conditions container.

◆ updateVHKA()

void AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::updateVHKA ( Gaudi::Details::PropertyBase & )
inlineinherited

Definition at line 308 of file AthCommonDataStore.h.

308 {
309 // debug() << "updateVHKA for property " << p.name() << " " << p.toString()
310 // << " size: " << m_vhka.size() << endmsg;
311 for (auto &a : m_vhka) {
313 for (auto k : keys) {
314 k->setOwner(this);
315 }
316 }
317 }

Member Data Documentation

◆ m_cablingKey

SG::ReadCondHandleKey<LArOnOffIdMapping> LArR4ElecCalibCalculator::m_cablingKey {this, "OnOffMap", "LArOnOffIdMap", "SG key for mapping object"}
private

Definition at line 35 of file LArR4ElecCalibCalculator.h.

35{this, "OnOffMap", "LArOnOffIdMap", "SG key for mapping object"};

◆ m_caloCellID

const CaloCell_ID* LArR4ElecCalibCalculator::m_caloCellID =nullptr
private

Definition at line 55 of file LArR4ElecCalibCalculator.h.

◆ m_caloMgrKey

SG::ReadCondHandleKey<CaloDetDescrManager> LArR4ElecCalibCalculator::m_caloMgrKey {this,"CaloDetDescrManager", "CaloDetDescrManager"}
private

Definition at line 39 of file LArR4ElecCalibCalculator.h.

39{this,"CaloDetDescrManager", "CaloDetDescrManager"};

◆ m_crestDBStr

Gaudi::Property<std::string> LArR4ElecCalibCalculator::m_crestDBStr {this, "CRESTDB","","CREST connection string"}
private

Definition at line 51 of file LArR4ElecCalibCalculator.h.

51{this, "CRESTDB","","CREST connection string"};

◆ m_detStore

StoreGateSvc_t AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::m_detStore
privateinherited

Pointer to StoreGate (detector store by default).

Definition at line 393 of file AthCommonDataStore.h.

◆ m_evtStore

StoreGateSvc_t AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::m_evtStore
privateinherited

Pointer to StoreGate (event store by default).

Definition at line 390 of file AthCommonDataStore.h.

◆ m_extendedExtraObjects

DataObjIDColl AthCommonAlgorithm< Gaudi::Algorithm >::m_extendedExtraObjects
privateinherited

Extra output dependency collection, extended by AthAlgorithmDHUpdate to add symlinks.

Empty if no symlinks were found.

Definition at line 108 of file AthCommonAlgorithm.h.

◆ m_keyoutput

Gaudi::Property<std::string> LArR4ElecCalibCalculator::m_keyoutput {this,"KeyOutput","LArRamp","SG Key of output object"}
private

Definition at line 42 of file LArR4ElecCalibCalculator.h.

42{this,"KeyOutput","LArRamp","SG Key of output object"};

◆ m_lArDAC2uAKey

SG::ReadCondHandleKey<ILArDAC2uA> LArR4ElecCalibCalculator::m_lArDAC2uAKey {this,"LArDAC2uAKey","LArDAC2uASym","SG key of DAC2uA object"}
private

Definition at line 37 of file LArR4ElecCalibCalculator.h.

37{this,"LArDAC2uAKey","LArDAC2uASym","SG key of DAC2uA object"}; //Always used

◆ m_lAruA2MeVKey

SG::ReadCondHandleKey<ILAruA2MeV> LArR4ElecCalibCalculator::m_lAruA2MeVKey {this,"LAruA2MeVKey","LAruA2MeVSym","SG key of uA2MeV object"}
private

Definition at line 36 of file LArR4ElecCalibCalculator.h.

36{this,"LAruA2MeVKey","LAruA2MeVSym","SG key of uA2MeV object"}; //Always used

◆ m_mcSym

SG::ReadCondHandleKey<LArMCSym> LArR4ElecCalibCalculator::m_mcSym {this,"MCSym","LArMCSym","SG Key of LArMCSym object"}
private

Definition at line 38 of file LArR4ElecCalibCalculator.h.

38{this,"MCSym","LArMCSym","SG Key of LArMCSym object"};

◆ m_nADCBits

IntegerProperty LArR4ElecCalibCalculator::m_nADCBits {this,"nADCBits",15,"Assume 15-bit ADC"}
private

Definition at line 44 of file LArR4ElecCalibCalculator.h.

44{this,"nADCBits",15,"Assume 15-bit ADC"};

◆ m_onlineHelper

const LArOnlineID* LArR4ElecCalibCalculator::m_onlineHelper =nullptr
private

Definition at line 54 of file LArR4ElecCalibCalculator.h.

◆ m_pedestalRMS

Gaudi::Property<float> LArR4ElecCalibCalculator::m_pedestalRMS {this,"pedestalRMS",17,"Pedestal RMS for the two gains"}
private

Definition at line 48 of file LArR4ElecCalibCalculator.h.

48{this,"pedestalRMS",17,"Pedestal RMS for the two gains"};

◆ m_pedestalValue

Gaudi::Property<float> LArR4ElecCalibCalculator::m_pedestalValue {this,"pedestal",8192,"Pedestal values for the two gains"}
private

Definition at line 46 of file LArR4ElecCalibCalculator.h.

46{this,"pedestal",8192,"Pedestal values for the two gains"};

◆ m_pedkeyoutput

Gaudi::Property<std::string> LArR4ElecCalibCalculator::m_pedkeyoutput {this,"PedKeyOutput","LArPedestal","SG Key of output object"}
private

Definition at line 49 of file LArR4ElecCalibCalculator.h.

49{this,"PedKeyOutput","LArPedestal","SG Key of output object"};

◆ m_varHandleArraysDeclared

bool AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::m_varHandleArraysDeclared
privateinherited

Definition at line 399 of file AthCommonDataStore.h.

◆ m_vhka

std::vector<SG::VarHandleKeyArray*> AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::m_vhka
privateinherited

Definition at line 398 of file AthCommonDataStore.h.


The documentation for this class was generated from the following files: