]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/PHOS/AliHLTPHOSDigitMakerComponent.h
update of data handling classes for SSD calibration
[u/mrichter/AliRoot.git] / HLT / PHOS / AliHLTPHOSDigitMakerComponent.h
CommitLineData
ab38011b 1/**************************************************************************
2 * This file is property of and copyright by the ALICE HLT Project *
3 * All rights reserved. *
4 * *
5 * Primary Authors: Oystein Djuvsland *
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 **************************************************************************/
209a4703 15#ifndef ALIHLTPHOSDIGITMAKERCOMPONENT_H
16#define ALIHLTPHOSDIGITMAKERCOMPONENT_H
17
2374af72 18/** @file AliHLTPHOSDigitMakerComponent.h
19 @author Oystein Djuvsland
20 @date
21 @brief A digit maker component for PHOS HLT
22*/
23
24// see below for class documentation
25// or
26// refer to README to build package
27// or
28// visit http://web.ift.uib.no/~kjeks/doc/alice-hlt
209a4703 29
2374af72 30#include "AliHLTPHOSProcessor.h"
209a4703 31
32class AliHLTPHOSDigitMaker;
33class TTree;
34class TClonesArray;
35class AliHLTPHOSDigitContainerDataStruct;
36
37
2374af72 38/**
39 * @class AliHLTPHOSDigitMakerComponent
40 *
41 * Class runs AliHLTPHOSDigitMaker, creating digits from "raw data"
42 *
43 * The component has the following component arguments:
44 * -threshold threshold for creating a digit, gives software zero suppression
45 * -presamples number of presamples (not really necessary)
46 *
47 * @ingroup alihlt_phos
48 */
209a4703 49
50class AliHLTPHOSDigitMakerComponent : public AliHLTPHOSProcessor
51{
52public:
2374af72 53
54 /** Constructor */
209a4703 55 AliHLTPHOSDigitMakerComponent();
2374af72 56
57 /** Destructor */
ab38011b 58 virtual ~AliHLTPHOSDigitMakerComponent();
209a4703 59
2374af72 60 /** interface function, see @ref AliHLTComponent for description */
209a4703 61 const char* GetComponentID();
62
2374af72 63 /** interface function, see @ref AliHLTComponent for description */
209a4703 64 void GetInputDataTypes(std::vector<AliHLTComponentDataType>& list);
65
2374af72 66 /** interface function, see @ref AliHLTComponent for description */
209a4703 67 AliHLTComponentDataType GetOutputDataType();
68
2374af72 69 /** interface function, see @ref AliHLTComponent for description */
209a4703 70 void GetOutputDataSize(unsigned long& constBase, double& inputMultiplier);
71
2374af72 72 /** interface function, see @ref AliHLTComponent for description */
ab38011b 73 int DoEvent(const AliHLTComponentEventData& evtData, const AliHLTComponentBlockData* blocks,
74 AliHLTComponentTriggerData& trigData, AliHLTUInt8_t* outputPtr, AliHLTUInt32_t& size,
75 std::vector<AliHLTComponentBlockData>& outputBlocks);
209a4703 76
2374af72 77 /** interface function, see @ref AliHLTComponent for description */
209a4703 78 AliHLTComponent* Spawn();
79
80protected:
2374af72 81
82 /** interface function, see @ref AliHLTComponent for description */
209a4703 83 int DoInit(int argc, const char** argv);
2374af72 84
85 using AliHLTPHOSProcessor::DoEvent;
86
87 /** interface function, see @ref AliHLTComponent for description */
209a4703 88 virtual int Deinit(); ////////// PTH WARNING you should Define a class AliHLTPHOSModuleProcessor
89
90private:
209a4703 91
2374af72 92 /** Pointer to the digit maker it self */
93 AliHLTPHOSDigitMaker *fDigitMakerPtr; //! transient
94
95 /** The output of the component, digits in a container */
96 AliHLTPHOSDigitContainerDataStruct *fDigitContainerPtr; //! transient
97
98 /** Event count */
af6a2273 99 // UInt_t fEvtCnt;
2374af72 100
209a4703 101 static const AliHLTComponentDataType fgkInputDataTypes[]; //HLT input data type
102
103};
104#endif
105