Skip to content

Commit 64be864

Browse files
wiechuladavidrohr
authored andcommitted
decrease verbosity
1 parent 72f3651 commit 64be864

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

Detectors/TPC/reconstruction/src/RawProcessingHelpers.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ bool raw_processing_helpers::processZSdata(const char* data, size_t size, rdh_ut
7272

7373
const int timebin = (int(globalBCoffset) + int(bunchCrossingHeader) - int(syncOffset)) / 8;
7474
if (timebin < 0) {
75-
LOGP(info, "skipping negative time bin with (globalBCoffset ({}) + bunchCrossingHeader ({}) - syncOffset({})) / 8 = {}", globalBCoffset, bunchCrossingHeader, syncOffset, timebin);
75+
LOGP(debug, "skipping negative time bin with (globalBCoffset ({}) + bunchCrossingHeader ({}) - syncOffset({})) / 8 = {}", globalBCoffset, bunchCrossingHeader, syncOffset, timebin);
7676

7777
// go to next time bin
7878
zsdata = zsdata->next();

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ class TPCCalibPedestalDevice : public o2::framework::Task
9797
sendOutput(pc.outputs());
9898
}
9999

100-
if (mMaxEvents && (mCalibPedestal.getNumberOfProcessedEvents() >= mMaxEvents) && !mCalibDumped) {
100+
if (mMaxEvents && (nTFs >= mMaxEvents) && !mCalibDumped) {
101101
LOGP(info, "Maximm number of TFs reached ({}), no more processing will be done", mMaxEvents);
102102
mReadyToQuit = true;
103103
mCalibPedestal.analyse();

Detectors/TPC/workflow/src/CalibProcessingHelper.cxx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,9 +71,9 @@ uint64_t calib_processing_helper::processRawData(o2::framework::InputRecord& inp
7171
rdh_utils::FEEIDType cruID, linkID, endPoint;
7272
rdh_utils::getMapping(feeID, cruID, endPoint, linkID);
7373
const auto globalLinkID = linkID + endPoint * 12;
74-
LOGP(info, "Specifier: {}/{}/{}", dh->dataOrigin.as<std::string>(), dh->dataDescription.as<std::string>(), subSpecification);
75-
LOGP(info, "Payload size: {}", dh->payloadSize);
76-
LOGP(info, "CRU: {}; linkID: {}; endPoint: {}; globalLinkID: {}", cruID, linkID, endPoint, globalLinkID);
74+
LOGP(debug, "Specifier: {}/{}/{}", dh->dataOrigin.as<std::string>(), dh->dataDescription.as<std::string>(), subSpecification);
75+
LOGP(debug, "Payload size: {}", dh->payloadSize);
76+
LOGP(debug, "CRU: {}; linkID: {}; endPoint: {}; globalLinkID: {}", cruID, linkID, endPoint, globalLinkID);
7777
// ^^^^^^
7878

7979
// TODO: exception handling needed?

Detectors/TPC/workflow/src/KryptonClustererSpec.cxx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,9 @@ class KrBoxClusterFinderDevice : public o2::framework::Task
5555
mRawReader.setLinkZSCallback([this](int cru, int rowInSector, int padInRow, int timeBin, float adcValue) -> bool {
5656
const int sector = cru / 10;
5757
if ((mLastSector > -1) && (sector != mLastSector)) {
58-
LOGP(info, "analysing sector {} ({})", mLastSector, sector);
58+
LOGP(debug, "analysing sector {} ({})", mLastSector, sector);
5959
mClusterFinder->findLocalMaxima(true);
60-
LOGP(info, "found {} clusters", mClusterFinder->getClusters().size());
60+
LOGP(info, "found {} clusters in sector {}", mClusterFinder->getClusters().size(), mLastSector);
6161
std::swap(mClusters[mLastSector], mClusterFinder->getClusters());
6262
mClusterFinder->resetADCMap();
6363
mClusterFinder->resetClusters();
@@ -87,10 +87,10 @@ class KrBoxClusterFinderDevice : public o2::framework::Task
8787

8888
// analyse the final sector
8989
if (mLastSector > -1) {
90-
LOGP(info, "analysing sector {}", mLastSector);
90+
LOGP(debug, "analysing sector {}", mLastSector);
9191
mClusterFinder->findLocalMaxima(true);
9292
if (mClusterFinder->getClusters().size()) {
93-
LOGP(info, "found {} clusters", mClusterFinder->getClusters().size());
93+
LOGP(info, "found {} clusters in sector {}", mClusterFinder->getClusters().size(), mLastSector);
9494
std::swap(mClusters[mLastSector], mClusterFinder->getClusters());
9595
}
9696
}

0 commit comments

Comments
 (0)