]> git.uio.no Git - u/mrichter/AliRoot.git/blob - HLT/TRD/AliHLTTRDTrackerV1Component.h
HLT TRD code update by Theodor
[u/mrichter/AliRoot.git] / HLT / TRD / AliHLTTRDTrackerV1Component.h
1 #ifndef ALIHLTTRDTRACKERV1COMPONENT_H
2 #define ALIHLTTRDTRACKERV1COMPONENT_H
3 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4  * See cxx source for full Copyright notice                               */
5
6 /** @file   AliHLTTRDTrackerV1Component.h
7     @author Timm Steinbeck, Matthias Richter
8     @date   
9     @brief  Declaration of a TRDTracker component. */
10
11 #include "AliHLTProcessor.h"
12
13 class TFile;
14 class TTree;
15
16 class TGeoManager;
17 class AliCDBManager;
18 class AliMagF;
19 class AliTRDtrackerV1;
20 class AliTRDrecoParam;
21 class AliTRDReconstructor;
22 class AliESDEvent;
23
24 /**
25  * @class AliHLTTRDTrackerV1Component
26  * @brief A TRDTrackerV1 HLT processing component. 
27  *
28  * Uses the second generation TRD tracker AliTRDtrackerV1
29  */
30
31 class AliHLTTRDTrackerV1Component : public AliHLTProcessor
32 {
33 public:
34   AliHLTTRDTrackerV1Component();
35   virtual ~AliHLTTRDTrackerV1Component();
36
37   // Public functions to implement AliHLTComponent's interface.
38   // These functions are required for the registration process
39
40   const char* GetComponentID();
41   void GetInputDataTypes( vector<AliHLTComponent_DataType>& list);
42   AliHLTComponent_DataType GetOutputDataType();
43   virtual void GetOutputDataSize( unsigned long& constBase, double& inputMultiplier );
44   AliHLTComponent* Spawn();
45         
46 protected:
47   AliHLTUInt32_t TransportTracks(TClonesArray *inTracksArray, AliHLTUInt8_t* output,
48                                  vector<AliHLTComponent_BlockData>& outputBlocks, AliHLTUInt32_t inOffset, AliHLTUInt32_t inSpec);
49         
50   // Protected functions to implement AliHLTComponent's interface.
51   // These functions provide initialization as well as the actual processing
52   // capabilities of the component. 
53
54   int DoInit( int argc, const char** argv );
55   int DoDeinit();
56   int DoEvent( const AliHLTComponentEventData& evtData, 
57                const AliHLTComponentBlockData* blocks, 
58                AliHLTComponent_TriggerData& /*trigData*/, 
59                AliHLTUInt8_t* outputPtr, 
60                AliHLTUInt32_t& size, 
61                vector<AliHLTComponent_BlockData>& outputBlocks );
62   using AliHLTProcessor::DoEvent;
63         
64 private:
65   /** copy constructor prohibited */
66   AliHLTTRDTrackerV1Component(const AliHLTTRDTrackerV1Component&);
67   /** assignment operator prohibited */
68   AliHLTTRDTrackerV1Component& operator=(const AliHLTTRDTrackerV1Component&);
69
70   // The size of the output data produced, as a percentage of the input data's size.
71   // Can be greater than 100 (%)
72   unsigned fOutputPercentage; // Output volume in percentage of the input
73         
74   AliTRDtrackerV1 *fTracker;//! Offline-pure/HLT tracker V1
75   AliTRDrecoParam *fRecoParam; //! Offline reco params
76   AliTRDReconstructor * fReconstructor;
77   AliESDEvent*     fESD;
78
79   ClassDef(AliHLTTRDTrackerV1Component, 1)
80
81 };
82 #endif