Skip to content

Commit dcc6b81

Browse files
committed
1 parent 3d1d961 commit dcc6b81

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

Detectors/CTP/workflowScalers/src/RunManager.cxx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -323,10 +323,10 @@ int CTPRunManager::processMessage(std::string& topic, const std::string& message
323323
for (uint32_t i = 1; i < tokens.size(); i++) {
324324
mCounters[i - 1] = std::stoull(tokens.at(i));
325325
if (i < (NRUNS + 1)) {
326-
//std::cout << mCounters[i - 1] << " ";
326+
// std::cout << mCounters[i - 1] << " ";
327327
}
328328
}
329-
//std::cout << std::endl;
329+
// std::cout << std::endl;
330330
LOG(debug) << "Counter size:" << tokens.size();
331331
//
332332
for (uint32_t i = 0; i < NRUNS; i++) {
@@ -367,7 +367,7 @@ int CTPRunManager::processMessage(std::string& topic, const std::string& message
367367
}
368368
}
369369
mEOX = 0;
370-
//printActiveRuns();
370+
// printActiveRuns();
371371
return 0;
372372
}
373373
void CTPRunManager::printActiveRuns() const

Detectors/CTP/workflowScalers/src/ctp-proxy.cxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,9 +70,9 @@ InjectorFunction dcs2dpl(std::string& ccdbhost, std::string& bkhost, std::string
7070
nprint++;
7171
int nlimit = 60;
7272
int nrange = 8;
73-
if( nprint > nlimit && nprint < (nlimit + nrange + 1)) {
73+
if (nprint > nlimit && nprint < (nlimit + nrange + 1)) {
7474
LOG(info) << "received message " << messageHeader << " of size " << dataSize << " # parts:" << parts.Size(); // << " Payload:" << messageData;
75-
if(nprint == (nlimit + nrange) ) {
75+
if (nprint == (nlimit + nrange)) {
7676
nprint = 0;
7777
}
7878
}

0 commit comments

Comments
 (0)