Newer
Older
/* Copyright (C) 2019 GSI Helmholtzzentrum fuer Schwerionenforschung, Darmstadt
SPDX-License-Identifier: GPL-3.0-only
Authors: Florian Uhlig [committer] */
/**
* CbmDeviceStsLocalReco.cxx
*
* @since 2019-03-26
* @author F. Uhlig
*/
#include "CbmDeviceStsLocalReco.h"
#include "FairMQLogger.h"
CbmDeviceStsLocalReco::CbmDeviceStsLocalReco() : FairMQDevice(), fMaxTimeslices {0}, fNumMessages {0} {}
void CbmDeviceStsLocalReco::InitTask()
{
// fMaxTimeslices = fConfig->GetValue<uint64_t>("max-timeslices");
}
// handler is called whenever a message arrives on "data", with a reference to the message and a sub-channel index (here 0)
bool CbmDeviceStsLocalReco::HandleData(FairMQMessagePtr& msg, int /*index*/) { return true; }