mirror of
https://github.com/FairRootGroup/FairMQ.git
synced 2025-10-13 16:46:47 +00:00
Move classes inheriting from device to a subdirectory. Make sure only protobuf library installed by fairsoft is used. Cleanup FairMQDevice and fix some initialization list warnings. Loop to duplicate input files in Sampler. Add some documentation to FairMQ.
31 lines
900 B
C++
31 lines
900 B
C++
/********************************************************************************
|
|
* Copyright (C) 2014 GSI Helmholtzzentrum fuer Schwerionenforschung GmbH *
|
|
* *
|
|
* This software is distributed under the terms of the *
|
|
* GNU Lesser General Public Licence version 3 (LGPL) version 3, *
|
|
* copied verbatim in the file "LICENSE" *
|
|
********************************************************************************/
|
|
/**
|
|
* FairMQSink.h
|
|
*
|
|
* @since 2013-01-09
|
|
* @author D. Klein, A. Rybalchenko
|
|
*/
|
|
|
|
#ifndef FAIRMQSINK_H_
|
|
#define FAIRMQSINK_H_
|
|
|
|
#include "FairMQDevice.h"
|
|
|
|
class FairMQSink : public FairMQDevice
|
|
{
|
|
public:
|
|
FairMQSink();
|
|
virtual ~FairMQSink();
|
|
|
|
protected:
|
|
virtual void Run();
|
|
};
|
|
|
|
#endif /* FAIRMQSINK_H_ */
|