]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/BASE/AliHLTOfflineDataSink.h
The file publisher now closes files when it is done with them during a given event...
[u/mrichter/AliRoot.git] / HLT / BASE / AliHLTOfflineDataSink.h
CommitLineData
242bb794 1// -*- Mode: C++ -*-
2// $Id$
3
4#ifndef ALIHLTOFFLINEDATASINK_H
5#define ALIHLTOFFLINEDATASINK_H
79c114b5 6/* This file is property of and copyright by the ALICE HLT Project *
7 * ALICE Experiment at CERN, All rights reserved. *
8 * See cxx source for full Copyright notice */
242bb794 9
10/** @file AliHLTOfflineDataSink.h
11 @author Matthias Richter
12 @date
13 @brief AliRoot data sink component base class.
14*/
15
30338a30 16// see below for class documentation
17// or
18// refer to README to build package
19// or
20// visit http://web.ift.uib.no/~kjeks/doc/alice-hlt
21
242bb794 22#include "AliHLTDataSink.h"
23#include "AliHLTOfflineInterface.h"
24
25/******************************************************************************/
26
27/**
28 * @class AliHLTOfflineDataSink
29 * The class implements a AliRoot data sink component base class.
30 * The child class must implement the functions:
31 * - @ref DoInit (optional)
32 * - @ref DoDeinit (optional)
33 * - @ref DumpEvent
34 * - @ref GetComponentID
35 * - @ref GetInputDataTypes
36 * - @ref Spawn
37 * - @ref FillESD
38 *
39 * @note This class is only used for the @ref alihlt_system.
40 *
41 * @ingroup alihlt_system
42 */
43class AliHLTOfflineDataSink
44: public AliHLTDataSink, public AliHLTOfflineInterface
45{
46 public:
47 /** standard constructor */
48 AliHLTOfflineDataSink();
49 /** not a valid copy constructor, defined according to effective C++ style */
50 AliHLTOfflineDataSink(const AliHLTOfflineDataSink&);
51 /** not a valid assignment op, but defined according to effective C++ style */
52 AliHLTOfflineDataSink& operator=(const AliHLTOfflineDataSink&);
53 /** destructor */
54 virtual ~AliHLTOfflineDataSink();
55
56 private:
57 ClassDef(AliHLTOfflineDataSink, 1);
58};
59
60#endif