]> git.uio.no Git - u/mrichter/AliRoot.git/blame - START/AliSTARTDigitizer.h
Digitizer
[u/mrichter/AliRoot.git] / START / AliSTARTDigitizer.h
CommitLineData
ede9aff7 1#ifndef ALISTARTDIGITIZER_H
2#define ALISTARTDIGITIZER_H
3/* Copyright(c) 1998-2000, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
5
6#include "AliDigitizer.h"
7
8class AliRunDigitizer;
9class AliSTART;
10class AliSTARThit;
11class AliSTARTdigit;
12
13class AliSTARTDigitizer : public AliDigitizer {
14 public:
15
16 AliSTARTDigitizer();
17 AliSTARTDigitizer(AliRunDigitizer * manager);
18 virtual ~AliSTARTDigitizer();
19 virtual Bool_t Init();
20 TClonesArray *Hits() const {return fHits;}
21
22 // Do the main work
23 void Exec(Option_t* option=0) ;
24
25 enum {kBgTag = -1};
26
27private:
28
29 AliSTART *START;
30 TClonesArray *fHits ; // List of summable digits
31 AliSTARTdigit *fdigits ; // digits
32
33 ClassDef(AliSTARTDigitizer,0)
34};
35#endif
36