Skip to content

Commit 23d61a7

Browse files
committed
clang
1 parent 9b468a9 commit 23d61a7

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Detectors/CTP/workflowScalers/src/RunManager.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ int CTPRunManager::processMessage(std::string& topic, const std::string& message
275275
}
276276
return ret;
277277
}
278-
if(topic.find("rocnts") != std::string::npos) {
278+
if (topic.find("rocnts") != std::string::npos) {
279279
return 0;
280280
}
281281
static int nerror = 0;

Detectors/CTP/workflowScalers/src/ctpCCDBManager.cxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ int ctpCCDBManager::saveCtpCfg(uint32_t runNumber, long timeStart)
176176
CtpCfg ctpcfg;
177177
int ret;
178178
ctpcfg.readAndSave(mCtpCfgDir, ret);
179-
if(ret == 0) {
179+
if (ret == 0) {
180180
using namespace std::chrono_literals;
181181
std::chrono::seconds days3 = 259200s;
182182
std::chrono::seconds min10 = 600s;
@@ -195,7 +195,7 @@ int ctpCCDBManager::saveCtpCfg(uint32_t runNumber, long timeStart)
195195
} else {
196196
LOG(error) << "CtpCfg Problem writing to database ret:" << ret;
197197
}
198-
}
198+
}
199199
return ret;
200200
}
201201
CTPConfiguration ctpCCDBManager::getConfigFromCCDB(long timestamp, std::string run, bool& ok)

0 commit comments

Comments
 (0)