]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/BASE/AliHLTOfflineDataSource.cxx
aliroot integration
[u/mrichter/AliRoot.git] / HLT / BASE / AliHLTOfflineDataSource.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 AliHLTOfflineDataSource.cxx
19 @author Matthias Richter
20 @date
21 @brief AliRoot data source component base class.
22*/
23
24#include "AliHLTOfflineDataSource.h"
25
26/** ROOT macro for the implementation of ROOT specific class methods */
27ClassImp(AliHLTOfflineDataSource)
28
29AliHLTOfflineDataSource::AliHLTOfflineDataSource()
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 Register(this);
37}
38
39AliHLTOfflineDataSource::AliHLTOfflineDataSource(const AliHLTOfflineDataSource&)
40 :
41 AliHLTDataSource(),
42 AliHLTOfflineInterface()
43{
44 // see header file for class documentation
45 HLTFatal("copy constructor untested");
46}
47
48AliHLTOfflineDataSource& AliHLTOfflineDataSource::operator=(const AliHLTOfflineDataSource&)
49{
50 // see header file for class documentation
51 HLTFatal("assignment operator untested");
52 return *this;
53}
54
55AliHLTOfflineDataSource::~AliHLTOfflineDataSource()
56{
57 // see header file for class documentation
58 Unregister(this);
59}