]> git.uio.no Git - u/mrichter/AliRoot.git/blame_incremental - PHOS/AliPHOSRawDigiProducer.h
Updating macro to check the various methods of the AliMUONMCDataInterface
[u/mrichter/AliRoot.git] / PHOS / AliPHOSRawDigiProducer.h
... / ...
CommitLineData
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
11class AliPHOSRawDecoder;
12
13class AliPHOSRawDigiProducer {
14
15public:
16
17 AliPHOSRawDigiProducer() {}
18 virtual ~AliPHOSRawDigiProducer() {}
19
20 void MakeDigits(TClonesArray *digits, AliPHOSRawDecoder* decoder);
21
22 ClassDef(AliPHOSRawDigiProducer,1)
23};
24
25#endif