]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/BASE/AliHLTOfflineDataSink.cxx
corrections to write ESD format (Gaute)
[u/mrichter/AliRoot.git] / HLT / BASE / AliHLTOfflineDataSink.cxx
CommitLineData
242bb794 1// $Id$
2
3/**************************************************************************
4 * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
5 * *
6 * Authors: Matthias Richter <Matthias.Richter@ift.uib.no> *
7 * for The ALICE Off-line Project. *
8 * *
9 * Permission to use, copy, modify and distribute this software and its *
10 * documentation strictly for non-commercial purposes is hereby granted *
11 * without fee, provided that the above copyright notice appears in all *
12 * copies and that both the copyright notice and this permission notice *
13 * appear in the supporting documentation. The authors make no claims *
14 * about the suitability of this software for any purpose. It is *
15 * provided "as is" without express or implied warranty. *
16 **************************************************************************/
17
18/** @file AliHLTOfflineDataSink.cxx
19 @author Matthias Richter
20 @date
21 @brief AliRoot data sink component base class.
22*/
23
24#include "AliHLTOfflineDataSink.h"
25
26/** ROOT macro for the implementation of ROOT specific class methods */
27ClassImp(AliHLTOfflineDataSink)
28
29AliHLTOfflineDataSink::AliHLTOfflineDataSink()
30{
31 // see header file for class documentation
32 // or
33 // refer to README to build package
34 // or
35 // visit http://web.ift.uib.no/~kjeks/doc/alice-hlt
36}
37
38AliHLTOfflineDataSink::AliHLTOfflineDataSink(const AliHLTOfflineDataSink&)
39 :
40 AliHLTDataSink(),
41 AliHLTOfflineInterface()
42{
43 // see header file for class documentation
44 HLTFatal("copy constructor untested");
45 Register(this);
46}
47
48AliHLTOfflineDataSink& AliHLTOfflineDataSink::operator=(const AliHLTOfflineDataSink&)
49{
50 // see header file for class documentation
51 HLTFatal("assignment operator untested");
52 return *this;
53}
54
55AliHLTOfflineDataSink::~AliHLTOfflineDataSink()
56{
57 // see header file for class documentation
58 Unregister(this);
59}