Skip to content

Commit cb06ad3

Browse files
committed
DEBUG: allow to run several process functions
1 parent c696d9c commit cb06ad3

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

DPG/Tasks/TPC/tpcSkimsTableCreator.cxx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -383,9 +383,9 @@ struct TreeWriterTpcV0 {
383383
void init(o2::framework::InitContext&)
384384
{
385385
const std::array<bool, 7> doprocess{doprocessStandard, doprocessStandardWithCorrecteddEdx, doprocessWithdEdxTrQA, doprocessWithdEdxTrQAWithCorrecteddEdx, doprocessWithTrQA, doprocessWithTrQAWithCorrecteddEdx, doprocessDummy};
386-
if (std::accumulate(doprocess.begin(), doprocess.end(), 0) != 1) {
387-
LOGP(fatal, "One and only one process function should be enabled");
388-
}
386+
// if (std::accumulate(doprocess.begin(), doprocess.end(), 0) != 1) {
387+
// LOGP(fatal, "One and only one process function should be enabled");
388+
// }
389389

390390
ccdb->setURL("http://alice-ccdb.cern.ch");
391391
ccdb->setCaching(true);
@@ -850,9 +850,9 @@ struct TreeWriterTpcTof {
850850
void init(o2::framework::InitContext&)
851851
{
852852
const std::array<bool, 7> doprocess{doprocessStandard, doprocessStandardWithCorrecteddEdx, doprocessWithdEdxTrQA, doprocessWithdEdxTrQAWithCorrecteddEdx, doprocessWithTrQA, doprocessWithTrQAWithCorrecteddEdx, doprocessDummy};
853-
if (std::accumulate(doprocess.begin(), doprocess.end(), 0) != 1) {
854-
LOGP(fatal, "One and only one process function should be enabled");
855-
}
853+
// if (std::accumulate(doprocess.begin(), doprocess.end(), 0) != 1) {
854+
// LOGP(fatal, "One and only one process function should be enabled");
855+
// }
856856

857857
ccdb->setURL("http://alice-ccdb.cern.ch");
858858
ccdb->setCaching(true);

0 commit comments

Comments
 (0)