@@ -96,12 +96,12 @@ class CalibDB
9696 // / \return meta data
9797 const std::map<std::string, std::string> getMetaData () const { return mMetaDat ; }
9898
99- // / \Accessor to URL of the CCDB server
99+ // / \brief Accessor to URL of the CCDB server
100100 // / \return URL of the CCDB server
101101 const std::string& getServer () const { return mServ ; }
102102
103- // / \Accessor to the CCDB path in the query
104- // / return CCDB path in the query
103+ // / \brief Accessor to the CCDB path in the query
104+ // / \ return CCDB path in the query
105105 const std::string& getPath () const { return mPath ; }
106106
107107 // / \brief Accessor to timestamp used in the query
@@ -172,10 +172,10 @@ class CalibDB
172172 ~CalibDB () = default ;
173173
174174 // / \brief Store bad channel map in the CCDB
175- // / \brief bcm Bad channel map to be stored
176- // / \brief metadata Additional metadata that can be used in the query
177- // / \timestart Start of the time range of the validity of the object
178- // / \timeend End of the time range of the validity of the object
175+ // / \param bcm Bad channel map to be stored
176+ // / \param metadata Additional metadata that can be used in the query
177+ // / \param timestart Start of the time range of the validity of the object
178+ // / \param timeend End of the time range of the validity of the object
179179 void storeBadChannelMap (BadChannelMap* bcm, const std::map<std::string, std::string>& metadata, ULong_t timestart, ULong_t timeend);
180180
181181 // / \brief Find bad channel map in the CCDB for given timestamp
@@ -186,10 +186,10 @@ class CalibDB
186186 BadChannelMap* readBadChannelMap (ULong_t timestamp, const std::map<std::string, std::string>& metadata);
187187
188188 // / \brief Store time calibration coefficiencts in the CCDB
189- // / \brief tcp time calibration coefficiencts to be stored
190- // / \brief metadata Additional metadata that can be used in the query
191- // / \timestart Start of the time range of the validity of the object
192- // / \timeend End of the time range of the validity of the object
189+ // / \param tcp time calibration coefficiencts to be stored
190+ // / \param metadata Additional metadata that can be used in the query
191+ // / \param timestart Start of the time range of the validity of the object
192+ // / \param timeend End of the time range of the validity of the object
193193 void storeTimeCalibParam (TimeCalibrationParams* tcp, const std::map<std::string, std::string>& metadata, ULong_t timestart, ULong_t timeend);
194194
195195 // / \brief Find time calibration coefficiencts in the CCDB for given timestamp
@@ -200,10 +200,10 @@ class CalibDB
200200 TimeCalibrationParams* readTimeCalibParam (ULong_t timestamp, const std::map<std::string, std::string>& metadata);
201201
202202 // / \brief Store L1 phase shifts in the CCDB
203- // / \brief tcp L1 phase shifts to be stored
204- // / \brief metadata Additional metadata that can be used in the query
205- // / \timestart Start of the time range of the validity of the object
206- // / \timeend End of the time range of the validity of the object
203+ // / \param tcp L1 phase shifts to be stored
204+ // / \param metadata Additional metadata that can be used in the query
205+ // / \param timestart Start of the time range of the validity of the object
206+ // / \param timeend End of the time range of the validity of the object
207207 void storeTimeCalibParamL1Phase (TimeCalibParamL1Phase* tcp, const std::map<std::string, std::string>& metadata, ULong_t timestart, ULong_t timeend);
208208
209209 // / \brief Find L1 phase shifts in the CCDB for given timestamp
@@ -214,10 +214,10 @@ class CalibDB
214214 TimeCalibParamL1Phase* readTimeCalibParamL1Phase (ULong_t timestamp, const std::map<std::string, std::string>& metadata);
215215
216216 // / \brief Store temperature calibration coefficiencts in the CCDB
217- // / \brief tcp temperature calibration coefficiencts to be stored
218- // / \brief metadata Additional metadata that can be used in the query
219- // / \timestart Start of the time range of the validity of the object
220- // / \timeend End of the time range of the validity of the object
217+ // / \param tcp temperature calibration coefficiencts to be stored
218+ // / \param metadata Additional metadata that can be used in the query
219+ // / \param timestart Start of the time range of the validity of the object
220+ // / \param timeend End of the time range of the validity of the object
221221 void storeTempCalibParam (TempCalibrationParams* tcp, const std::map<std::string, std::string>& metadata, ULong_t timestart, ULong_t timeend);
222222
223223 // / \brief Find temperature calibration coefficiencts in the CCDB for given timestamp
@@ -228,10 +228,10 @@ class CalibDB
228228 TempCalibrationParams* readTempCalibParam (ULong_t timestamp, const std::map<std::string, std::string>& metadata);
229229
230230 // / \brief Store temperature calibration coefficiencts per SM in the CCDB
231- // / \brief tcp temperature calibration coefficiencts per SM to be stored
232- // / \brief metadata Additional metadata that can be used in the query
233- // / \timestart Start of the time range of the validity of the object
234- // / \timeend End of the time range of the validity of the object
231+ // / \param tcp temperature calibration coefficiencts per SM to be stored
232+ // / \param metadata Additional metadata that can be used in the query
233+ // / \param timestart Start of the time range of the validity of the object
234+ // / \param timeend End of the time range of the validity of the object
235235 void storeTempCalibParamSM (TempCalibParamSM* tcp, const std::map<std::string, std::string>& metadata, ULong_t timestart, ULong_t timeend);
236236
237237 // / \brief Find temperature calibration coefficiencts per SM in the CCDB for given timestamp
@@ -242,10 +242,10 @@ class CalibDB
242242 TempCalibParamSM* readTempCalibParamSM (ULong_t timestamp, const std::map<std::string, std::string>& metadata);
243243
244244 // / \brief Store gain calibration factors in the CCDB
245- // / \brief gcf temperature calibration coefficiencts to be stored
246- // / \brief metadata Additional metadata that can be used in the query
247- // / \timestart Start of the time range of the validity of the object
248- // / \timeend End of the time range of the validity of the object
245+ // / \param gcf temperature calibration coefficiencts to be stored
246+ // / \param metadata Additional metadata that can be used in the query
247+ // / \param timestart Start of the time range of the validity of the object
248+ // / \param timeend End of the time range of the validity of the object
249249 void storeGainCalibFactors (GainCalibrationFactors* gcf, const std::map<std::string, std::string>& metadata, ULong_t timestart, ULong_t timeend);
250250
251251 // / \brief Find gain calibration factors in the CCDB for given timestamp
@@ -256,10 +256,10 @@ class CalibDB
256256 GainCalibrationFactors* readGainCalibFactors (ULong_t timestamp, const std::map<std::string, std::string>& metadata);
257257
258258 // / \brief Store Trigger DCS data in the CCDB
259- // / \brief dcs trigger DCS data to be stored
260- // / \brief metadata Additional metadata that can be used in the query
261- // / \timestart Start of the time range of the validity of the object
262- // / \timeend End of the time range of the validity of the object
259+ // / \param dcs trigger DCS data to be stored
260+ // / \param metadata Additional metadata that can be used in the query
261+ // / \param timestart Start of the time range of the validity of the object
262+ // / \param timeend End of the time range of the validity of the object
263263 void storeTriggerDCSData (TriggerDCS* dcs, const std::map<std::string, std::string>& metadata, ULong_t timestart, ULong_t timeend);
264264
265265 // / \brief Find trigger DCS data in the CCDB for given timestamp
0 commit comments