]> git.uio.no Git - u/mrichter/AliRoot.git/blob - EVE/EveHLT/AliEveHOMERSrcObject.cxx
Removing from the constructor the unnecessary calculation of the DCA between the...
[u/mrichter/AliRoot.git] / EVE / EveHLT / AliEveHOMERSrcObject.cxx
1 // $Id$
2 // Main authors: Matevz Tadel & Alja Mrak-Tadel: 2006, 2007
3 // Author: Jochen Thaeder <thaeder@kip.uni-heidelberg.de>                *
4 //         for The ALICE HLT Project.                                    *
5
6 //-*- Mode: C++ -*-
7
8 /** @file   AliEveHOMERSrcObject.cxx
9     @author Jochen Thaeder
10     @date
11     @brief  Src Object for Src Mapping
12 */
13
14 #if __GNUC__>= 3
15    using namespace std;
16 #endif
17
18 #define use_aliroot
19 #define use_root
20 #define ROWHOUGHPARAMS
21 #define use_reconstruction
22 #define use_newio
23 #define ROOTVERSION    "unchecked"
24 #define ALIROOTVERSION "unchecked"
25 #define __ROOT__
26 #define USE_ALILOG
27 #define LINUX
28
29 #include "AliEveHOMERSrcObject.h"
30
31 //______________________________________________________________________________
32 //
33 // Translate HLT data-sources.
34
35 ClassImp(AliEveHOMERSrcObject)
36
37 /*
38  * ---------------------------------------------------------------------------------
39  *                            Constructor / Destructor
40  * ---------------------------------------------------------------------------------
41  */
42
43 //##################################################################################
44 AliEveHOMERSrcObject::AliEveHOMERSrcObject( TString dataType, TString className, ULong_t specification ) :
45   fDataType(dataType), 
46   fClassName(className), 
47   fSpecification(specification) {
48   // This Class is a mapping object, which should allow, to 
49   // add new sources out of the HLT.
50   // This should be only needed by AliEveHOMERSrcTranslator
51   
52   printf ("%s - %s - %lu\n", fDataType.Data(),fClassName.Data(), fSpecification);
53
54 }
55
56 //##################################################################################
57 AliEveHOMERSrcObject::~AliEveHOMERSrcObject() {
58   // The destructor
59
60 }
61