Skip to content

Commit f8eeb40

Browse files
committed
DEBUG: allow to run several process functions
1 parent a84a596 commit f8eeb40

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

DPG/Tasks/TPC/tpcSkimsTableCreator.cxx

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

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

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

0 commit comments

Comments
 (0)