]> git.uio.no Git - u/mrichter/AliRoot.git/blob - HLT/TPCLib/offline/AliHLTTPCOfflineTrackerComponent.h
further work on the TPC offline wrappers, test macro added (Jacek & Matthias)
[u/mrichter/AliRoot.git] / HLT / TPCLib / offline / AliHLTTPCOfflineTrackerComponent.h
1 //-*- Mode: C++ -*-
2 // $Id$
3 #ifndef ALIHLTTPCOFFLINETRACKERCOMPONENT_H
4 #define ALIHLTTPCOFFLINETRACKERCOMPONENT_H
5
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                               *
9
10 /** @file   AliHLTTPCOfflineTrackerComponent.h
11     @author Matthias Richter
12     @date   
13     @brief  Wrapper component to the TPC offline cluster finder
14 */
15
16 #include "AliHLTProcessor.h"
17
18 /**
19  * @class AliHLTTPCOfflineTrackerComponent
20  * Wrapper component to the TPC offline tracker.
21  *
22  * The component interfaces the AliTPCtrackerMI of the TPC offline code
23  * to the online HLT. The component expects a full TreeR containing the
24  * cluster information. The output is in ESD format.
25  *
26  * <h2>General properties:</h2>
27  *
28  * Component ID: \b TPCOfflineTracker <br>
29  * Library: \b libAliHLTTPC.so     <br>
30  * Input Data Types: @ref kAliHLTDataTypeAliTreeR|kAliHLTDataOriginTPC <br>
31  * Output Data Types: @ref kAliHLTDataTypeESDTree|kAliHLTDataOriginTPC <br>
32  *
33  * <h2>Mandatory arguments:</h2>
34  * <!-- NOTE: ignore the \li. <i> and </i>: it's just doxygen formatting -->
35  *
36  * <h2>Optional arguments:</h2>
37  * <!-- NOTE: ignore the \li. <i> and </i>: it's just doxygen formatting -->
38  *
39  * <h2>Configuration:</h2>
40  * <!-- NOTE: ignore the \li. <i> and </i>: it's just doxygen formatting -->
41  *
42  * <h2>Default CDB entries:</h2>
43  * - loads magnetic field value from <tt>HLT/ConfigHLT/SolenoidBz</tt>.
44  *
45  * <h2>Performance:</h2>
46  * To be determined.
47  *
48  * <h2>Memory consumption:</h2>
49  * To be determined.
50  *
51  * <h2>Output size:</h2>
52  * To be determined.
53  *
54  */
55
56 class AliTPCParam;
57 class AliTPCtrackerMI;
58 class AliESDEvent;
59
60 class AliHLTTPCOfflineTrackerComponent : public AliHLTProcessor {
61 public:
62   AliHLTTPCOfflineTrackerComponent();
63   virtual ~AliHLTTPCOfflineTrackerComponent();
64
65   // AliHLTComponent interface functions
66   const char* GetComponentID();
67   void GetInputDataTypes( vector<AliHLTComponentDataType>& list);
68   AliHLTComponentDataType GetOutputDataType();
69   void GetOutputDataSize( unsigned long& constBase, double& inputMultiplier );
70
71   // Spawn function, return new class instance
72   AliHLTComponent* Spawn();
73
74  protected:
75   // AliHLTComponent interface functions
76   int DoInit( int argc, const char** argv );
77   int DoDeinit();
78   int DoEvent( const AliHLTComponentEventData& evtData, AliHLTComponentTriggerData& trigData);
79   int Reconfigure(const char* cdbEntry, const char* chainId);
80
81   using AliHLTProcessor::DoEvent;
82
83 private:
84   /** copy constructor prohibited */
85   AliHLTTPCOfflineTrackerComponent(const AliHLTTPCOfflineTrackerComponent&);
86   /** assignment operator prohibited */
87   AliHLTTPCOfflineTrackerComponent& operator=(const AliHLTTPCOfflineTrackerComponent&);
88   
89   Double_t fOutputPercentage; // percentage of output data  
90   AliTPCParam *fTPCGeomParam; // TPC geometry params
91   AliTPCtrackerMI *fTracker;  // TPC tracker
92   AliESDEvent *fESD;          // AliESDEvent needed by TPC tracker
93
94   /**
95    * Configure the component.
96    * Parse a string for the configuration arguments and set the component
97    * properties.
98    */
99   int Configure(const char* arguments);
100
101   ClassDef(AliHLTTPCOfflineTrackerComponent, 0)
102 };
103 #endif