]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PHOS/AliPHOSRawDigiProducer.h
Coding convensions satisfied (T.Pocheptsov)
[u/mrichter/AliRoot.git] / PHOS / AliPHOSRawDigiProducer.h
1 #ifndef ALIPHOSRAWDIGIPRODUCER_H
2 #define ALIPHOSRAWDIGIPRODUCER_H
3 /* Copyright(c) 2007, ALICE Experiment at CERN, All rights reserved. *
4  * See cxx source for full Copyright notice                          */
5
6 /* $Id$ */
7
8 //This class produces PHOS digits of one event
9 //using AliPHOSRawDecoder. See cxx source for use case.
10
11 class AliPHOSRawDecoder;
12
13 class AliPHOSRawDigiProducer {
14
15 public:
16
17   AliPHOSRawDigiProducer() {}
18   virtual ~AliPHOSRawDigiProducer() {}
19
20   void MakeDigits(TClonesArray *digits, AliPHOSRawDecoder* decoder);
21
22   ClassDef(AliPHOSRawDigiProducer,1)
23 };
24
25 #endif