]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/BASE/AliHLTHOMERSourceDesc.cxx
string.h instead of cstring on Solaris x86
[u/mrichter/AliRoot.git] / HLT / BASE / AliHLTHOMERSourceDesc.cxx
CommitLineData
155ff173 1/**************************************************************************
2 * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
3 * *
4 * Authors: Jochen Thaeder <thaeder@kip.uni-heidelberg.de> *
5 * for The ALICE HLT Project. *
6 * *
7 * Permission to use, copy, modify and distribute this software and its *
8 * documentation strictly for non-commercial purposes is hereby granted *
9 * without fee, provided that the above copyright notice appears in all *
10 * copies and that both the copyright notice and this permission notice *
11 * appear in the supporting documentation. The authors make no claims *
12 * about the suitability of this software for any purpose. It is *
13 * provided "as is" without express or implied warranty. *
14 **************************************************************************/
15
16/** @file AliHLTHOMERSourceDesc.cxx
17 @author Jochen Thaeder
18 @date
19 @brief Container for HOMER Sources
20*/
21
22// see header file for class documentation
23// or
24// refer to README to build package
25// or
26// visit http://web.ift.uib.no/~kjeks/doc/alice-hlt
27
28#if __GNUC__>= 3
29 using namespace std;
30#endif
31
32#include "AliHLTHOMERSourceDesc.h"
33
34
35ClassImp(AliHLTHOMERSourceDesc)
36
37//##################################################################################
38AliHLTHOMERSourceDesc::AliHLTHOMERSourceDesc() :
39 fSelected( kFALSE ),
40 fHostname(),
41 fPort(),
42 fSourceName(),
43 fClassName(),
44 fDetector(),
45 fSubDetector(),
46 fSubSubDetector(),
47 fSpecification(),
48 fDataType() {
49 // see header file for class documentation
50 // or
51 // refer to README to build package
52 // or
53 // visit http://web.ift.uib.no/~kjeks/doc/alice-hlt
54}
55
56
57//##################################################################################
58AliHLTHOMERSourceDesc::AliHLTHOMERSourceDesc( TString hostname, Int_t port ) :
59 fSelected( kFALSE ),
60 fHostname( hostname ),
61 fPort( port ),
62 fSourceName(),
63 fClassName(),
64 fDetector(),
65 fSubDetector(),
66 fSubSubDetector(),
67 fSpecification(),
68 fDataType() {
69 // see header file for class documentation
70
71}
72
73
74//##################################################################################
75AliHLTHOMERSourceDesc::~AliHLTHOMERSourceDesc() {
76 // see header file for class documentation
77}
78