Skip to content

Commit dc3ff00

Browse files
committed
Fix formatting
1 parent 0a4d8ac commit dc3ff00

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

Detectors/TPC/workflow/include/TPCWorkflow/TPCFactorizeCMVSpec.h

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -221,10 +221,10 @@ class TPCFactorizeCMVDevice : public o2::framework::Task
221221

222222
// Check if any CRU actually wrote data into this interval
223223
const bool hasData = std::any_of(mInterval.mCMVPerTF.begin(), mInterval.mCMVPerTF.end(),
224-
[](const CMVPerTF& tf) {
225-
return std::any_of(tf.mDataPerTF.begin(), tf.mDataPerTF.end(),
226-
[](const std::vector<float>& v) { return !v.empty(); });
227-
});
224+
[](const CMVPerTF& tf) {
225+
return std::any_of(tf.mDataPerTF.begin(), tf.mDataPerTF.end(),
226+
[](const std::vector<float>& v) { return !v.empty(); });
227+
});
228228
if (!hasData) {
229229
LOGP(warning, "CMV interval has no data at sendOutput (lane {}), skipping", mLaneId);
230230
reset();
@@ -261,7 +261,7 @@ class TPCFactorizeCMVDevice : public o2::framework::Task
261261
}
262262

263263
LOGP(info, "CCDB timestamp range start:{} end:{}", mTimestampStart, timeStampEnd);
264-
264+
265265
o2::ccdb::CcdbObjectInfo ccdbInfoCMV(
266266
"TPC/Calib/CMV",
267267
"TTree",
@@ -272,8 +272,8 @@ class TPCFactorizeCMVDevice : public o2::framework::Task
272272

273273
auto image = o2::ccdb::CcdbApi::createObjectImage((tree.get()), &ccdbInfoCMV);
274274
LOGP(info, "Sending object {} / {} of size {} bytes, valid for {} : {}",
275-
ccdbInfoCMV.getPath(), ccdbInfoCMV.getFileName(), image->size(),
276-
ccdbInfoCMV.getStartValidityTimestamp(), ccdbInfoCMV.getEndValidityTimestamp());
275+
ccdbInfoCMV.getPath(), ccdbInfoCMV.getFileName(), image->size(),
276+
ccdbInfoCMV.getStartValidityTimestamp(), ccdbInfoCMV.getEndValidityTimestamp());
277277

278278
output.snapshot(Output{o2::calibration::Utils::gDataOriginCDBPayload, getDataDescriptionCCDBCMV(), 0}, *image);
279279
output.snapshot(Output{o2::calibration::Utils::gDataOriginCDBWrapper, getDataDescriptionCCDBCMV(), 0}, ccdbInfoCMV);

0 commit comments

Comments
 (0)