]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/TRD/AliHLTTRDOfflineClusterizerComponent.h
cleanup of HLTTRDCalibration component, fixing bug in calibration: dQdl (Theodor)
[u/mrichter/AliRoot.git] / HLT / TRD / AliHLTTRDOfflineClusterizerComponent.h
CommitLineData
4de61263 1//-*- Mode: C++ -*-
2// $Id$
3#ifndef ALIHLTTRDOFFLINECLUSTERIZERCOMPONENT_H
4#define ALIHLTTRDOFFLINECLUSTERIZERCOMPONENT_H
5//* This file is property of and copyright by the ALICE HLT Project *
6//* ALICE Experiment at CERN, All rights reserved. *
7//* See cxx source for full Copyright notice *
8
9/** @file AliHLTTRDOfflineClusterizerComponent.h
10 @author
11 @date 2009-08-31
12 @brief
13*/
14
15#include "AliHLTTRDClusterizerComponent.h"
16
17class AliHLTTRDOfflineClusterizerComponent : public AliHLTTRDClusterizerComponent
18{
19public:
20 AliHLTTRDOfflineClusterizerComponent();
21 virtual ~AliHLTTRDOfflineClusterizerComponent();
22
23 const char* GetComponentID();
24 AliHLTComponent* Spawn();
25
4de61263 26 int DoInit( int argc, const char** argv );
9cafabed 27 int DoDeinit();
28 int DoEvent( const AliHLTComponent_EventData& evtData, const AliHLTComponent_BlockData* blocks,
29 AliHLTComponent_TriggerData& trigData, AliHLTUInt8_t* outputPtr,
30 AliHLTUInt32_t& size, vector<AliHLTComponent_BlockData>& outputBlocks );
4de61263 31
9cafabed 32protected:
4de61263 33 void SetOfflineParams();
34
35 ClassDef(AliHLTTRDOfflineClusterizerComponent, 1)
36
37};
38#endif